| LDAPMoveRenameEntry Method |
Moves and / or renames an entry in the directory.
Namespace:
Galactic.LDAP
Assembly:
Galactic.LDAP (in Galactic.LDAP.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public bool MoveRenameEntry(
string distinguishedName,
string newParentDistinguishedName,
string newCommonName
)
Public Function MoveRenameEntry (
distinguishedName As String,
newParentDistinguishedName As String,
newCommonName As String
) As Boolean
public:
bool MoveRenameEntry(
String^ distinguishedName,
String^ newParentDistinguishedName,
String^ newCommonName
)
member MoveRenameEntry :
distinguishedName : string *
newParentDistinguishedName : string *
newCommonName : string -> bool
Parameters
- distinguishedName
- Type: SystemString
The distinguished name of the entry to move or rename. - newParentDistinguishedName
- Type: SystemString
The distinguished name of the entry's new parent entry in the directory (if moving), or its current parent entry (if renaming). - newCommonName
- Type: SystemString
The new common name of entry.
Return Value
Type:
BooleanTrue if moved or renamed, false otherwise.
See Also