LambdaValue<TResult>.CanConvertToString(IValueSerializerContext) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This method always returns true
and is used in conjunction with ConvertToString(IValueSerializerContext) to provide descriptive error messages when an attempt is made to serialize this activity to XAML.
public:
virtual bool CanConvertToString(System::Windows::Markup::IValueSerializerContext ^ context);
public bool CanConvertToString (System.Windows.Markup.IValueSerializerContext context);
abstract member CanConvertToString : System.Windows.Markup.IValueSerializerContext -> bool
override this.CanConvertToString : System.Windows.Markup.IValueSerializerContext -> bool
Public Function CanConvertToString (context As IValueSerializerContext) As Boolean
Parameters
- context
- IValueSerializerContext
Context information that is used for conversion.
Returns
This method always returns true
.
Implements
Remarks
LambdaValue<TResult> is used for lambda expressions specified in code and cannot be serialized to XAML. If an attempt to serialize a workflow that contains a LambdaValue<TResult> is made, a LambdaSerializationException is thrown. If the containing workflow requires XAML serialization, use VisualBasicValue<TResult> or use ExpressionServices to convert the LambdaValue<TResult> to a format that can be serialized.
Applies to
.NET