JsonEncodedText.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(Object) |
Determines whether this instance and a specified object, which must also be a JsonEncodedText instance, have the same value. |
Equals(JsonEncodedText) |
Determines whether this instance and another specified JsonEncodedText instance have the same value. |
Equals(Object)
- Source:
- JsonEncodedText.cs
- Source:
- JsonEncodedText.cs
- Source:
- JsonEncodedText.cs
Determines whether this instance and a specified object, which must also be a JsonEncodedText 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 to this instance.
Returns
true
if the current instance and obj
are equal; otherwise, false
.
Remarks
If obj
is null
, the method returns false
.
Applies to
Equals(JsonEncodedText)
- Source:
- JsonEncodedText.cs
- Source:
- JsonEncodedText.cs
- Source:
- JsonEncodedText.cs
Determines whether this instance and another specified JsonEncodedText instance have the same value.
public:
virtual bool Equals(System::Text::Json::JsonEncodedText other);
public bool Equals (System.Text.Json.JsonEncodedText other);
override this.Equals : System.Text.Json.JsonEncodedText -> bool
Public Function Equals (other As JsonEncodedText) As Boolean
Parameters
- other
- JsonEncodedText
The object to compare to this instance.
Returns
true
if this instance and other
have the same value; otherwise, false
.
Implements
Remarks
Default instances of JsonEncodedText are treated as equal.