Condividi tramite


OAuthHandler<TOptions>.FormatScope Metodo

Definizione

Overload

FormatScope()

Formattare la Scope proprietà.

FormatScope(IEnumerable<String>)

Formattare un elenco di ambiti OAuth.

FormatScope()

Origine:
OAuthHandler.cs
Origine:
OAuthHandler.cs
Origine:
OAuthHandler.cs

Formattare la Scope proprietà.

protected:
 virtual System::String ^ FormatScope();
protected virtual string FormatScope ();
abstract member FormatScope : unit -> string
override this.FormatScope : unit -> string
Protected Overridable Function FormatScope () As String

Restituisce

Ambiti formattati.

Commenti

Le sottoclassi devono invece eseguire l'override di FormatScope(IEnumerable<String>).

Si applica a

FormatScope(IEnumerable<String>)

Origine:
OAuthHandler.cs
Origine:
OAuthHandler.cs
Origine:
OAuthHandler.cs

Formattare un elenco di ambiti OAuth.

protected:
 virtual System::String ^ FormatScope(System::Collections::Generic::IEnumerable<System::String ^> ^ scopes);
protected virtual string FormatScope (System.Collections.Generic.IEnumerable<string> scopes);
abstract member FormatScope : seq<string> -> string
override this.FormatScope : seq<string> -> string
Protected Overridable Function FormatScope (scopes As IEnumerable(Of String)) As String

Parametri

scopes
IEnumerable<String>

Elenco di ambiti.

Restituisce

Ambiti formattati.

Si applica a