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:
authorLeonid Shalupov <shalupov@diverse.org.ru>2015-03-02 20:20:53 +0300
committerLeonid Shalupov <shalupov@diverse.org.ru>2015-03-26 21:18:26 +0300
commit830bf66a13ea18dd8c6f67203d9a70b20349f1d6 (patch)
tree8ff4ff0993c45c19bb6d7954973dfe791a1e7329 /mcs/class/System.Xaml/System.Windows.Markup
parent14c5e0e1440e77d554a4045ba74e71c93fc788e9 (diff)
move System.Windows.Markup.ValueSerializerAttribute to System assembly, as Microsoft does in .NET Framework 4.5
See MSDN https://msdn.microsoft.com/en-us/library/system.windows.markup.valueserializerattribute(v=vs.110).aspx
Diffstat (limited to 'mcs/class/System.Xaml/System.Windows.Markup')
-rwxr-xr-xmcs/class/System.Xaml/System.Windows.Markup/ValueSerializerAttribute.cs51
1 files changed, 0 insertions, 51 deletions
diff --git a/mcs/class/System.Xaml/System.Windows.Markup/ValueSerializerAttribute.cs b/mcs/class/System.Xaml/System.Windows.Markup/ValueSerializerAttribute.cs
deleted file mode 100755
index 37dec5262a9..00000000000
--- a/mcs/class/System.Xaml/System.Windows.Markup/ValueSerializerAttribute.cs
+++ /dev/null
@@ -1,51 +0,0 @@
-//
-// Copyright (C) 2010 Novell Inc. http://novell.com
-//
-// 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.Collections;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Reflection;
-using System.Windows.Markup;
-using System.Xaml.Schema;
-
-namespace System.Windows.Markup
-{
- [AttributeUsage (AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Interface, AllowMultiple = false, Inherited = true)]
- [System.Runtime.CompilerServices.TypeForwardedFrom (Consts.AssemblyWindowsBase)]
- public sealed class ValueSerializerAttribute : Attribute
- {
- public ValueSerializerAttribute (string valueSerializerTypeName)
- {
- ValueSerializerTypeName = valueSerializerTypeName;
- }
-
- public ValueSerializerAttribute (Type valueSerializerType)
- {
- ValueSerializerType = valueSerializerType;
- }
-
- public Type ValueSerializerType { get; private set; }
- public string ValueSerializerTypeName { get; private set; }
- }
-}
-