ActivitySpanId.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(ActivitySpanId) |
Determines whether this instance and the specified ActivitySpanId instance have the same value. |
Equals(Object) |
the current instance and a specified object, which also must be an ActivitySpanId instance, have the same value. |
Equals(ActivitySpanId)
- Source:
- Activity.cs
- Source:
- Activity.cs
- Source:
- Activity.cs
Determines whether this instance and the specified ActivitySpanId instance have the same value.
public:
virtual bool Equals(System::Diagnostics::ActivitySpanId spanId);
public bool Equals (System.Diagnostics.ActivitySpanId spanId);
override this.Equals : System.Diagnostics.ActivitySpanId -> bool
Public Function Equals (spanId As ActivitySpanId) As Boolean
Parameters
- spanId
- ActivitySpanId
The instance to compare.
Returns
true
if spanId
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
the current instance and a specified object, which also must be an ActivitySpanId 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 ActivitySpanId and has the same hex value as the current instance; otherwise, false
.