AzureBlobFileSystem.AzureBlobStorageProvider.GetFile C# (CSharp) Метод

GetFile() публичный Метод

public GetFile ( string path ) : IStorageFile
path string
Результат IStorageFile
        public IStorageFile GetFile(string path)
        {
            var container = EnsurePathIsRelativeAndEnsureContainer(ref path);

            container.EnsureBlobExists(path);
            return new AzureBlobFileStorage(container.GetBlockBlobReference(path), this);
        }