mscorlib(4.0.0.0) API with additions
EncoderExceptionFallback.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 EncoderExceptionFallbackBuffer();
32  }
33 
38  [__DynamicallyInvokable]
39  public override bool Equals(object value)
40  {
41  EncoderExceptionFallback encoderExceptionFallback = value as EncoderExceptionFallback;
42  if (encoderExceptionFallback != null)
43  {
44  return true;
45  }
46  return false;
47  }
48 
51  [__DynamicallyInvokable]
52  public override int GetHashCode()
53  {
54  return 654;
55  }
56  }
57 }
override int GetHashCode()
Retrieves the hash code for this instance.
override EncoderFallbackBuffer CreateFallbackBuffer()
Returns an encoder fallback buffer that throws an exception if it cannot convert a character sequence...
override int MaxCharCount
Gets the maximum number of characters this instance can return.
Provides a failure-handling mechanism, called a fallback, for an input character that cannot be conve...
override bool Equals(object value)
Indicates whether the current T:System.Text.EncoderExceptionFallback object and a specified object ar...
Provides a failure-handling mechanism, called a fallback, for an input character that cannot be conve...
EncoderExceptionFallback()
Initializes a new instance of the T:System.Text.EncoderExceptionFallback class.
Provides a buffer that allows a fallback handler to return an alternate string to an encoder when it ...
Specifies that the class can be serialized.
Throws T:System.Text.EncoderFallbackException when an input character cannot be converted to an encod...