e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
53 lines
1.3 KiB
C#
53 lines
1.3 KiB
C#
// <copyright>
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace System.Activities.XamlIntegration
|
|
{
|
|
using System;
|
|
using System.Activities.DynamicUpdate;
|
|
using System.Windows.Markup;
|
|
using System.Xml.Serialization;
|
|
|
|
[ContentProperty("XmlContent")]
|
|
public class DynamicUpdateMapExtension : MarkupExtension
|
|
{
|
|
private NetDataContractXmlSerializable<DynamicUpdateMap> content;
|
|
|
|
public DynamicUpdateMapExtension()
|
|
{
|
|
}
|
|
|
|
public DynamicUpdateMapExtension(DynamicUpdateMap updateMap)
|
|
{
|
|
this.content = new NetDataContractXmlSerializable<DynamicUpdateMap>(updateMap);
|
|
}
|
|
|
|
public DynamicUpdateMap UpdateMap
|
|
{
|
|
get
|
|
{
|
|
return this.content != null ? this.content.Value : null;
|
|
}
|
|
}
|
|
|
|
public IXmlSerializable XmlContent
|
|
{
|
|
get
|
|
{
|
|
if (this.content == null)
|
|
{
|
|
this.content = new NetDataContractXmlSerializable<DynamicUpdateMap>();
|
|
}
|
|
|
|
return this.content;
|
|
}
|
|
}
|
|
|
|
public override object ProvideValue(IServiceProvider serviceProvider)
|
|
{
|
|
return this.UpdateMap;
|
|
}
|
|
}
|
|
}
|