Opc.Ua.BinaryDecoder.BinaryDecoder C# (CSharp) Method

BinaryDecoder() public method

Creates a decoder that reads from a memory buffer.
public BinaryDecoder ( byte buffer, ServiceMessageContext context ) : System
buffer byte
context ServiceMessageContext
return System
        public BinaryDecoder(byte[] buffer, ServiceMessageContext context) 
        : 
            this(buffer, 0, buffer.Length, context)
        {
        }

Same methods

BinaryDecoder::BinaryDecoder ( Stream stream, ServiceMessageContext context ) : System
BinaryDecoder::BinaryDecoder ( byte buffer, int start, int count, ServiceMessageContext context ) : System