16 lines
523 B
C#
Raw Normal View History

//-----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------
namespace System.Activities.XamlIntegration
{
using System;
using System.Windows.Markup;
public interface IValueSerializableExpression
{
bool CanConvertToString(IValueSerializerContext context);
string ConvertToString(IValueSerializerContext context);
}
}