mscorlib(4.0.0.0) API with additions
DecoderExceptionFallback.cs
1 namespace System.Text
2 {
5  [__DynamicallyInvokable]
7  {
10  [__DynamicallyInvokable]
11  public override int MaxCharCount
12  {
13  [__DynamicallyInvokable]
14  get
15  {
16  return 0;
17  }
18  }
19 
21  [__DynamicallyInvokable]
23  {
24  }
25 
28  [__DynamicallyInvokable]
30  {
31  return new DecoderExceptionFallbackBuffer();
32  }
33 
38  [__DynamicallyInvokable]
39  public override bool Equals(object value)
40  {
41  DecoderExceptionFallback decoderExceptionFallback = value as DecoderExceptionFallback;
42  if (decoderExceptionFallback != null)
43  {
44  return true;
45  }
46  return false;
47  }
48 
51  [__DynamicallyInvokable]
52  public override int GetHashCode()
53  {
54  return 879;
55  }
56  }
57 }
override int GetHashCode()
Retrieves the hash code for this instance.
override bool Equals(object value)
Indicates whether the current T:System.Text.DecoderExceptionFallback object and a specified object ar...
Throws T:System.Text.DecoderFallbackException when an encoded input byte sequence cannot be converted...
Provides a buffer that allows a fallback handler to return an alternate string to a decoder when it c...
Provides a failure-handling mechanism, called a fallback, for an encoded input byte sequence that can...
override DecoderFallbackBuffer CreateFallbackBuffer()
Returns a decoder fallback buffer that throws an exception if it cannot convert a sequence of bytes t...
Provides a failure-handling mechanism, called a fallback, for an encoded input byte sequence that can...
override int MaxCharCount
Gets the maximum number of characters this instance can return.
DecoderExceptionFallback()
Initializes a new instance of the T:System.Text.DecoderExceptionFallback class.
Specifies that the class can be serialized.