DefaultSerializationProviderAttribute.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / Design / Serialization / DefaultSerializationProviderAttribute.cs / 1305376 / DefaultSerializationProviderAttribute.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.ComponentModel.Design.Serialization { 
    using System.Security.Permissions; 

    ///  
    ///     The default serialization provider attribute is placed on a serializer
    ///     to indicate the class to use as a default provider of that type of
    ///     serializer.  To be a default serialization provider, a class must
    ///     implement IDesignerSerilaizationProvider and have an empty 
    ///     constructor.  The class itself can be internal to the assembly.
    ///  
    [AttributeUsage(AttributeTargets.Class, Inherited = false)] 
    public sealed class DefaultSerializationProviderAttribute : Attribute {
 
        private string _providerTypeName;

        /// 
        ///     Creates a new DefaultSerializationProviderAttribute 
        /// 
        public DefaultSerializationProviderAttribute(Type providerType) { 
 
            if (providerType == null) {
                throw new ArgumentNullException("providerType"); 
            }

            _providerTypeName = providerType.AssemblyQualifiedName;
        } 

        ///  
        ///     Creates a new DefaultSerializationProviderAttribute 
        /// 
        public DefaultSerializationProviderAttribute(string providerTypeName) { 

            if (providerTypeName == null) {
                throw new ArgumentNullException("providerTypeName");
            } 

            _providerTypeName = providerTypeName; 
        } 

        ///  
        ///     Returns the type name for the default serialization provider.
        /// 
        public string ProviderTypeName {
            get { 
                return _providerTypeName;
            } 
        } 
    }
} 


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.ComponentModel.Design.Serialization { 
    using System.Security.Permissions; 

    ///  
    ///     The default serialization provider attribute is placed on a serializer
    ///     to indicate the class to use as a default provider of that type of
    ///     serializer.  To be a default serialization provider, a class must
    ///     implement IDesignerSerilaizationProvider and have an empty 
    ///     constructor.  The class itself can be internal to the assembly.
    ///  
    [AttributeUsage(AttributeTargets.Class, Inherited = false)] 
    public sealed class DefaultSerializationProviderAttribute : Attribute {
 
        private string _providerTypeName;

        /// 
        ///     Creates a new DefaultSerializationProviderAttribute 
        /// 
        public DefaultSerializationProviderAttribute(Type providerType) { 
 
            if (providerType == null) {
                throw new ArgumentNullException("providerType"); 
            }

            _providerTypeName = providerType.AssemblyQualifiedName;
        } 

        ///  
        ///     Creates a new DefaultSerializationProviderAttribute 
        /// 
        public DefaultSerializationProviderAttribute(string providerTypeName) { 

            if (providerTypeName == null) {
                throw new ArgumentNullException("providerTypeName");
            } 

            _providerTypeName = providerTypeName; 
        } 

        ///  
        ///     Returns the type name for the default serialization provider.
        /// 
        public string ProviderTypeName {
            get { 
                return _providerTypeName;
            } 
        } 
    }
} 


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK