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

DeserializeLength() public static method

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

Same methods

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