BasicHttpBinding.AllowCookies Property

Definition

Gets or sets a value that indicates whether the client accepts cookies and propagates them on future requests.

C#
public bool AllowCookies { get; set; }

Property Value

true if cookies are allowed; otherwise, false. The default is false.

Examples

The following example sets this property to indicate that all cookies from the server should be copied to future client requests:

C#
BasicHttpBinding binding = new BasicHttpBinding();
binding.AllowCookies = true;

The value of this property can also be set in the configuration file.

Remarks

This property is provided as a convenience for interacting with ASMX Web services that use cookies. When cookies are accepted by the client by setting the property to true, cookies returned from the server are automatically copied to all future client requests to that service.

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0