ExtendedRequest Constructors

Definition

The ExtendedRequest() constructor creates an instance of the ExtendedRequest class.

Overloads

ExtendedRequest()

The ExtendedRequest() constructor creates an instance of the ExtendedRequest class.

ExtendedRequest(String)

The ExtendedRequest(String) constructor creates an instance of the ExtendedRequest class using the specified name.

ExtendedRequest(String, Byte[])

The ExtendedRequest(String, Byte[]) constructor creates an instance of the ExtendedRequest class using the specified name and value.

ExtendedRequest()

Source:
DirectoryRequest.cs
Source:
DirectoryRequest.cs
Source:
DirectoryRequest.cs

The ExtendedRequest() constructor creates an instance of the ExtendedRequest class.

public:
 ExtendedRequest();
public ExtendedRequest ();
Public Sub New ()

Applies to

ExtendedRequest(String)

Source:
DirectoryRequest.cs
Source:
DirectoryRequest.cs
Source:
DirectoryRequest.cs

The ExtendedRequest(String) constructor creates an instance of the ExtendedRequest class using the specified name.

public:
 ExtendedRequest(System::String ^ requestName);
public ExtendedRequest (string requestName);
new System.DirectoryServices.Protocols.ExtendedRequest : string -> System.DirectoryServices.Protocols.ExtendedRequest
Public Sub New (requestName As String)

Parameters

requestName
String

The name of the request.

Applies to

ExtendedRequest(String, Byte[])

Source:
DirectoryRequest.cs
Source:
DirectoryRequest.cs
Source:
DirectoryRequest.cs

The ExtendedRequest(String, Byte[]) constructor creates an instance of the ExtendedRequest class using the specified name and value.

public:
 ExtendedRequest(System::String ^ requestName, cli::array <System::Byte> ^ requestValue);
public ExtendedRequest (string requestName, byte[] requestValue);
new System.DirectoryServices.Protocols.ExtendedRequest : string * byte[] -> System.DirectoryServices.Protocols.ExtendedRequest
Public Sub New (requestName As String, requestValue As Byte())

Parameters

requestName
String

The name of the request.

requestValue
Byte[]

The value of the request.

Applies to