ActivityTraceId.Equals Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Equals(ActivityTraceId) |
Determines whether the current instance and a specified ActivityTraceId are equal. |
Equals(Object) |
Determines whether this instance and a specified object, which must also be an ActivityTraceId instance, have the same value. |
Equals(ActivityTraceId)
- Source:
- Activity.cs
- Source:
- Activity.cs
- Source:
- Activity.cs
Determines whether the current instance and a specified ActivityTraceId are equal.
public:
virtual bool Equals(System::Diagnostics::ActivityTraceId traceId);
public bool Equals (System.Diagnostics.ActivityTraceId traceId);
override this.Equals : System.Diagnostics.ActivityTraceId -> bool
Public Function Equals (traceId As ActivityTraceId) As Boolean
Parameters
- traceId
- ActivityTraceId
The instance to compare.
Returns
true
if traceId
has the same hex value as the current instance; otherwise, false
.
Implements
Applies to
Equals(Object)
- Source:
- Activity.cs
- Source:
- Activity.cs
- Source:
- Activity.cs
Determines whether this instance and a specified object, which must also be an ActivityTraceId instance, have the same value.
public:
override bool Equals(System::Object ^ obj);
public override bool Equals (object? obj);
public override bool Equals (object obj);
override this.Equals : obj -> bool
Public Overrides Function Equals (obj As Object) As Boolean
Parameters
- obj
- Object
The object to compare.
Returns
true
if obj
is an instance of ActivityTraceId and has the same hex value as the current instance; otherwise, false
.