共用方式為


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。

適用於