Skip to content

Commit 1ecb9c3

Browse files
authored
Fixed typo in DirectorySearcher.Asyncronous page (#4057)
1 parent 0777f42 commit 1ecb9c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xml/System.DirectoryServices/DirectorySearcher.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ using System.DirectoryServices;
452452
// Bind to the users container.
453453
DirectoryEntry entry = new DirectoryEntry("LDAP://CN=users,DC=fabrikam,DC=com");
454454
// Create a DirectorySearcher object.
455-
DirectorySearcher mySearcher = new DirectorySearcher(entry);
455+
DirectorySearcher src = new DirectorySearcher(entry);
456456
//Set the Asynchronous property to true.
457457
src.Asynchronous = true;
458458
//Use the FindAll method to get search results.

0 commit comments

Comments
 (0)