OAuthHandler<TOptions>.FormatScope Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
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.