16 lines
523 B
C#
16 lines
523 B
C#
|
//-----------------------------------------------------------------------------
|
|||
|
// 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);
|
|||
|
}
|
|||
|
}
|