Show / Hide Table of Contents

Class SymbolResolver

Inheritance
System.Object
SymbolResolver
Namespace: System.Activities.Hosting
Assembly: System.Activities.dll
Syntax
public sealed class SymbolResolver : Object, IDictionary<string, object>, ICollection<KeyValuePair<string, object>>, IEnumerable<KeyValuePair<string, object>>, IEnumerable

Constructors

SymbolResolver()

Declaration
public SymbolResolver()

Properties

Count

Declaration
public int Count { get; }
Property Value
System.Int32

IsReadOnly

Declaration
public bool IsReadOnly { get; }
Property Value
System.Boolean

Item[String]

Declaration
public object this[string key] { get; set; }
Parameters
System.String key

Property Value
System.Object

Keys

Declaration
public ICollection<string> Keys { get; }
Property Value
System.Collections.Generic.ICollection<System.String>

Values

Declaration
public ICollection<object> Values { get; }
Property Value
System.Collections.Generic.ICollection<System.Object>

Methods

Add(KeyValuePair<String, Object>)

Declaration
public void Add(KeyValuePair<string, object> item)
Parameters
System.Collections.Generic.KeyValuePair<System.String, System.Object> item

Add(String, Object)

Declaration
public void Add(string key, object value)
Parameters
System.String key

System.Object value

Add(String, Object, Type)

Declaration
public void Add(string key, object value, Type type)
Parameters
System.String key

System.Object value

System.Type type

Add(String, Type)

Declaration
public void Add(string key, Type type)
Parameters
System.String key

System.Type type

AsLocationReferenceEnvironment()

Declaration
public LocationReferenceEnvironment AsLocationReferenceEnvironment()
Returns
LocationReferenceEnvironment

Clear()

Declaration
public void Clear()

Contains(KeyValuePair<String, Object>)

Declaration
public bool Contains(KeyValuePair<string, object> item)
Parameters
System.Collections.Generic.KeyValuePair<System.String, System.Object> item

Returns
System.Boolean

ContainsKey(String)

Declaration
public bool ContainsKey(string key)
Parameters
System.String key

Returns
System.Boolean

CopyTo(KeyValuePair<String, Object>[], Int32)

Declaration
public void CopyTo(KeyValuePair<string, object>[] array, int arrayIndex)
Parameters
System.Collections.Generic.KeyValuePair<System.String, System.Object>[] array

System.Int32 arrayIndex

GetEnumerator()

Declaration
public IEnumerator<KeyValuePair<string, object>> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.String, System.Object>>

Remove(KeyValuePair<String, Object>)

Declaration
public bool Remove(KeyValuePair<string, object> item)
Parameters
System.Collections.Generic.KeyValuePair<System.String, System.Object> item

Returns
System.Boolean

Remove(String)

Declaration
public bool Remove(string key)
Parameters
System.String key

Returns
System.Boolean

TryGetValue(String, out Object)

Declaration
public bool TryGetValue(string key, out object value)
Parameters
System.String key

System.Object value

Returns
System.Boolean

Back to top Generated by DocFX