File: Interop\AdsOptions.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 AdsOptions
    {
        ADS_OPTION_SERVERNAME = 0,
        ADS_OPTION_REFERRALS = 1,
        ADS_OPTION_PAGE_SIZE = 2,
        ADS_OPTION_SECURITY_MASK = 3,
        ADS_OPTION_MUTUAL_AUTH_STATUS = 4,
        ADS_OPTION_QUOTA = 5,
        ADS_OPTION_PASSWORD_PORTNUMBER = 6,
        ADS_OPTION_PASSWORD_METHOD = 7
    }
}