ObjectToModelValueConverter.ConvertBack Method
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Converts the specified ModelItem to a ModelPropertyEntry.
Namespace: System.Activities.Design.ModelTree
Assembly: System.Activities.Design (in System.Activities.Design.dll)
Syntax
'Declaration
Public Function ConvertBack ( _
value As Object, _
targetTypes As Type(), _
parameter As Object, _
culture As CultureInfo _
) As Object()
'Usage
Dim instance As ObjectToModelValueConverter
Dim value As Object
Dim targetTypes As Type()
Dim parameter As Object
Dim culture As CultureInfo
Dim returnValue As Object()
returnValue = instance.ConvertBack(value, _
targetTypes, parameter, culture)
public Object[] ConvertBack(
Object value,
Type[] targetTypes,
Object parameter,
CultureInfo culture
)
public:
virtual array<Object^>^ ConvertBack(
Object^ value,
array<Type^>^ targetTypes,
Object^ parameter,
CultureInfo^ culture
) sealed
public final function ConvertBack(
value : Object,
targetTypes : Type[],
parameter : Object,
culture : CultureInfo
) : Object[]
abstract ConvertBack :
value:Object *
targetTypes:Type[] *
parameter:Object *
culture:CultureInfo -> Object[]
override ConvertBack :
value:Object *
targetTypes:Type[] *
parameter:Object *
culture:CultureInfo -> Object[]
Parameters
- value
Type: System.Object
The ModelItem to convert.
- targetTypes
Type: array<System.Type[]
Not used in this implementation.
- parameter
Type: System.Object
Not used in this implementation.
- culture
Type: System.Globalization.CultureInfo
Not used in this implementation.
Return Value
Type: array<System.Object[]
Returns a Object that contains the converted ModelPropertyEntry. .
Implements
IMultiValueConverter.ConvertBack(Object, array<Type[], Object, CultureInfo)
Remarks
This method is a one-way binding with the ModelPropertyEntry.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Platforms
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information
.NET Framework
Supported in: 4
See Also
Reference
ObjectToModelValueConverter Class