AssociationEndMember.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 / DataEntity / System / Data / Metadata / Edm / AssociationEndMember.cs / 1305376 / AssociationEndMember.cs

                            //---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// 
// @owner       [....]
// @backupOwner [....] 
//--------------------------------------------------------------------- 

using System; 
using System.Collections.Generic;
using System.Text;
using System.Threading;
using System.Data.Objects.DataClasses; 

namespace System.Data.Metadata.Edm 
{ 
    /// 
    /// Represents a end of a Association Type 
    /// 
    public sealed class AssociationEndMember : RelationshipEndMember
    {
        #region Constructors 
        /// 
        /// Initializes a new instance of AssociationEndMember 
        ///  
        /// name of the association end member
        /// Ref type that this end refers to  
        /// multiplicity of the end
        internal AssociationEndMember(string name,
                                    RefType endRefType,
                                    RelationshipMultiplicity multiplicity) 
            : base(name, endRefType, multiplicity)
        { 
        } 
        #endregion
 
        /// 
        /// Returns the kind of the type
        /// 
        public override BuiltInTypeKind BuiltInTypeKind { get { return BuiltInTypeKind.AssociationEndMember; } } 

        private Func _getRelatedEndMethod = null; 
 
        /// cached dynamic method to set a CLR property value on a CLR instance
        internal Func GetRelatedEnd 
        {
            get { return _getRelatedEndMethod; }
            set
            { 
                System.Diagnostics.Debug.Assert(null != value, "clearing GetRelatedEndMethod");
                // It doesn't matter which delegate wins, but only one should be jitted 
                Interlocked.CompareExchange(ref _getRelatedEndMethod, value, null); 
            }
        } 

    }
}

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

using System; 
using System.Collections.Generic;
using System.Text;
using System.Threading;
using System.Data.Objects.DataClasses; 

namespace System.Data.Metadata.Edm 
{ 
    /// 
    /// Represents a end of a Association Type 
    /// 
    public sealed class AssociationEndMember : RelationshipEndMember
    {
        #region Constructors 
        /// 
        /// Initializes a new instance of AssociationEndMember 
        ///  
        /// name of the association end member
        /// Ref type that this end refers to  
        /// multiplicity of the end
        internal AssociationEndMember(string name,
                                    RefType endRefType,
                                    RelationshipMultiplicity multiplicity) 
            : base(name, endRefType, multiplicity)
        { 
        } 
        #endregion
 
        /// 
        /// Returns the kind of the type
        /// 
        public override BuiltInTypeKind BuiltInTypeKind { get { return BuiltInTypeKind.AssociationEndMember; } } 

        private Func _getRelatedEndMethod = null; 
 
        /// cached dynamic method to set a CLR property value on a CLR instance
        internal Func GetRelatedEnd 
        {
            get { return _getRelatedEndMethod; }
            set
            { 
                System.Diagnostics.Debug.Assert(null != value, "clearing GetRelatedEndMethod");
                // It doesn't matter which delegate wins, but only one should be jitted 
                Interlocked.CompareExchange(ref _getRelatedEndMethod, value, null); 
            }
        } 

    }
}

// 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