System.Net.Http.Headers.ProductHeaderValue
namespace System.Net.Http.Headers
{
public class ProductHeaderValue : ICloneable
{
public string Name { get; }
public string Version { get; }
public ProductHeaderValue(string name);
public ProductHeaderValue(string name, string version);
public static ProductHeaderValue Parse(string input);
public static bool TryParse(string input, out ProductHeaderValue parsedValue);
}
}