次の方法で共有


オブジェクトの名前の変更

DirectoryEntry は、ディレクトリ内のオブジェクトの名前を変更するための Rename メソッドを提供します。

次の例は、Rename を使用して User オブジェクトの名前を変更する方法を示しています。

Try
    ' Bind to the user object to modify.
    Dim child As New DirectoryEntry("LDAP://CN=My User Name,OU=Marketing,DC=fabrikam,DC=com")
    ' Rename the object to Jeff Smith.
    child.Rename("CN=New User Name")
Catch COMEx As COMException
    ' If a COMException is thrown, then the following code can capture the text of the error.
    ' For instructions about handling COM exceptions, see Handling Errors.
    Console.WriteLine(COMEx.ErrorCode)
End Try '}
try
{
    // Bind to the user object to modify.
    DirectoryEntry child = new DirectoryEntry("LDAP://CN=My User Name,OU=Marketing,DC=fabrikam,DC=com");
    // Rename the object to Jeff Smith.
    child.Rename("CN=New User Name");
}
catch (COMException COMEx)
{
    // If a COMException is thrown, then the following code can capture the text of the error.
    // For more information about handling COM exceptions, see Handling Errors.
    Console.WriteLine(COMEx.ErrorCode);
)

関連項目

リファレンス

System.DirectoryServices
DirectoryEntry

概念

オブジェクトの作成、削除、名前の変更、および移動

Send comments about this topic to Microsoft.

Copyright © 2007 by Microsoft Corporation. All rights reserved.