 |
DataInjectionInjectField Method |
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
Syntaxpublic static void InjectField(
this Object data,
string fieldName,
Object value
)
Parameters
- data
- Type: SystemObject
Data object on which a property shall be set. - fieldName
- Type: SystemString
Name of the field 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