ModifyDNRequest Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The ModifyDNRequest() constructor creates an instance of the ModifyDNRequest object.
Overloads
ModifyDNRequest() |
The ModifyDNRequest() constructor creates an instance of the ModifyDNRequest object. |
ModifyDNRequest(String, String, String) |
The ModifyDNRequest(String, String, String) constructor creates an instance of the ModifyDNRequest object using the specified object name, parent name, and new object name. |
ModifyDNRequest()
- Source:
- DirectoryRequest.cs
- Source:
- DirectoryRequest.cs
- Source:
- DirectoryRequest.cs
- Source:
- DirectoryRequest.cs
The ModifyDNRequest() constructor creates an instance of the ModifyDNRequest object.
public:
ModifyDNRequest();
public ModifyDNRequest ();
Public Sub New ()
Applies to
ModifyDNRequest(String, String, String)
- Source:
- DirectoryRequest.cs
- Source:
- DirectoryRequest.cs
- Source:
- DirectoryRequest.cs
- Source:
- DirectoryRequest.cs
The ModifyDNRequest(String, String, String) constructor creates an instance of the ModifyDNRequest object using the specified object name, parent name, and new object name.
public:
ModifyDNRequest(System::String ^ distinguishedName, System::String ^ newParentDistinguishedName, System::String ^ newName);
public ModifyDNRequest (string distinguishedName, string newParentDistinguishedName, string newName);
new System.DirectoryServices.Protocols.ModifyDNRequest : string * string * string -> System.DirectoryServices.Protocols.ModifyDNRequest
Public Sub New (distinguishedName As String, newParentDistinguishedName As String, newName As String)
Parameters
- distinguishedName
- String
The current distinguished name of the object.
- newParentDistinguishedName
- String
The distinguished name of the new parent of the object.
- newName
- String
The new distinguished name of the object.