System.Text.DecoderFallbackException.DecoderFallbackException C# (CSharp) Метод

DecoderFallbackException() публичный Метод

public DecoderFallbackException ( String message, byte bytesUnknown, int index ) : System
message String
bytesUnknown byte
index int
Результат System
        public DecoderFallbackException(
            String message, byte[] bytesUnknown, int index) : base(message)
        {
            this.bytesUnknown = bytesUnknown;
            this.index = index;
        }

Same methods

DecoderFallbackException::DecoderFallbackException ( ) : System
DecoderFallbackException::DecoderFallbackException ( SerializationInfo info, StreamingContext context ) : System
DecoderFallbackException::DecoderFallbackException ( String message ) : System
DecoderFallbackException::DecoderFallbackException ( String message, Exception innerException ) : System
DecoderFallbackException