ImageResizer.Plugins.EPiServerBlobReader.EPiServerBlobFile.GetBlob C# (CSharp) Method

GetBlob() private method

private GetBlob ( ) : Blob
return System.IO.Blob
        private Blob GetBlob()
        {
            if (Content == null)
            {
                return null;
            }
            var binaryStorable = Content as IBinaryStorable;
            if (binaryStorable == null || binaryStorable.BinaryData == null)
            {
                return null;
            }
            return binaryStorable.BinaryData;
        }
    }