Partager via


IAzureADManagement.CreateMSOUser Method (String, String, String)

 

Creates a Microsoft online account and maps it to a local user account.

Namespace:   Microsoft.WindowsServerSolutions.WebApi.Management
Assembly:  Wssg.WebApi.AzureADManagement (in Wssg.WebApi.AzureADManagement.dll)

Syntax

[OperationContractAttribute]
[WebInvokeAttribute(UriTemplate = "msoUser/create?localUserName={localUserName}&onlineUserName={onlineUserName}", 
    Method = "POST")]
void CreateMSOUser(
    string localUserName,
    string onlineUserName,
    string password
)
[OperationContractAttribute]
[WebInvokeAttribute(UriTemplate = "msoUser/create?localUserName={localUserName}&onlineUserName={onlineUserName}", 
    Method = "POST")]
void CreateMSOUser(
    String^ localUserName,
    String^ onlineUserName,
    String^ password
)
<OperationContractAttribute>
<WebInvokeAttribute(UriTemplate := "msoUser/create?localUserName={localUserName}&onlineUserName={onlineUserName}",
    Method := "POST")>
Sub CreateMSOUser (
    localUserName As String,
    onlineUserName As String,
    password As String
)

Parameters

  • localUserName
    Type: System.String

    The user name of the local user account.

  • onlineUserName
    Type: System.String

    The user name of the Microsoft online account.

  • password
    Type: System.String

    The password of the Microsoft online account.

See Also

IAzureADManagement Interface
Microsoft.WindowsServerSolutions.WebApi.Management Namespace

Return to top