NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

EventLogEntry.Equals

Performs a comparison between two event log entries.

[Visual Basic]
Shadows Public Function Equals( _
   ByVal otherEntry As EventLogEntry _
) As Boolean
[C#]
public new bool Equals(
   EventLogEntry otherEntry
);
[C++]
public: new bool Equals(
   EventLogEntry* otherEntry
);
[JScript]
public new function Equals(
   otherEntry : EventLogEntry
) : Boolean;

Parameters

otherEntry
The EventLogEntry to compare.

Return Value

true if the EventLogEntry objects are identical; otherwise, false.

Remarks

This method performs a Byte-wise comparison between the two objects.

See Also

EventLogEntry Class | EventLogEntry Members | System.Diagnostics Namespace