HeaderDictionaryExtensions.GetCommaSeparatedValues メソッド

定義

コレクションから、関連する値を個別の値に取得します。 引用符で囲まれた値は分割されず、引用符は削除されます。

public:
[System::Runtime::CompilerServices::Extension]
 static cli::array <System::String ^> ^ GetCommaSeparatedValues(Microsoft::AspNetCore::Http::IHeaderDictionary ^ headers, System::String ^ key);
public static string[] GetCommaSeparatedValues (this Microsoft.AspNetCore.Http.IHeaderDictionary headers, string key);
static member GetCommaSeparatedValues : Microsoft.AspNetCore.Http.IHeaderDictionary * string -> string[]
<Extension()>
Public Function GetCommaSeparatedValues (headers As IHeaderDictionary, key As String) As String()

パラメーター

headers
IHeaderDictionary

使用する IHeaderDictionary

key
String

ヘッダー名。

戻り値

String[]

個々の値に分割されたコレクションの関連付けられた値。キーが存在しない場合は StringValues.Empty。

適用対象