AccidentalFish.ApplicationSupport.Azure.Blobs.AsynchronousBlockBlobRepository.Get C# (CSharp) 메소드

Get() 공개 메소드

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