Click or drag to resize

TypeRegistryExtensionsRegisterSymbols Method

Registers the specified symbols into the targetTypeRegistry.

Namespace: GSF.ComponentModel
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public static TypeRegistry RegisterSymbols(
	this IEnumerable<KeyValuePair<string, Object>> symbols,
	TypeRegistry targetTypeRegistry = null
)
View Source

Parameters

symbols  IEnumerableKeyValuePairString, Object
Symbols to register.
targetTypeRegistry  TypeRegistry  (Optional)
Type registry to target; set to null for a clone of the default registry.

Return Value

TypeRegistry
Target registry that with new registered symbols.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableKeyValuePairString, Object. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also