Jo Shields 3c1f479b9d Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
2015-04-07 09:35:12 +01:00

41 lines
1.4 KiB
C#

//-----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------
namespace System.Activities.XamlIntegration
{
using System;
using System.Windows.Markup;
public class ArgumentValueSerializer : ValueSerializer
{
public override bool CanConvertToString(object value, IValueSerializerContext context)
{
Argument argument = value as Argument;
if (argument == null)
{
return false;
}
if (ActivityBuilder.HasPropertyReferences(value))
{
// won't be able to attach the property references if we convert to string
return false;
}
return argument.CanConvertToString(context);
}
public override string ConvertToString(object value, IValueSerializerContext context)
{
Argument argument = value as Argument;
if (argument == null)
{
// expect CanConvertToString() always comes before ConvertToString()
throw FxTrace.Exception.Argument("value", SR.CannotSerializeExpression(value.GetType()));
}
return argument.ConvertToString(context);
}
}
}