AuthenticationType Перечисление

Определение

Задает метод проверки подлинности управления правами.

public enum class AuthenticationType
public enum AuthenticationType
type AuthenticationType = 
Public Enum AuthenticationType
Наследование
AuthenticationType

Поля

Internal 3

Неявная проверка подлинности любого запрашивающего пользователя.

Passport 1

Windows аутентификации Live ID.

Windows 0

проверка подлинности Windows в среде корпоративного домена.

WindowsPassport 2

Проверка подлинности Windows или Windows аутентификации Live ID.

Примеры

В следующем примере также показано использование перечисления AuthenticationType .

string applicationManifest = "<manifest></manifest>";
if (File.Exists("rpc.xml"))
{
    StreamReader manifestReader = File.OpenText("rpc.xml");
    applicationManifest = manifestReader.ReadToEnd();
}

if (_secureEnv == null)
{
    if (SecureEnvironment.IsUserActivated(new ContentUser(
                _currentUserId, AuthenticationType.Windows)))
    {
        _secureEnv = SecureEnvironment.Create(
            applicationManifest, new ContentUser(
                _currentUserId, AuthenticationType.Windows));
    }
    else
    {
        _secureEnv = SecureEnvironment.Create(
            applicationManifest,
            AuthenticationType.Windows,
            UserActivationMode.Permanent);
    }
}
Dim applicationManifest As String = "<manifest></manifest>"
If File.Exists("rpc.xml") Then
    Dim manifestReader As StreamReader = File.OpenText("rpc.xml")
    applicationManifest = manifestReader.ReadToEnd()
End If

If _secureEnv Is Nothing Then
    If SecureEnvironment.IsUserActivated(New ContentUser(_currentUserId, AuthenticationType.Windows)) Then
        _secureEnv = SecureEnvironment.Create(applicationManifest, New ContentUser(_currentUserId, AuthenticationType.Windows))
    Else
        _secureEnv = SecureEnvironment.Create(applicationManifest, AuthenticationType.Windows, UserActivationMode.Permanent)
    End If
End If

Комментарии

AuthenticationType указывает, как пользователи, обращающиеся к управляемому контенту с правами, должны проходить проверку подлинности.

Internal также обеспечивает проверку подлинности для владельца и автора защищенного документа или шаблона.

Применяется к

См. также раздел