C-DEngine 5.105

WebHeaderCollection..::..Item Property

Gets or sets the specified response header in the collection.

Namespace:  WebSocketSharp.Net
Assembly:  C-DEngine (in C-DEngine.dll)

Syntax


public string this[
	HttpResponseHeader header
] { get; set; }
Public Default Property Item ( _
	header As HttpResponseHeader _
) As String
	Get
	Set
public:
property String^ default[HttpResponseHeader^ header] {
	String^ get (HttpResponseHeader^ header);
	void set (HttpResponseHeader^ header, String^ value);
}

Parameters

header
Type: WebSocketSharp.Net..::..HttpResponseHeader
One of the HttpResponseHeader enum values, represents the response header to get or set.

Field Value

A String that represents the value of the response header.

Exceptions


ExceptionCondition
ArgumentException

header is a restricted header.

-or-

value contains invalid characters.

ArgumentOutOfRangeException The length of value is greater than 65,535 characters.
InvalidOperationException The current WebHeaderCollection instance doesn't allow the response header.