HttpListenerResponse::CopyFrom Method (HttpListenerResponse^)

 

Copies properties from the specified HttpListenerResponse to this response.

Namespace:   System.Net
Assembly:  System (in System.dll)

public:
void CopyFrom(
	HttpListenerResponse^ templateResponse
)

Parameters

templateResponse
Type: System.Net::HttpListenerResponse^

The HttpListenerResponse instance to copy.

If you regularly change many properties from their default values to a fixed set of new values, it is convenient to use an HttpListenerResponse instance as a template. Customize the template response once and, instead of configuring each response separately, call the CopyFrom method to configure a new response based on property values in the template response.

The following properties are copied from templateResponse to the current instance.

The following code example demonstrates creating a response by copying a template response.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: