CheckPair.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 / xsp / System / Web / Configuration / CheckPair.cs / 1 / CheckPair.cs

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

namespace System.Web.Configuration { 
    using System; 
    using System.Collections;
    using System.Collections.Specialized; 
    using System.Configuration;
    using System.Text;
    using System.Text.RegularExpressions;
    using System.Web.Compilation; 
    using System.Web.UI;
    using System.Web.Util; 
    using System.Xml; 
    using System.Globalization;
 
    internal class CheckPair {
        private string _header;
        private string _match;
        private bool _nonMatch; 
        internal CheckPair(string header, string match, bool nonMatch) {
            _header = header; 
            _match = match; 
            _nonMatch = nonMatch;
            //check validity of match string at parse time 
            Regex regex = new Regex(match);
        }

        internal CheckPair(string header, string match) { 
            _header = header;
            _match = match; 
            _nonMatch = false; 
            Regex regex = new Regex(match);
        } 

        public string Header {
            get {
                return _header; 
            }
        } 
 
        public string MatchString {
            get { 
                return _match;
            }
        }
 
        public bool NonMatch {
            get { 
                return _nonMatch; 
            }
        } 
    }
}


                        

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