50 lines
1.2 KiB
C#
50 lines
1.2 KiB
C#
namespace System.Workflow.ComponentModel.Serialization
|
|
{
|
|
using System;
|
|
using System.IO;
|
|
using System.CodeDom;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.Design;
|
|
using System.ComponentModel.Design.Serialization;
|
|
using System.Collections;
|
|
using System.Xml;
|
|
using System.Xml.Serialization;
|
|
using System.Reflection;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Text;
|
|
using System.Globalization;
|
|
using System.Workflow.ComponentModel.Compiler;
|
|
using System.Workflow.ComponentModel.Design;
|
|
using System.Runtime.Serialization;
|
|
using System.Security.Permissions;
|
|
using System.Collections.ObjectModel;
|
|
using System.Drawing;
|
|
|
|
#region Element deserialization hooks
|
|
|
|
#region WorkflowMarkupElementEventArgs
|
|
internal sealed class WorkflowMarkupElementEventArgs : EventArgs
|
|
{
|
|
private XmlReader reader = null;
|
|
|
|
internal WorkflowMarkupElementEventArgs(XmlReader reader)
|
|
{
|
|
this.reader = reader;
|
|
}
|
|
|
|
public XmlReader XmlReader
|
|
{
|
|
get
|
|
{
|
|
return this.reader;
|
|
}
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#endregion
|
|
|
|
}
|
|
|