次の方法で共有


OAuthHandler<TOptions>.FormatScope メソッド

定義

オーバーロード

FormatScope()

プロパティの書式を設定します Scope

FormatScope(IEnumerable<String>)

OAuth スコープの一覧を書式設定します。

FormatScope()

ソース:
OAuthHandler.cs
ソース:
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
ソース:
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>

スコープの一覧。

戻り値

書式設定されたスコープ。

適用対象