OAuthHandler<TOptions>.FormatScope Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
FormatScope() |
Format the Scope property. |
FormatScope(IEnumerable<String>) |
Format a list of OAuth scopes. |
FormatScope()
- Source:
- OAuthHandler.cs
- Source:
- OAuthHandler.cs
- Source:
- OAuthHandler.cs
Format the Scope property.
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
Returns
Formatted scopes.
Remarks
Subclasses should rather override FormatScope(IEnumerable<String>).
Applies to
FormatScope(IEnumerable<String>)
- Source:
- OAuthHandler.cs
- Source:
- OAuthHandler.cs
- Source:
- OAuthHandler.cs
Format a list of OAuth scopes.
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
Parameters
- scopes
- IEnumerable<String>
List of scopes.
Returns
Formatted scopes.