Compartir a través de


OAuthHandler<TOptions>.FormatScope Método

Definición

Sobrecargas

FormatScope()

Dé formato a la Scope propiedad .

FormatScope(IEnumerable<String>)

Dar formato a una lista de ámbitos de OAuth.

FormatScope()

Source:
OAuthHandler.cs
Source:
OAuthHandler.cs
Source:
OAuthHandler.cs

Dé formato a la Scope propiedad .

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

Devoluciones

Ámbitos con formato.

Comentarios

En su lugar, las subclases deben invalidar FormatScope(IEnumerable<String>).

Se aplica a

FormatScope(IEnumerable<String>)

Source:
OAuthHandler.cs
Source:
OAuthHandler.cs
Source:
OAuthHandler.cs

Dar formato a una lista de ámbitos de 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

Parámetros

scopes
IEnumerable<String>

Lista de ámbitos.

Devoluciones

Ámbitos con formato.

Se aplica a