AssociationEndMember.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataEntity / System / Data / Metadata / Edm / AssociationEndMember.cs / 1 / AssociationEndMember.cs

                            //---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// 
// @owner  [....], [....]
//--------------------------------------------------------------------- 
 
using System;
using System.Collections.Generic; 
using System.Text;
using System.Threading;

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 object _getRelatedEndMethod = null; 

        /// cached dynamic method to set a CLR property value on a CLR instance 
        internal object 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  [....], [....]
//--------------------------------------------------------------------- 
 
using System;
using System.Collections.Generic; 
using System.Text;
using System.Threading;

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 object _getRelatedEndMethod = null; 

        /// cached dynamic method to set a CLR property value on a CLR instance 
        internal object 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