File: Interop\AdsSearchPreferences.cs
Web Access
Project: src\src\runtime\src\libraries\System.DirectoryServices\src\System.DirectoryServices.csproj (System.DirectoryServices)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

namespace System.DirectoryServices
{
    internal enum AdsSearchPreferences
    {
        ASYNCHRONOUS = 0,
        DEREF_ALIASES = 1,
        SIZE_LIMIT = 2,
        TIME_LIMIT = 3,
        ATTRIBTYPES_ONLY = 4,
        SEARCH_SCOPE = 5,
        TIMEOUT = 6,
        PAGESIZE = 7,
        PAGED_TIME_LIMIT = 8,
        CHASE_REFERRALS = 9,
        SORT_ON = 10,
        CACHE_RESULTS = 11,
        DIRSYNC = 12,
        TOMBSTONE = 13,
        VLV = 14,
        ATTRIBUTE_QUERY = 15,
        SECURITY_MASK = 16,
        DIRSYNC_FLAG = 17,
        EXTENDED_DN = 18
    }
}