[This is preliminary documentation and is subject to change.]
See WatchedObject.
Namespace:
Forcepoint.GUISSAssembly: Forcepoint.GUISS (in Forcepoint.GUISS.dll) Version: 0.2.0.1 (0.2.0.1)
Syntax
C# |
---|
public abstract Dictionary<string, WatchedObject> DeclareWatchedObjects() |
Return Value
new Dictionary<string, WatchedObject>()Examples
CopyC#
public override Dictionary<string, WatchedObject> DeclareWatchedObjects() { Dictionary<string, WatchedObject> tmp = new Dictionary<string, WatchedObject>(); tmp.Add("current_Text", new WatchedObject("")); return tmp; }