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

using System;

namespace System.DirectoryServices.AccountManagement
{
    [Flags]
    internal enum CredentialTypes
    {
        Password = 1,
        Certificate = 2
    }
}