Microsoft.Azure.Commands.Batch.Models.BatchClient.GetGroupForAccount C# (CSharp) Method

GetGroupForAccount() private method

private GetGroupForAccount ( string accountName ) : string
accountName string
return string
        internal string GetGroupForAccount(string accountName)
        {
            var groupName = GetGroupForAccountNoThrow(accountName);
            if (groupName == null)
            {
                throw new CloudException(Resources.ResourceNotFound);
            }

            return groupName;
        }
BatchClient