Partilhar via


PowerShellTokenCacheProvider.CreatePublicClient Method

Definition

Overloads

CreatePublicClient(String)

Creates a public client app. This method is not meant for authentication purpose. Use APIs from Azure.Identity instead.

CreatePublicClient(String, String)

Creates a public client app with tenantId. This method is not meant for authentication purpose. Use APIs from Azure.Identity instead.

CreatePublicClient(String)

Creates a public client app. This method is not meant for authentication purpose. Use APIs from Azure.Identity instead.

public virtual Microsoft.Identity.Client.IPublicClientApplication CreatePublicClient (string authority = default);
abstract member CreatePublicClient : string -> Microsoft.Identity.Client.IPublicClientApplication
override this.CreatePublicClient : string -> Microsoft.Identity.Client.IPublicClientApplication
Public Overridable Function CreatePublicClient (Optional authority As String = Nothing) As IPublicClientApplication

Parameters

authority
String

Returns

Applies to

CreatePublicClient(String, String)

Creates a public client app with tenantId. This method is not meant for authentication purpose. Use APIs from Azure.Identity instead.

public virtual Microsoft.Identity.Client.IPublicClientApplication CreatePublicClient (string authority, string tenantId);
abstract member CreatePublicClient : string * string -> Microsoft.Identity.Client.IPublicClientApplication
override this.CreatePublicClient : string * string -> Microsoft.Identity.Client.IPublicClientApplication
Public Overridable Function CreatePublicClient (authority As String, tenantId As String) As IPublicClientApplication

Parameters

authority
String
tenantId
String

Returns

Applies to