UserActivationMode Sabit listesi

Tanım

Hak yönetimi etkinleştirme isteğinde bulunacak kullanıcı Hakları Hesabı Sertifikası türünü belirtir.

public enum class UserActivationMode
public enum UserActivationMode
type UserActivationMode = 
Public Enum UserActivationMode
Devralma
UserActivationMode

Alanlar

Permanent 0

Kalıcı bir Hak Hesabı Sertifikası.

Temporary 1

Geçici bir Hak Hesabı Sertifikası.

Örnekler

Aşağıdaki örnekte, bir oluşturmak için bu numaralandırmanın nasıl kullanılacağı gösterilmektedir SecureEnvironment.

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

Açıklamalar

yönteminin Create SecureEnvironmentparametresi olarak kullanılan, UserActivationMode veya Permanent Rights Hesabı Sertifikası istemek Temporary için belirtir.

Şunlara uygulanır

Ayrıca bkz.