ProductInfoHeaderValue 构造函数

定义

初始化 ProductInfoHeaderValue 类的新实例。

重载

ProductInfoHeaderValue(ProductHeaderValue)

初始化 ProductInfoHeaderValue 类的新实例。

ProductInfoHeaderValue(String)

初始化 ProductInfoHeaderValue 类的新实例。

ProductInfoHeaderValue(String, String)

初始化 ProductInfoHeaderValue 类的新实例。

ProductInfoHeaderValue(ProductHeaderValue)

Source:
ProductInfoHeaderValue.cs
Source:
ProductInfoHeaderValue.cs
Source:
ProductInfoHeaderValue.cs

初始化 ProductInfoHeaderValue 类的新实例。

public:
 ProductInfoHeaderValue(System::Net::Http::Headers::ProductHeaderValue ^ product);
public ProductInfoHeaderValue (System.Net.Http.Headers.ProductHeaderValue product);
new System.Net.Http.Headers.ProductInfoHeaderValue : System.Net.Http.Headers.ProductHeaderValue -> System.Net.Http.Headers.ProductInfoHeaderValue
Public Sub New (product As ProductHeaderValue)

参数

product
ProductHeaderValue

用于初始化新实例的 ProductHeaderValue 对象。

适用于

ProductInfoHeaderValue(String)

Source:
ProductInfoHeaderValue.cs
Source:
ProductInfoHeaderValue.cs
Source:
ProductInfoHeaderValue.cs

初始化 ProductInfoHeaderValue 类的新实例。

public:
 ProductInfoHeaderValue(System::String ^ comment);
public ProductInfoHeaderValue (string comment);
new System.Net.Http.Headers.ProductInfoHeaderValue : string -> System.Net.Http.Headers.ProductInfoHeaderValue
Public Sub New (comment As String)

参数

comment
String

一个注释值。

适用于

ProductInfoHeaderValue(String, String)

Source:
ProductInfoHeaderValue.cs
Source:
ProductInfoHeaderValue.cs
Source:
ProductInfoHeaderValue.cs

初始化 ProductInfoHeaderValue 类的新实例。

public:
 ProductInfoHeaderValue(System::String ^ productName, System::String ^ productVersion);
public ProductInfoHeaderValue (string productName, string productVersion);
public ProductInfoHeaderValue (string productName, string? productVersion);
new System.Net.Http.Headers.ProductInfoHeaderValue : string * string -> System.Net.Http.Headers.ProductInfoHeaderValue
Public Sub New (productName As String, productVersion As String)

参数

productName
String

产品名称值。

productVersion
String

产品版本值。

适用于