UriSectionData.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 / Net / System / Net / Configuration / UriSectionData.cs / 1305376 / UriSectionData.cs

                            using System; 
using System.Collections.Generic;
using System.Text;
using System.Net;
using System.Security.Permissions; 
using System.IO;
using System.Xml; 
using System.Security; 
using System.Diagnostics;
 
namespace System.Configuration
{
    internal sealed class UriSectionData
    { 
        private UriIdnScope? idnScope;
        private bool? iriParsing; 
        private Dictionary schemeSettings; 

        public UriSectionData() 
        {
            schemeSettings = new Dictionary();
        }
 
        public UriIdnScope? IdnScope
        { 
            get { return idnScope; } 
            set { idnScope = value; }
        } 

        public bool? IriParsing
        {
            get { return iriParsing; } 
            set { iriParsing = value; }
        } 
 
        public Dictionary SchemeSettings
        { 
            get { return schemeSettings; }
        }
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
using System; 
using System.Collections.Generic;
using System.Text;
using System.Net;
using System.Security.Permissions; 
using System.IO;
using System.Xml; 
using System.Security; 
using System.Diagnostics;
 
namespace System.Configuration
{
    internal sealed class UriSectionData
    { 
        private UriIdnScope? idnScope;
        private bool? iriParsing; 
        private Dictionary schemeSettings; 

        public UriSectionData() 
        {
            schemeSettings = new Dictionary();
        }
 
        public UriIdnScope? IdnScope
        { 
            get { return idnScope; } 
            set { idnScope = value; }
        } 

        public bool? IriParsing
        {
            get { return iriParsing; } 
            set { iriParsing = value; }
        } 
 
        public Dictionary SchemeSettings
        { 
            get { return schemeSettings; }
        }
    }
} 

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