SECURITY_IMPERSONATION_LEVEL 枚举 (wudfddi.h)
[仅适用于 UMDF]
SECURITY_IMPERSONATION_LEVEL枚举包含标识安全模拟级别的值。
语法
typedef enum _SECURITY_IMPERSONATION_LEVEL {
SecurityAnonymous,
SecurityIdentification,
SecurityImpersonation,
SecurityDelegation
} SECURITY_IMPERSONATION_LEVEL;
常量
SecurityAnonymous 驱动程序无法模拟或标识客户端。 |
SecurityIdentification 驱动程序可以获取客户端的标识和特权,但不能模拟客户端。 |
SecurityImpersonation 驱动程序可以在本地系统上模拟客户端的安全上下文。 |
SecurityDelegation 驱动程序可以在远程系统上模拟客户端的安全上下文。 |
注解
有关 UMDF 中模拟的详细信息,请参阅 处理客户端模拟。
UMDF 驱动程序向 IWDFIoRequest::Impersonate 方法提供SECURITY_IMPERSONATION_LEVEL值之一,以设置安全模拟级别。
有关安全模拟级别的详细信息,请参阅Microsoft Windows SDK文档中的 SECURITY_IMPERSONATION_LEVEL 枚举类型。
要求
要求 | 值 |
---|---|
Header | wudfddi.h (包括 Wudfddi.h) |