| 
            
              SecurityHubIsValidAzureADGroupName Method
             | 
          
        
        
            Gets flag that determines if specified group name can be found on Azure AD.
            
        
        Namespace: GSF.Web.SecurityAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.258-beta
Syntaxpublic Task<bool> IsValidAzureADGroupName(
	string groupName
)
Public Function IsValidAzureADGroupName ( 
	groupName As String
) As Task(Of Boolean)
public:
Task<bool>^ IsValidAzureADGroupName(
	String^ groupName
)
member IsValidAzureADGroupName : 
        groupName : string -> Task<bool> function IsValidAzureADGroupName(groupName);
 View SourceParameters
- groupName  String
 - Group name to lookup
 
Return Value
TaskBooleantrue if group name was found in Azure AD; otherwise, 
false.
See Also