EventRecord.Keywords 属性

定义

获取事件的关键字掩码。 获取 KeywordsDisplayNames 属性的值以获得此掩码中使用的关键字的名称。

public:
 abstract property Nullable<long> Keywords { Nullable<long> get(); };
public abstract long? Keywords { get; }
member this.Keywords : Nullable<int64>
Public MustOverride ReadOnly Property Keywords As Nullable(Of Long)

属性值

返回一个长整型值。 此值可为 NULL。

注解

事件的关键字用于根据事件的使用情况将事件与其他类似事件组合在一起。 每个关键字 (keyword) 都是 64 位掩码中的一个位。 预定义位值和保留位占据此掩码的前 16 个位置,使清单使用0x0000000000000001和0x0000800000000000之间的任何位。

标准事件关键字在枚举中 StandardEventKeywords 定义。

适用于

另请参阅