共用方式為


OAuthHandler<TOptions>.FormatScope 方法

定義

多載

FormatScope()

Scope格式化 屬性。

FormatScope(IEnumerable<String>)

格式化 OAuth 範圍的清單。

FormatScope()

來源:
OAuthHandler.cs
來源:
OAuthHandler.cs

Scope格式化 屬性。

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

傳回

格式化的範圍。

備註

子類別應該覆寫 FormatScope(IEnumerable<String>)

適用於

FormatScope(IEnumerable<String>)

來源:
OAuthHandler.cs
來源:
OAuthHandler.cs

格式化 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

參數

scopes
IEnumerable<String>

範圍清單。

傳回

格式化的範圍。

適用於