Imported Upstream version 3.6.0

Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
This commit is contained in:
Jo Shields
2014-08-13 10:39:27 +01:00
commit a575963da9
50588 changed files with 8155799 additions and 0 deletions

View File

@@ -0,0 +1,68 @@
//
// AssemblyInfo.cs
//
// Author:
// Marek Habersack <mhabersack@novell.com>
//
// (C) 2007 Novell, Inc.
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Resources;
using System;
using System.Diagnostics;
using System.Web.UI;
using System.Security;
// General Information about the System.Web.Extensions.Design assembly
// v3.5 Assembly
[assembly: AssemblyTitle ("System.Web.Extensions.Design.dll")]
[assembly: AssemblyDescription ("System.Web.Extensions.Design.dll")]
[assembly: AssemblyDefaultAlias ("System.Web.Extensions.Design.dll")]
[assembly: AssemblyCompany (Consts.MonoCompany)]
[assembly: AssemblyProduct (Consts.MonoProduct)]
[assembly: AssemblyCopyright (Consts.MonoCopyright)]
#if NET_3_5
[assembly: AssemblyVersion (Consts.FxVersion)]
#else
[assembly: AssemblyVersion ("1.0.61025.0")]
#endif
[assembly: SatelliteContractVersion (Consts.FxVersion)]
[assembly: AssemblyInformationalVersion (Consts.FxFileVersion)]
[assembly: AssemblyFileVersion (Consts.FxFileVersion)]
[assembly: NeutralResourcesLanguage ("en-US")]
#if !(TARGET_JVM || TARGET_DOTNET)
[assembly: CLSCompliant (true)]
[assembly: AssemblyDelaySign (true)]
[assembly: AssemblyKeyFile ("../winfx.pub")]
#endif
[assembly: ComVisible (false)]
[assembly: CompilationRelaxations (CompilationRelaxations.NoStringInterning)]

View File

@@ -0,0 +1,8 @@
2007-09-11 Marek Habersack <mhabersack@novell.com>
* Assembly/AssemblyInfo.cs: added
* System.Web.Extensions.Design.dll.sources: added
* Makefile: added

View File

@@ -0,0 +1,12 @@
thisdir = class/System.Web.Extensions.Design
SUBDIRS =
include ../../build/rules.make
LIBRARY = System.Web.Extensions.Design.dll
LIB_MCS_FLAGS = \
-define:NET_3_5 \
-r:System.dll -r:System.Design.dll -r:System.Drawing.dll -r:System.Windows.Forms.dll
include ../../build/library.make

View File

@@ -0,0 +1,16 @@
../../build/common/Consts.cs
../../build/common/Locale.cs
../../build/common/MonoTODOAttribute.cs
Assembly/AssemblyInfo.cs
System.Web.Extensions.Design/AsyncPostBackTriggerControlIDConverter.cs
System.Web.Extensions.Design/AsyncPostBackTriggerEventNameConverter.cs
System.Web.Extensions.Design/CollectionEditorBase.cs
System.Web.Extensions.Design/ExtenderControlDesigner.cs
System.Web.Extensions.Design/PostBackTriggerControlIDConverter.cs
System.Web.Extensions.Design/ScriptManagerDesigner.cs
System.Web.Extensions.Design/ScriptManagerProxyDesigner.cs
System.Web.Extensions.Design/TimerDesigner.cs
System.Web.Extensions.Design/UpdatePanelDesigner.cs
System.Web.Extensions.Design/UpdatePanelTriggerCollectionEditor.cs
System.Web.Extensions.Design/UpdateProgressAssociatedUpdatePanelIDConverter.cs
System.Web.Extensions.Design/UpdateProgressDesigner.cs

View File

@@ -0,0 +1,61 @@
//
// AsyncPostBackTriggerControlIDConverter.cs
//
// Author:
// Marek Habersack <mhabersack@novell.com>
//
// (C) 2007 Novell, Inc.
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.ComponentModel;
namespace System.Web.UI.Design
{
public class AsyncPostBackTriggerControlIDConverter : StringConverter
{
[MonoNotSupported ("")]
public AsyncPostBackTriggerControlIDConverter ()
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override TypeConverter.StandardValuesCollection GetStandardValues (ITypeDescriptorContext context)
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override bool GetStandardValuesExclusive (ITypeDescriptorContext context)
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override bool GetStandardValuesSupported (ITypeDescriptorContext context)
{
throw new NotImplementedException ();
}
}
}

View File

@@ -0,0 +1,61 @@
//
// AsyncPostBackTriggerEventNameConverter.cs
//
// Author:
// Marek Habersack <mhabersack@novell.com>
//
// (C) 2007 Novell, Inc.
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.ComponentModel;
namespace System.Web.UI.Design
{
public class AsyncPostBackTriggerEventNameConverter : StringConverter
{
[MonoNotSupported ("")]
public AsyncPostBackTriggerEventNameConverter ()
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override TypeConverter.StandardValuesCollection GetStandardValues (ITypeDescriptorContext context)
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override bool GetStandardValuesExclusive (ITypeDescriptorContext context)
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override bool GetStandardValuesSupported (ITypeDescriptorContext context)
{
throw new NotImplementedException ();
}
}
}

View File

@@ -0,0 +1,26 @@
2007-09-11 Marek Habersack <mhabersack@novell.com>
* UpdateProgressDesigner.cs: added
* UpdateProgressAssociatedUpdatePanelIDConverter.cs: added
* UpdatePanelTriggerCollectionEditor.cs: added
* UpdatePanelDesigner.cs: added
* TimerDesigner.cs: added
* ScriptManagerProxyDesigner.cs: added
* ScriptManagerDesigner.cs: added
* PostBackTriggerControlIDConverter.cs: added
* ExtenderControlDesigner.cs: added
* CollectionEditorBase.cs: added
* AsyncPostBackTriggerEventNameConverter.cs: added
* AsyncPostBackTriggerControlIDConverter.cs: added

View File

@@ -0,0 +1,50 @@
//
// CollectionEditorBase.cs
//
// Author:
// Marek Habersack <mhabersack@novell.com>
//
// (C) 2007 Novell, Inc.
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.ComponentModel.Design;
namespace System.Web.UI.Design
{
public class CollectionEditorBase : CollectionEditor
{
[MonoNotSupported ("")]
public CollectionEditorBase (Type type)
: base (type)
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
protected override CollectionEditor.CollectionForm CreateCollectionForm ()
{
throw new NotImplementedException ();
}
}
}

View File

@@ -0,0 +1,49 @@
//
// ExtenderControlDesigner.cs
//
// Author:
// Marek Habersack <mhabersack@novell.com>
//
// (C) 2007 Novell, Inc.
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.ComponentModel.Design;
namespace System.Web.UI.Design
{
public class ExtenderControlDesigner : ControlDesigner
{
[MonoNotSupported ("")]
public ExtenderControlDesigner ()
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override string GetDesignTimeHtml ()
{
throw new NotImplementedException ();
}
}
}

View File

@@ -0,0 +1,60 @@
//
// PostBackTriggerControlIDConverter.cs
//
// Author:
// Marek Habersack <mhabersack@novell.com>
//
// (C) 2007 Novell, Inc.
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.ComponentModel;
namespace System.Web.UI.Design {
public class PostBackTriggerControlIDConverter : StringConverter
{
[MonoNotSupported ("")]
public PostBackTriggerControlIDConverter ()
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override TypeConverter.StandardValuesCollection GetStandardValues (ITypeDescriptorContext context)
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override bool GetStandardValuesExclusive (ITypeDescriptorContext context)
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override bool GetStandardValuesSupported (ITypeDescriptorContext context)
{
throw new NotImplementedException ();
}
}
}

View File

@@ -0,0 +1,49 @@
//
// ScriptManagerDesigner.cs
//
// Author:
// Marek Habersack <mhabersack@novell.com>
//
// (C) 2007 Novell, Inc.
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.ComponentModel.Design;
namespace System.Web.UI.Design
{
public class ScriptManagerDesigner : ControlDesigner
{
[MonoNotSupported ("")]
public ScriptManagerDesigner ()
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override string GetDesignTimeHtml ()
{
throw new NotImplementedException ();
}
}
}

View File

@@ -0,0 +1,49 @@
//
// ScriptManagerProxyDesigner.cs
//
// Author:
// Marek Habersack <mhabersack@novell.com>
//
// (C) 2007 Novell, Inc.
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.ComponentModel.Design;
namespace System.Web.UI.Design
{
public class ScriptManagerProxyDesigner : ControlDesigner
{
[MonoNotSupported ("")]
public ScriptManagerProxyDesigner ()
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override string GetDesignTimeHtml ()
{
throw new NotImplementedException ();
}
}
}

View File

@@ -0,0 +1,49 @@
//
// TimerDesigner.cs
//
// Author:
// Marek Habersack <mhabersack@novell.com>
//
// (C) 2007 Novell, Inc.
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.ComponentModel.Design;
namespace System.Web.UI.Design
{
public class TimerDesigner : ControlDesigner
{
[MonoNotSupported ("")]
public TimerDesigner ()
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override string GetDesignTimeHtml ()
{
throw new NotImplementedException ();
}
}
}

View File

@@ -0,0 +1,74 @@
//
// UpdatePanelDesigner.cs
//
// Author:
// Marek Habersack <mhabersack@novell.com>
//
// (C) 2007 Novell, Inc.
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.ComponentModel.Design;
namespace System.Web.UI.Design
{
public class UpdatePanelDesigner : ControlDesigner
{
[MonoNotSupported ("")]
public UpdatePanelDesigner ()
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override string GetDesignTimeHtml (DesignerRegionCollection regions)
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override string GetEditableDesignerRegionContent (EditableDesignerRegion region)
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override void OnComponentChanged (object sender, ComponentChangedEventArgs ce)
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override void SetEditableDesignerRegionContent (EditableDesignerRegion region, string content)
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
protected override bool UsePreviewControl {
get {
throw new NotImplementedException ();
}
}
}
}

View File

@@ -0,0 +1,69 @@
//
// UpdatePanelTriggerCollectionEditor.cs
//
// Author:
// Marek Habersack <mhabersack@novell.com>
//
// (C) 2007 Novell, Inc.
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.ComponentModel;
using System.ComponentModel.Design;
namespace System.Web.UI.Design
{
public class UpdatePanelTriggerCollectionEditor : CollectionEditorBase
{
[MonoNotSupported ("")]
public UpdatePanelTriggerCollectionEditor (Type type)
: base (type)
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
protected override bool CanSelectMultipleInstances ()
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
protected override Type CreateCollectionItemType ()
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
protected override Type[] CreateNewItemTypes ()
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override object EditValue (ITypeDescriptorContext context, IServiceProvider provider, object value)
{
throw new NotImplementedException ();
}
}
}

View File

@@ -0,0 +1,62 @@
//
// UpdateProgressAssociatedUpdatePanelIDConverter.cs
//
// Author:
// Marek Habersack <mhabersack@novell.com>
//
// (C) 2007 Novell, Inc.
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.ComponentModel;
using System.ComponentModel.Design;
namespace System.Web.UI.Design
{
public class UpdateProgressAssociatedUpdatePanelIDConverter : StringConverter
{
[MonoNotSupported ("")]
public UpdateProgressAssociatedUpdatePanelIDConverter ()
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override TypeConverter.StandardValuesCollection GetStandardValues (ITypeDescriptorContext context)
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override bool GetStandardValuesExclusive (ITypeDescriptorContext context)
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override bool GetStandardValuesSupported (ITypeDescriptorContext context)
{
throw new NotImplementedException ();
}
}
}

View File

@@ -0,0 +1,68 @@
//
// UpdateProgressDesigner.cs
//
// Author:
// Marek Habersack <mhabersack@novell.com>
//
// (C) 2007 Novell, Inc.
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.ComponentModel.Design;
namespace System.Web.UI.Design
{
public class UpdateProgressDesigner : ControlDesigner
{
[MonoNotSupported ("")]
public UpdateProgressDesigner ()
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override string GetDesignTimeHtml (DesignerRegionCollection regions)
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override string GetEditableDesignerRegionContent (EditableDesignerRegion region)
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
public override void SetEditableDesignerRegionContent (EditableDesignerRegion region, string content)
{
throw new NotImplementedException ();
}
[MonoNotSupported ("")]
protected override bool UsePreviewControl {
get {
throw new NotImplementedException ();
}
}
}
}