HttpHeaders.TryAddWithoutValidation 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个值,该值指示是否在未验证所提供的信息的情况下将新的标头及其值添加到 HttpHeaders 集合中。
重载
TryAddWithoutValidation(String, IEnumerable<String>) |
返回一个值,该值指示指定的标头及其值是否添加到 HttpHeaders 集合,而无需验证提供的信息。 |
TryAddWithoutValidation(String, String) |
返回一个值,该值指示指定的标头及其值是否添加到了 HttpHeaders 集合,而无需验证提供的信息。 |
TryAddWithoutValidation(String, IEnumerable<String>)
- Source:
- HttpHeaders.cs
- Source:
- HttpHeaders.cs
- Source:
- HttpHeaders.cs
返回一个值,该值指示指定的标头及其值是否添加到 HttpHeaders 集合,而无需验证提供的信息。
public:
bool TryAddWithoutValidation(System::String ^ name, System::Collections::Generic::IEnumerable<System::String ^> ^ values);
public bool TryAddWithoutValidation (string name, System.Collections.Generic.IEnumerable<string> values);
public bool TryAddWithoutValidation (string name, System.Collections.Generic.IEnumerable<string?> values);
member this.TryAddWithoutValidation : string * seq<string> -> bool
Public Function TryAddWithoutValidation (name As String, values As IEnumerable(Of String)) As Boolean
参数
- name
- String
要添加到集合中的标头。
- values
- IEnumerable<String>
标头的值。
返回
如果指定的标头 name
和 values
可能被添加到集合,则为 true
;否则为 false
。
适用于
TryAddWithoutValidation(String, String)
- Source:
- HttpHeaders.cs
- Source:
- HttpHeaders.cs
- Source:
- HttpHeaders.cs
返回一个值,该值指示指定的标头及其值是否添加到了 HttpHeaders 集合,而无需验证提供的信息。
public:
bool TryAddWithoutValidation(System::String ^ name, System::String ^ value);
public bool TryAddWithoutValidation (string name, string value);
public bool TryAddWithoutValidation (string name, string? value);
member this.TryAddWithoutValidation : string * string -> bool
Public Function TryAddWithoutValidation (name As String, value As String) As Boolean
参数
- name
- String
要添加到集合中的标头。
- value
- String
标头的内容。
返回
如果指定的标头 name
和 value
可能被添加到集合,则为 true
;否则为 false
。