class DecoderFallbackException
The exception that is thrown when a decoder fallback operation fails. This class cannot be inherited.
public DecoderFallbackException( string message )
Initializes a new instance of the class. A parameter specifies the error message.
messageAn error message.
public DecoderFallbackException( string message, byte[] bytesUnknown, int index )
Initializes a new instance of the class. Parameters specify the error message, the array of bytes being decoded, and the index of the byte that cannot be decoded.
messageAn error message.bytesUnknownThe input byte array.indexThe index position in of the byte that cannot be decoded.
public DecoderFallbackException( string message, Exception innerException )
Initializes a new instance of the class. Parameters specify the error message and the inner exception that is the cause of this exception.
messageAn error message.innerExceptionThe exception that caused this exception.
public byte[] BytesUnknown { get; }
Gets the input byte sequence that caused the exception.
- Returns The input byte array that cannot be decoded.
public int Index { get; }
Gets the index position in the input byte sequence of the byte that caused the exception.
- Returns The index position in the input byte array of the byte that cannot be decoded. The index position is zero-based.
public string ToString( )
😔 No documentation found.
public DecoderFallbackException( )
😔 No documentation found.
public int GetHashCode( )
😔 No documentation found.
public bool Equals( object obj )
😔 No documentation found.
public Type GetType( )
😔 No documentation found.
public string StackTrace { get; }
😔 No documentation found.
public string Message { get; }
😔 No documentation found.
public Type GetType( )
😔 No documentation found.
public void GetObjectData( SerializationInfo info, StreamingContext context )
😔 No documentation found.
public string Source { get; set; }
😔 No documentation found.
public string HelpLink { get; set; }
😔 No documentation found.
public Exception InnerException { get; }
😔 No documentation found.
public Exception GetBaseException( )
😔 No documentation found.
public IDictionary Data { get; }
😔 No documentation found.
public int HResult { get; set; }
😔 No documentation found.
public string ParamName { get; }
😔 No documentation found.