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:
authorAdar Wesley <adar@mono-cvs.ximian.com>2007-05-15 15:57:31 +0400
committerAdar Wesley <adar@mono-cvs.ximian.com>2007-05-15 15:57:31 +0400
commitfa26c82574d1f0e95c2371e0455a1ccd5a20dc8a (patch)
treeba6a9aa45fb81a646b6f189326161f5e3b386314 /mcs/class/System/System.ComponentModel.Design.Serialization
parentc7d897bbf41eddb6d8cebe63b1b9374fcb043c01 (diff)
2007-05-15 Adar Wesley <adarw@mainsoft.com>
* AttributeCollection.cs: added missing method FromExisting. * Container.cs: added missing method ValidateName * DefaultValueAttribute.cs: added missing method SetValue. * EventHandlerList.cs: added missing method AddHandlers. * MemberDescriptor.cs: added missing method GetInvocationTarget. * PropertyDescriptor.cs: added missing method GetValueChangedHandler. * TypeDescriptor.cs: added missing methods CreateInstance, GetFullComponentName, GetClassName, GetReflectionType, CreateAssociation, GetAssociation, RemoveAssociation, RemoveAssociations. * MenuCommand.cs: added missing method overload Invoke * ContextStack.cs: added missing method Append. * Trace.cs: added missing method Refresh. svn path=/trunk/mcs/; revision=77397
Diffstat (limited to 'mcs/class/System/System.ComponentModel.Design.Serialization')
-rw-r--r--mcs/class/System/System.ComponentModel.Design.Serialization/ChangeLog4
-rw-r--r--mcs/class/System/System.ComponentModel.Design.Serialization/ContextStack.cs8
2 files changed, 12 insertions, 0 deletions
diff --git a/mcs/class/System/System.ComponentModel.Design.Serialization/ChangeLog b/mcs/class/System/System.ComponentModel.Design.Serialization/ChangeLog
index 41fe1e9c49c..478ce54e548 100644
--- a/mcs/class/System/System.ComponentModel.Design.Serialization/ChangeLog
+++ b/mcs/class/System/System.ComponentModel.Design.Serialization/ChangeLog
@@ -1,3 +1,7 @@
+2007-05-15 Adar Wesley <adarw@mainsoft.com>
+
+ * ContextStack.cs: added missing method Append.
+
2006-03-10 Raja R Harinath <rharinath@novell.com>
* CodeDomSerializerException.cs: Move to System.Design.dll.
diff --git a/mcs/class/System/System.ComponentModel.Design.Serialization/ContextStack.cs b/mcs/class/System/System.ComponentModel.Design.Serialization/ContextStack.cs
index 90d5ccd99eb..7c1bc952245 100644
--- a/mcs/class/System/System.ComponentModel.Design.Serialization/ContextStack.cs
+++ b/mcs/class/System/System.ComponentModel.Design.Serialization/ContextStack.cs
@@ -83,5 +83,13 @@ namespace System.ComponentModel.Design.Serialization
{
stack.Push (context);
}
+
+#if NET_2_0
+ [MonoNotSupported ("")]
+ public void Append (object context)
+ {
+ throw new NotImplementedException ();
+ }
+#endif
}
}