Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIain McCoy <iainmc@mono-cvs.ximian.com>2005-10-18 11:57:49 +0400
committerIain McCoy <iainmc@mono-cvs.ximian.com>2005-10-18 11:57:49 +0400
commit5e2f8ec2924fe22fdc2d1a5f89e1ce5e6d189355 (patch)
tree5f5a38704e94fcb32cca3d1c888cd5e67f01262f /mcs/class/PresentationFramework
parentfd580dbb299283bd8c9f470e061cff2d87742bc9 (diff)
2005-10-18 Iain McCoy <iain@mccoy.id.au>
* System.Windows.Serialization/XamlNodeType.cs: add forgotten file svn path=/trunk/mcs/; revision=51856
Diffstat (limited to 'mcs/class/PresentationFramework')
-rw-r--r--mcs/class/PresentationFramework/ChangeLog4
-rw-r--r--mcs/class/PresentationFramework/System.Windows.Serialization/XamlNodeType.cs37
2 files changed, 41 insertions, 0 deletions
diff --git a/mcs/class/PresentationFramework/ChangeLog b/mcs/class/PresentationFramework/ChangeLog
index cb875a803af..b1474a28cfe 100644
--- a/mcs/class/PresentationFramework/ChangeLog
+++ b/mcs/class/PresentationFramework/ChangeLog
@@ -1,3 +1,7 @@
+2005-10-18 Iain McCoy <iain@mccoy.id.au>
+
+ * System.Windows.Serialization/XamlNodeType.cs: add forgotten file
+
2005-09-01 Iain McCoy <iain@mccoy.id.au>
* System.Windows.Serialization/BamlAttributeUsage.cs,
diff --git a/mcs/class/PresentationFramework/System.Windows.Serialization/XamlNodeType.cs b/mcs/class/PresentationFramework/System.Windows.Serialization/XamlNodeType.cs
new file mode 100644
index 00000000000..e659024c776
--- /dev/null
+++ b/mcs/class/PresentationFramework/System.Windows.Serialization/XamlNodeType.cs
@@ -0,0 +1,37 @@
+namespace System.Windows.Serialization {
+ public enum XamlNodeType {
+ Attribute,
+ ClrEvent,
+ ConstructorParametersEnd,
+ ConstructorParametersStart,
+ ConstructorParameterType,
+ DefAttributeKeyType,
+ DefAttribute,
+ DefTag,
+ DocumentEnd,
+ DocumentStart,
+ ElementStart,
+ ElementEnd,
+ EndAttributes,
+ KeyElementEnd,
+ KeyElementStart,
+ Language,
+ LiteralContent,
+ PIMapping,
+ Property,
+ PropertyArrayEnd,
+ PropertyArrayStart,
+ PropertyComplexEnd,
+ PropertyComplexStart,
+ PropertyIDictionaryEnd,
+ PropertyIDictionaryStart,
+ PropertyIListEnd,
+ PropertyIListStart,
+ PropertyWithType,
+ RoutedEvent,
+ Text,
+ UnknownAttribute,
+ UnknownTagEnd,
+ UnknownTagStart
+ } ;
+}