MemberBinding.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 / Core / Microsoft / Scripting / Ast / MemberBinding.cs / 1305376 / MemberBinding.cs

                            /* **************************************************************************** 
 *
 * Copyright (c) Microsoft Corporation.
 *
 * This source code is subject to terms and conditions of the Microsoft Public License. A 
 * copy of the license can be found in the License.html file at the root of this distribution. If
 * you cannot locate the  Microsoft Public License, please send an email to 
 * dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound 
 * by the terms of the Microsoft Public License.
 * 
 * You must not remove this notice, or any other, from this software.
 *
 *
 * ***************************************************************************/ 

using System.Reflection; 
 
namespace System.Linq.Expressions {
    ///  
    /// Describes the binding types that are used in MemberInitExpression objects.
    /// 
    public enum MemberBindingType {
        ///  
        /// A binding that represents initializing a member with the value of an expression.
        ///  
        Assignment, 
        /// 
        /// A binding that represents recursively initializing members of a member. 
        /// 
        MemberBinding,
        /// 
        /// A binding that represents initializing a member of type  or  from a list of elements. 
        /// 
        ListBinding 
    } 

    ///  
    /// Provides the base class from which the classes that represent bindings that are used to initialize members of a newly created object derive.
    /// 
    public abstract class MemberBinding {
        MemberBindingType _type; 
        MemberInfo _member;
 
        ///  
        /// Initializes an instance of  class.
        ///  
        /// The type of member binding.
        /// The field or property to be initialized.
        [Obsolete("Do not use this constructor. It will be removed in future releases.")]
        protected MemberBinding(MemberBindingType type, MemberInfo member) { 
            _type = type;
            _member = member; 
        } 

        ///  
        /// Gets the type of binding that is represented.
        /// 
        public MemberBindingType BindingType {
            get { return _type; } 
        }
 
        ///  
        /// Gets the field or property to be initialized.
        ///  
        public MemberInfo Member {
            get { return _member; }
        }
 
        /// 
        /// Returns a  that represents the current . 
        ///  
        /// A  that represents the current . 
        public override string ToString() { 
            return ExpressionStringBuilder.MemberBindingToString(this);
        }
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
/* **************************************************************************** 
 *
 * Copyright (c) Microsoft Corporation.
 *
 * This source code is subject to terms and conditions of the Microsoft Public License. A 
 * copy of the license can be found in the License.html file at the root of this distribution. If
 * you cannot locate the  Microsoft Public License, please send an email to 
 * dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound 
 * by the terms of the Microsoft Public License.
 * 
 * You must not remove this notice, or any other, from this software.
 *
 *
 * ***************************************************************************/ 

using System.Reflection; 
 
namespace System.Linq.Expressions {
    ///  
    /// Describes the binding types that are used in MemberInitExpression objects.
    /// 
    public enum MemberBindingType {
        ///  
        /// A binding that represents initializing a member with the value of an expression.
        ///  
        Assignment, 
        /// 
        /// A binding that represents recursively initializing members of a member. 
        /// 
        MemberBinding,
        /// 
        /// A binding that represents initializing a member of type  or  from a list of elements. 
        /// 
        ListBinding 
    } 

    ///  
    /// Provides the base class from which the classes that represent bindings that are used to initialize members of a newly created object derive.
    /// 
    public abstract class MemberBinding {
        MemberBindingType _type; 
        MemberInfo _member;
 
        ///  
        /// Initializes an instance of  class.
        ///  
        /// The type of member binding.
        /// The field or property to be initialized.
        [Obsolete("Do not use this constructor. It will be removed in future releases.")]
        protected MemberBinding(MemberBindingType type, MemberInfo member) { 
            _type = type;
            _member = member; 
        } 

        ///  
        /// Gets the type of binding that is represented.
        /// 
        public MemberBindingType BindingType {
            get { return _type; } 
        }
 
        ///  
        /// Gets the field or property to be initialized.
        ///  
        public MemberInfo Member {
            get { return _member; }
        }
 
        /// 
        /// Returns a  that represents the current . 
        ///  
        /// A  that represents the current . 
        public override string ToString() { 
            return ExpressionStringBuilder.MemberBindingToString(this);
        }
    }
} 

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

                        

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