Smartsheet.Api.Internal.Http.HttpEntity.GetBinaryContent C# (CSharp) Method

GetBinaryContent() public method

public GetBinaryContent ( ) : BinaryReader
return System.IO.BinaryReader
        public virtual BinaryReader GetBinaryContent()
        {
            if (content == null) { content = new byte[0]; }

            return new BinaryReader(new MemoryStream(content));
        }