AccidentalFish.ApplicationSupport.Azure.Blobs.AsynchronousBlockBlobRepository.Get C# (CSharp) Method

Get() public method

public Get ( string name ) : IBlob
name string
return IBlob
        public IBlob Get(string name)
        {
            CloudBlockBlob blob = _container.GetBlockBlobReference(name);
            return new BlockBlob(blob, name, _logger);
        }