Microsoft.Azure.Commands.Batch.Models.BatchClient.GetGroupForAccount C# (CSharp) 메소드

GetGroupForAccount() 개인적인 메소드

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

            return groupName;
        }
BatchClient