| AsyncLogEventInfoEquality Operator |
Implements the operator ==.
Namespace:
NLog.Common
Assembly:
NLog (in NLog.dll) Version: 5.3.4+73d83d3161d31288ca5c554cc50d27b6bed5f28b
Syntax public static bool operator ==(
AsyncLogEventInfo eventInfo1,
AsyncLogEventInfo eventInfo2
)
Public Shared Operator = (
eventInfo1 As AsyncLogEventInfo,
eventInfo2 As AsyncLogEventInfo
) As Boolean
Dim eventInfo1 As AsyncLogEventInfo
Dim eventInfo2 As AsyncLogEventInfo
Dim returnValue As Boolean
returnValue = (eventInfo1 = eventInfo2)
static let inline (=)
eventInfo1 : AsyncLogEventInfo *
eventInfo2 : AsyncLogEventInfo : bool
Parameters
- eventInfo1
- Type: NLog.CommonAsyncLogEventInfo
The event info1. - eventInfo2
- Type: NLog.CommonAsyncLogEventInfo
The event info2.
Return Value
Type:
BooleanThe result of the operator.
See Also