HttpHeaders.TryGetValues(String, IEnumerable<String>) メソッド

定義

HttpHeaders コレクションに指定されたヘッダーと指定した値が格納されているかどうかを返します。

public:
 bool TryGetValues(System::String ^ name, [Runtime::InteropServices::Out] System::Collections::Generic::IEnumerable<System::String ^> ^ % values);
public bool TryGetValues (string name, out System.Collections.Generic.IEnumerable<string> values);
public bool TryGetValues (string name, out System.Collections.Generic.IEnumerable<string>? values);
member this.TryGetValues : string * seq -> bool
Public Function TryGetValues (name As String, ByRef values As IEnumerable(Of String)) As Boolean

パラメーター

name
String

指定されたヘッダー。

values
IEnumerable<String>

指定されたヘッダーの値。

戻り値

true 指定したヘッダー name と が values コレクションに格納されている場合は 。それ以外の場合 falseは 。

適用対象