RootContext.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / CompMod / System / ComponentModel / Design / Serialization / RootContext.cs / 1 / RootContext.cs

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

namespace System.ComponentModel.Design.Serialization { 
 
    using System;
    using System.CodeDom; 
    using System.Collections;
    using System.Collections.Generic;

    ///  
    /// 
    ///    The root context is added by a type code dom serailizier to provide a definiton 
    ///    of the "root" object. 
    /// 
    public sealed class RootContext { 

        private CodeExpression expression;
        private object value;
 
        /// 
        ///  
        ///    This object can be placed on the context stack to represent the object that is the root 
        ///    of the serialization hierarchy.  In addition to this instance, the RootContext also
        ///    contains an expression that can be used to reference the RootContext. 
        /// 
        public RootContext(CodeExpression expression, object value) {
            if (expression == null) throw new ArgumentNullException("expression");
            if (value == null) throw new ArgumentNullException("value"); 

            this.expression = expression; 
            this.value = value; 
        }
 
        /// 
        /// 
        ///    The expression representing the root object in the object graph.
        ///  
        public CodeExpression Expression {
            get { 
                return expression; 
            }
        } 

        /// 
        /// 
        ///    The root object of the object graph. 
        /// 
        public object Value { 
            get { 
                return value;
            } 
        }
    }
}
 

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