Click or drag to resize
weroSoft AG, Software
DataInjectionInjectProperty Method (Object, String, Object)
The documentation is integral part of the weroSoft product documentation. This part is intended to be used by developers only.
Injects a value to a property within a data object.

Namespace:  WeroSoft.Runtime
Assembly:  WeroSoft.Core.Library (in WeroSoft.Core.Library.dll) Version: 3.0 Pre-Release
Syntax
C#
public static void InjectProperty(
	this Object data,
	string propertyName,
	Object value
)

Parameters

data
Type: SystemObject
Data object on which a property shall be set.
propertyName
Type: SystemString
Name of the property whose data shall be injected.
value
Type: SystemObject
Value which shall be injected.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type 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