Struct TNode.AttributeDictionary
- Namespace
- NUnit.Framework.Interfaces
- Assembly
- nunit.framework.dll
Class used to represent the attributes of a node
public readonly struct TNode.AttributeDictionary
- Inherited Members
Properties
Count
Gets the number of key/value pairs contained in the Dictionary<TKey, TValue>.
public int Count { get; }
Property Value
this[string]
Gets or sets the value associated with the specified key. Overridden to return null if attribute is not found.
public string? this[string key] { get; }
Parameters
key
stringThe key.
Property Value
- string
Value of the attribute or null
Methods
GetEnumerator()
Returns an enumerator that iterates through the collection.
public Dictionary<string, string>.Enumerator GetEnumerator()