|
UserInfoCreateLocalGroup Method
|
Creates a new local group if it does not exist already.
Namespace: GSF.IdentityAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.246-beta+ff392465a0262ee2737937d4127fc3c2f08c6dcd
Syntaxpublic static bool CreateLocalGroup(
string groupName,
string groupDescription = null
)
Public Shared Function CreateLocalGroup (
groupName As String,
Optional groupDescription As String = Nothing
) As Boolean
public:
static bool CreateLocalGroup(
String^ groupName,
String^ groupDescription = nullptr
)
static member CreateLocalGroup :
groupName : string *
?groupDescription : string
(* Defaults:
let _groupDescription = defaultArg groupDescription null
*)
-> bool
GSF.Identity.UserInfo.CreateLocalGroup = function(groupName, groupDescription);
View SourceParameters
- groupName String
- Group name to create if it doesn't exist.
- groupDescription String (Optional)
- Optional group description.
Return Value
Booleantrue if group was created; otherwise,
false if group already existed.
ExceptionsException | Condition |
---|
ArgumentNullException | groupName was null. |
ArgumentException | No groupName was specified. |
InvalidOperationException | Could not create local group. |
See Also