CodeCatchClause.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeCatchClause.cs / 1 / CodeCatchClause.cs

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

namespace System.CodeDom { 
 
    using System.Diagnostics;
    using System; 
    using Microsoft.Win32;
    using System.Collections;
    using System.Runtime.InteropServices;
 
    /// 
    ///    Represents a catch exception block. 
    ///  
    [
        ClassInterface(ClassInterfaceType.AutoDispatch), 
        ComVisible(true),
        Serializable,
    ]
    public class CodeCatchClause { 
        private CodeStatementCollection statements;
        private CodeTypeReference catchExceptionType; 
        private string localName; 

        ///  
        ///    
        ///       Initializes an instance of .
        ///    
        ///  
        public CodeCatchClause() {
        } 
 
        /// 
        ///    [To be supplied.] 
        /// 
        public CodeCatchClause(string localName) {
            this.localName = localName;
        } 

        ///  
        ///    [To be supplied.] 
        /// 
        public CodeCatchClause(string localName, CodeTypeReference catchExceptionType) { 
            this.localName = localName;
            this.catchExceptionType = catchExceptionType;
        }
 
        /// 
        ///    [To be supplied.] 
        ///  
        public CodeCatchClause(string localName, CodeTypeReference catchExceptionType, params CodeStatement[] statements) {
            this.localName = localName; 
            this.catchExceptionType = catchExceptionType;
            Statements.AddRange(statements);
        }
 
        /// 
        ///    [To be supplied.] 
        ///  
        public string LocalName {
            get { 
                return (localName == null) ? string.Empty: localName;
            }
            set {
                localName = value; 
            }
        } 
 
        /// 
        ///    [To be supplied.] 
        /// 
        public CodeTypeReference CatchExceptionType {
            get {
                if (catchExceptionType == null) { 
                    catchExceptionType = new CodeTypeReference(typeof(System.Exception));
                } 
                return catchExceptionType; 
            }
            set { 
                catchExceptionType = value;
            }
        }
 
        /// 
        ///     
        ///       Gets or sets the statements within the clause. 
        ///    
        ///  
        public CodeStatementCollection Statements {
            get {
                if (statements == null) {
                    statements = new CodeStatementCollection(); 
                }
                return statements; 
            } 
        }
    } 
}


                        

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