UTF7Encoding.Equals(Object) Método
Definición
Obtiene un valor que indica si el objeto especificado es igual al objeto UTF7Encoding actual.Gets a value indicating whether the specified object is equal to the current UTF7Encoding object.
public:
override bool Equals(System::Object ^ value);
public override bool Equals (object value);
public override bool Equals (object? value);
[System.Runtime.InteropServices.ComVisible(false)]
public override bool Equals (object value);
override this.Equals : obj -> bool
[<System.Runtime.InteropServices.ComVisible(false)>]
override this.Equals : obj -> bool
Public Overrides Function Equals (value As Object) As Boolean
Parámetros
- value
- Object
Objeto para comparar con el objeto UTF7Encoding actual.An object to compare to the current UTF7Encoding object.
Devoluciones
true
si value
es un objeto UTF7Encoding y es igual al objeto UTF7Encoding actual; de lo contrario, false
.true
if value
is a UTF7Encoding object and is equal to the current UTF7Encoding object; otherwise, false
.
- Atributos
Comentarios
Dos UTF7Encoding objetos son iguales si permiten o deniegan caracteres opcionales, y si sus EncoderFallback propiedades y subyacentes DecoderFallback son iguales.Two UTF7Encoding objects are equal if they both either allow or disallow optional characters, and if their underlying EncoderFallback and DecoderFallback properties are equal.