Class ExecutionProperties
Inheritance
System.Object
ExecutionProperties
Namespace: System.Activities
Assembly: System.Activities.dll
Syntax
public sealed class ExecutionProperties : Object, IEnumerable<KeyValuePair<string, object>>, IEnumerable
Properties
IsEmpty
Declaration
public bool IsEmpty { get; }
Property Value
System.Boolean
|
Methods
Add(String, Object)
Declaration
public void Add(string name, object property)
Parameters
System.String
name
|
System.Object
property
|
Add(String, Object, Boolean)
Declaration
public void Add(string name, object property, bool onlyVisibleToPublicChildren)
Parameters
System.String
name
|
System.Object
property
|
System.Boolean
onlyVisibleToPublicChildren
|
Find(String)
Declaration
public object Find(string name)
Parameters
System.String
name
|
Returns
System.Object
|
GetEnumerator()
Declaration
public IEnumerator<KeyValuePair<string, object>> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.String, System.Object>>
|
Remove(String)
Declaration
public bool Remove(string name)
Parameters
System.String
name
|
Returns
System.Boolean
|