Elastacloud.AzureManagement.Fluent.Clients.WindowsVirtualMachineClient.ParseBlobDetails C# (CSharp) Method

ParseBlobDetails() private method

Returns the name of the blob and container
private ParseBlobDetails ( string blobAddress ) : string
blobAddress string
return string
        private string ParseBlobDetails(string blobAddress)
        {
            var helper = new UrlHelper(blobAddress);
            StorageContainerName = helper.Path;
            StorageFileName = helper.File;
            return helper.HostSubDomain;
        }