System::Net::Http::Headers::TransferCodingHeaderValue class

TransferCodingHeaderValue class

Represents a value of the ‘Accept-Encoding’ header. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

class TransferCodingHeaderValue : public virtual System::ICloneable

Methods

MethodDescription
Equals(System::SharedPtr<Object>) overrideCompares objects using C# Object.Equals semantics.
get_Parameters()Returns the parameters.
get_Value()RTTI information.
GetHashCode() const overrideAnalog of C# Object.GetHashCode() method. Enables hashing of custom objects.
static GetTransferCodingLength(String, int32_t, const HeaderFunc<System::SharedPtr<TransferCodingHeaderValue>>&, System::SharedPtr<TransferCodingHeaderValue>&)Converts a passed string from the specified index to an instance of the TransferCodingHeaderValue class.
static Parse(String)Converts a passed string to an instance of the TransferCodingHeaderValue class.
ToString() const overrideAnalog of C# Object.ToString() method. Enables converting custom objects to string.
TransferCodingHeaderValue()Constructs a new instance.
TransferCodingHeaderValue(String)Constructs a new instance.
static TryParse(String, System::SharedPtr<TransferCodingHeaderValue>&)Tries to convert a passed string to an instance of the TransferCodingHeaderValue class.

See Also