|
ObjectChangeTrackingExtensionsOldPropertyValue Method (Object, String)
|
Gets the value of given selected property that had when the change-tracked object started to track its changes.
Namespace:
TrackerDog
Assembly:
TrackerDog (in TrackerDog.dll) Version: 2.2.1.0 (2.2.1.0)
Syntax public static Object OldPropertyValue(
this Object some,
string propertyName
)
<ExtensionAttribute>
Public Shared Function OldPropertyValue (
some As Object,
propertyName As String
) As Object
Parameters
- some
- Type: SystemObject
The change-tracked object - propertyName
- Type: SystemString
The property name
Return Value
Type:
ObjectThe value of the property when it was started to be tracked
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