Achilles.Acme.Storage.Azure.AzureCloudStorageProvider.GetAzurePath C# (CSharp) Method

GetAzurePath() private method

Get the full path (as in URI) of a blob folder or file ( container name + path )
private GetAzurePath ( string path ) : string
path string a folder path or a file path, absolute path
return string
        private string GetAzurePath( string path )
        {
            return ContainerName + path;
        }