[bcl] Remove System.Activities.Presentation folder from referencesource
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / Hosting / WorkflowCommandExtensionItem.cs
diff --git a/mcs/class/referencesource/System.Activities.Presentation/System.Activities.Presentation/System/Activities/Presentation/Hosting/WorkflowCommandExtensionItem.cs b/mcs/class/referencesource/System.Activities.Presentation/System.Activities.Presentation/System/Activities/Presentation/Hosting/WorkflowCommandExtensionItem.cs
deleted file mode 100644 (file)
index 0739f8a..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-//----------------------------------------------------------------
-// Copyright (c) Microsoft Corporation.  All rights reserved.
-//----------------------------------------------------------------
-
-namespace System.Activities.Presentation.Hosting
-{
-    //WorkflowCommandExtensionItem - this class allows user to update each workflow's designer command 
-    //(i.e. input gestures collection). user has to provide IWorkflowCommandExtensionCallback implementation
-    //to get notifications flowing in.
-    public sealed class WorkflowCommandExtensionItem : ContextItem
-    {
-        public WorkflowCommandExtensionItem()
-        {
-        }
-
-        public WorkflowCommandExtensionItem(IWorkflowCommandExtensionCallback callback)
-        {
-            if (null == callback)
-            {
-                throw FxTrace.Exception.AsError(new ArgumentNullException("callback"));
-            }
-            this.CommandExtensionCallback = callback;
-        }
-
-        public override Type ItemType
-        {
-            get { return typeof(WorkflowCommandExtensionItem); }
-        }
-
-        internal IWorkflowCommandExtensionCallback CommandExtensionCallback
-        {
-            get;
-            private set;
-        }
-    }
-}