Google.Protobuf.UninterpretedOption.DeserializeLength C# (CSharp) Method

DeserializeLength() public static method

Helper: create a new instance to deserializing into
public static DeserializeLength ( Stream stream, int length ) : UninterpretedOption
stream Stream
length int
return UninterpretedOption
        public static UninterpretedOption DeserializeLength(Stream stream, int length)
        {
            var instance = new UninterpretedOption();
            DeserializeLength(stream, length, instance);
            return instance;
        }

Same methods

UninterpretedOption::DeserializeLength ( Stream stream, int length, Google instance ) : Google.Protobuf.UninterpretedOption