HtmlHead.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 / xsp / System / Web / UI / HtmlControls / HtmlHead.cs / 1305376 / HtmlHead.cs

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

namespace System.Web.UI.HtmlControls { 
    using System; 
    using System.Collections;
    using System.Collections.Specialized; 
    using System.ComponentModel;
    using System.Globalization;
    using System.Web;
    using System.Web.UI; 
    using System.Web.UI.WebControls;
    using System.Security.Permissions; 
 
    public class HtmlHeadBuilder : ControlBuilder {
 

        public override Type GetChildControlType(string tagName, IDictionary attribs) {
            if (String.Equals(tagName, "title", StringComparison.OrdinalIgnoreCase))
                return typeof(HtmlTitle); 

            if (String.Equals(tagName, "link", StringComparison.OrdinalIgnoreCase)) 
                return typeof(HtmlLink); 

            if (String.Equals(tagName, "meta", StringComparison.OrdinalIgnoreCase)) 
                return typeof(HtmlMeta);

            return null;
        } 

 
        public override bool AllowWhitespaceLiterals() { 
            return false;
        } 
    }

    /// 
    /// Represents the HEAD element. 
    /// 
    [ 
    ControlBuilderAttribute(typeof(HtmlHeadBuilder)) 
    ]
    public sealed class HtmlHead : HtmlGenericControl { 

        private StyleSheetInternal _styleSheet;
        private HtmlTitle _title;
        private String _cachedTitleText; 
        private HtmlMeta _description;
        private String _cachedDescription; 
        private HtmlMeta _keywords; 
        private String _cachedKeywords;
 
        /// 
        /// Initializes an instance of an HtmlHead class.
        /// 
        public HtmlHead() : base("head") { 
        }
 
        public HtmlHead(string tag) : base(tag) { 
            if (tag == null) {
                tag = String.Empty; 
            }
            _tagName = tag;
        }
 
        public IStyleSheet StyleSheet {
            get { 
                if (_styleSheet == null) { 
                    _styleSheet = new StyleSheetInternal(this);
                } 

                return _styleSheet;
            }
        } 

        public String Title { 
            get { 
                if (_title == null) {
                    return _cachedTitleText; 
                }

                return _title.Text;
            } 
            set {
                if (_title == null) { 
                    // Side effect of adding a title to the control assigns _title 
                    _cachedTitleText = value;
                } 
                else {
                    _title.Text = value;
                }
            } 
        }
 
        public String Description { 
            get {
                if (_description == null) { 
                    return _cachedDescription;
                }

                return _description.Content; 
            }
            set { 
                if (_description == null) { 
                    // Side effect of adding a description to the control assigns _description
                    _cachedDescription = value; 
                }
                else {
                    _description.Content = value;
                } 
            }
        } 
 
        public String Keywords {
            get { 
                if (_keywords == null) {
                    return _cachedKeywords;
                }
 
                return _keywords.Content;
            } 
            set { 
                if (_keywords == null) {
                    // Side effect of adding a title to the control assigns _title 
                    _cachedKeywords = value;
                }
                else {
                    _keywords.Content = value; 
                }
            } 
        } 

        protected internal override void AddedControl(Control control, int index) { 
            base.AddedControl(control, index);

            if (control is HtmlTitle) {
                if (_title != null) { 
                    throw new HttpException(SR.GetString(SR.HtmlHead_OnlyOneTitleAllowed));
                } 
 
                _title = (HtmlTitle)control;
            } 
            else if (control is HtmlMeta) {
                // We will only use the first matching meta tag per, and ignore any others
                HtmlMeta meta = (HtmlMeta)control;
                if (_description == null && string.Equals(meta.Name, "description", StringComparison.OrdinalIgnoreCase)) { 
                    _description = meta;
                } 
                else if (_keywords == null && string.Equals(meta.Name, "keywords", StringComparison.OrdinalIgnoreCase)) { 
                    _keywords = meta;
                } 
            }
        }

        ///  
        /// 
        /// Allows the HEAD element to register itself with the page. 
        ///  
        protected internal override void OnInit(EventArgs e) {
            base.OnInit(e); 

            Page p = Page;
            if (p == null) {
                throw new HttpException(SR.GetString(SR.Head_Needs_Page)); 
            }
            if (p.Header != null) { 
                throw new HttpException(SR.GetString(SR.HtmlHead_OnlyOneHeadAllowed)); 
            }
            p.SetHeader(this); 
        }

        internal void RegisterCssStyleString(string outputString) {
            ((StyleSheetInternal)StyleSheet).CSSStyleString = outputString; 
        }
 
        protected internal override void RemovedControl(Control control) { 
            base.RemovedControl(control);
 
            if (control is HtmlTitle) {
                _title = null;
            }
            // There can be many meta tags, so we only clear it if its the correct meta 
            else if (control == _description) {
                _description = null; 
            } 
            else if (control == _keywords) {
                _keywords = null; 
            }
        }

        ///  
        /// 
        /// Notifies the Page when the HEAD is being rendered. 
        ///  
        protected internal override void RenderChildren(HtmlTextWriter writer) {
            base.RenderChildren(writer); 

            if (_title == null) {
                // Always render out a  tag since it is required for xhtml 1.1 compliance
                writer.RenderBeginTag(HtmlTextWriterTag.Title); 
                if (_cachedTitleText != null) {
                    writer.Write(_cachedTitleText); 
                } 
                writer.RenderEndTag();
            } 

            if (_description == null && !String.IsNullOrEmpty(_cachedDescription)) {
                // Go ahead and render out a meta tag if they set description but don't have a meta tag
                writer.AddAttribute(HtmlTextWriterAttribute.Name, "description"); 
                writer.AddAttribute(HtmlTextWriterAttribute.Content, _cachedDescription);
                writer.RenderBeginTag(HtmlTextWriterTag.Meta); 
                writer.RenderEndTag(); 
            }
 
            if (_keywords == null && !String.IsNullOrEmpty(_cachedKeywords)) {
                // Go ahead and render out a meta tag if they set keywords but don't have a meta tag
                writer.AddAttribute(HtmlTextWriterAttribute.Name, "keywords");
                writer.AddAttribute(HtmlTextWriterAttribute.Content, _cachedKeywords); 
                writer.RenderBeginTag(HtmlTextWriterTag.Meta);
                writer.RenderEndTag(); 
            } 

            if ((string)Page.Request.Browser["requiresXhtmlCssSuppression"] != "true") { 
                RenderStyleSheet(writer);
            }
        }
 
        internal void RenderStyleSheet(HtmlTextWriter writer) {
            if(_styleSheet != null) { 
                _styleSheet.Render(writer); 
            }
        } 

        internal static void RenderCssRule(CssTextWriter cssWriter, string selector,
            Style style, IUrlResolutionService urlResolver) {
 
            cssWriter.WriteBeginCssRule(selector);
 
            CssStyleCollection attrs = style.GetStyleAttributes(urlResolver); 
            attrs.Render(cssWriter);
 
            cssWriter.WriteEndCssRule();
        }

        /// <devdoc> 
        /// Implements the IStyleSheet interface to represent an embedded
        /// style sheet within the HEAD element. 
        /// </devdoc> 
        private sealed class StyleSheetInternal : IStyleSheet, IUrlResolutionService {
 
            private HtmlHead _owner;
            private ArrayList _styles;
            private ArrayList _selectorStyles;
 
            private int _autoGenCount;
 
            public StyleSheetInternal(HtmlHead owner) { 
                _owner = owner;
            } 

            // CssStyleString registered by the PartialCachingControl
            private string _cssStyleString;
            internal string CSSStyleString { 
                get {
                    return _cssStyleString; 
                } 
                set {
                    _cssStyleString = value; 
                }
            }

            public void Render(HtmlTextWriter writer) { 
                if ((_styles == null) && (_selectorStyles == null) && CSSStyleString == null) {
                    return; 
                } 

                writer.AddAttribute(HtmlTextWriterAttribute.Type, "text/css"); 
                writer.RenderBeginTag(HtmlTextWriterTag.Style);

                CssTextWriter cssWriter = new CssTextWriter(writer);
                if (_styles != null) { 
                    for (int i = 0; i < _styles.Count; i++) {
                        StyleInfo si = (StyleInfo)_styles[i]; 
 
                        string cssClass = si.style.RegisteredCssClass;
                        if (cssClass.Length != 0) { 
                            RenderCssRule(cssWriter, "." + cssClass, si.style, si.urlResolver);
                        }
                    }
                } 

                if (_selectorStyles != null) { 
                    for (int i = 0; i < _selectorStyles.Count; i++) { 
                        SelectorStyleInfo si = (SelectorStyleInfo)_selectorStyles[i];
                        RenderCssRule(cssWriter, si.selector, si.style, si.urlResolver); 
                    }
                }

                if (CSSStyleString != null) { 
                    writer.Write(CSSStyleString);
                } 
 
                writer.RenderEndTag();
            } 

            #region Implementation of IStyleSheet
            void IStyleSheet.CreateStyleRule(Style style, IUrlResolutionService urlResolver, string selector) {
                if (style == null) { 
                    throw new ArgumentNullException("style");
                } 
 
                if (selector.Length == 0) {
                    throw new ArgumentNullException("selector"); 
                }

                if (_selectorStyles == null) {
                    _selectorStyles = new ArrayList(); 
                }
 
                if (urlResolver == null) { 
                    urlResolver = this;
                } 

                SelectorStyleInfo styleInfo = new SelectorStyleInfo();
                styleInfo.selector = selector;
                styleInfo.style = style; 
                styleInfo.urlResolver = urlResolver;
 
                _selectorStyles.Add(styleInfo); 

                Page page = _owner.Page; 

                // If there are any partial caching controls on the stack, forward the styleInfo to them
                if (page.PartialCachingControlStack != null) {
                    foreach (BasePartialCachingControl c in page.PartialCachingControlStack) { 
                        c.RegisterStyleInfo(styleInfo);
                    } 
                } 
            }
 
            void IStyleSheet.RegisterStyle(Style style, IUrlResolutionService urlResolver) {
                if (style == null) {
                    throw new ArgumentNullException("style");
                } 

                if (_styles == null) { 
                    _styles = new ArrayList(); 
                }
                else if (style.RegisteredCssClass.Length != 0) { 
                    // if it's already registered, throw an exception
                    throw new InvalidOperationException(SR.GetString(SR.HtmlHead_StyleAlreadyRegistered));
                }
 
                if (urlResolver == null) {
                    urlResolver = this; 
                } 

                StyleInfo styleInfo = new StyleInfo(); 
                styleInfo.style = style;
                styleInfo.urlResolver = urlResolver;

                int index = _autoGenCount++; 
                string name = "aspnet_s" + index.ToString(NumberFormatInfo.InvariantInfo);
 
                style.SetRegisteredCssClass(name); 
                _styles.Add(styleInfo);
            } 
            #endregion

            #region Implementation of IUrlResolutionService
            string IUrlResolutionService.ResolveClientUrl(string relativeUrl) { 
                return _owner.ResolveClientUrl(relativeUrl);
            } 
            #endregion 

            private sealed class StyleInfo { 
                public Style style;
                public IUrlResolutionService urlResolver;
            }
        } 
    }
 
    internal sealed class SelectorStyleInfo { 
        public string selector;
        public Style style; 
        public IUrlResolutionService urlResolver;
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// <copyright file="HtmlHead.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
//----------------------------------------------------------------------------- 

namespace System.Web.UI.HtmlControls { 
    using System; 
    using System.Collections;
    using System.Collections.Specialized; 
    using System.ComponentModel;
    using System.Globalization;
    using System.Web;
    using System.Web.UI; 
    using System.Web.UI.WebControls;
    using System.Security.Permissions; 
 
    public class HtmlHeadBuilder : ControlBuilder {
 

        public override Type GetChildControlType(string tagName, IDictionary attribs) {
            if (String.Equals(tagName, "title", StringComparison.OrdinalIgnoreCase))
                return typeof(HtmlTitle); 

            if (String.Equals(tagName, "link", StringComparison.OrdinalIgnoreCase)) 
                return typeof(HtmlLink); 

            if (String.Equals(tagName, "meta", StringComparison.OrdinalIgnoreCase)) 
                return typeof(HtmlMeta);

            return null;
        } 

 
        public override bool AllowWhitespaceLiterals() { 
            return false;
        } 
    }

    /// <devdoc>
    /// Represents the HEAD element. 
    /// </devdoc>
    [ 
    ControlBuilderAttribute(typeof(HtmlHeadBuilder)) 
    ]
    public sealed class HtmlHead : HtmlGenericControl { 

        private StyleSheetInternal _styleSheet;
        private HtmlTitle _title;
        private String _cachedTitleText; 
        private HtmlMeta _description;
        private String _cachedDescription; 
        private HtmlMeta _keywords; 
        private String _cachedKeywords;
 
        /// <devdoc>
        /// Initializes an instance of an HtmlHead class.
        /// </devdoc>
        public HtmlHead() : base("head") { 
        }
 
        public HtmlHead(string tag) : base(tag) { 
            if (tag == null) {
                tag = String.Empty; 
            }
            _tagName = tag;
        }
 
        public IStyleSheet StyleSheet {
            get { 
                if (_styleSheet == null) { 
                    _styleSheet = new StyleSheetInternal(this);
                } 

                return _styleSheet;
            }
        } 

        public String Title { 
            get { 
                if (_title == null) {
                    return _cachedTitleText; 
                }

                return _title.Text;
            } 
            set {
                if (_title == null) { 
                    // Side effect of adding a title to the control assigns _title 
                    _cachedTitleText = value;
                } 
                else {
                    _title.Text = value;
                }
            } 
        }
 
        public String Description { 
            get {
                if (_description == null) { 
                    return _cachedDescription;
                }

                return _description.Content; 
            }
            set { 
                if (_description == null) { 
                    // Side effect of adding a description to the control assigns _description
                    _cachedDescription = value; 
                }
                else {
                    _description.Content = value;
                } 
            }
        } 
 
        public String Keywords {
            get { 
                if (_keywords == null) {
                    return _cachedKeywords;
                }
 
                return _keywords.Content;
            } 
            set { 
                if (_keywords == null) {
                    // Side effect of adding a title to the control assigns _title 
                    _cachedKeywords = value;
                }
                else {
                    _keywords.Content = value; 
                }
            } 
        } 

        protected internal override void AddedControl(Control control, int index) { 
            base.AddedControl(control, index);

            if (control is HtmlTitle) {
                if (_title != null) { 
                    throw new HttpException(SR.GetString(SR.HtmlHead_OnlyOneTitleAllowed));
                } 
 
                _title = (HtmlTitle)control;
            } 
            else if (control is HtmlMeta) {
                // We will only use the first matching meta tag per, and ignore any others
                HtmlMeta meta = (HtmlMeta)control;
                if (_description == null && string.Equals(meta.Name, "description", StringComparison.OrdinalIgnoreCase)) { 
                    _description = meta;
                } 
                else if (_keywords == null && string.Equals(meta.Name, "keywords", StringComparison.OrdinalIgnoreCase)) { 
                    _keywords = meta;
                } 
            }
        }

        /// <internalonly/> 
        /// <devdoc>
        /// Allows the HEAD element to register itself with the page. 
        /// </devdoc> 
        protected internal override void OnInit(EventArgs e) {
            base.OnInit(e); 

            Page p = Page;
            if (p == null) {
                throw new HttpException(SR.GetString(SR.Head_Needs_Page)); 
            }
            if (p.Header != null) { 
                throw new HttpException(SR.GetString(SR.HtmlHead_OnlyOneHeadAllowed)); 
            }
            p.SetHeader(this); 
        }

        internal void RegisterCssStyleString(string outputString) {
            ((StyleSheetInternal)StyleSheet).CSSStyleString = outputString; 
        }
 
        protected internal override void RemovedControl(Control control) { 
            base.RemovedControl(control);
 
            if (control is HtmlTitle) {
                _title = null;
            }
            // There can be many meta tags, so we only clear it if its the correct meta 
            else if (control == _description) {
                _description = null; 
            } 
            else if (control == _keywords) {
                _keywords = null; 
            }
        }

        /// <internalonly/> 
        /// <devdoc>
        /// Notifies the Page when the HEAD is being rendered. 
        /// </devdoc> 
        protected internal override void RenderChildren(HtmlTextWriter writer) {
            base.RenderChildren(writer); 

            if (_title == null) {
                // Always render out a <title> tag since it is required for xhtml 1.1 compliance
                writer.RenderBeginTag(HtmlTextWriterTag.Title); 
                if (_cachedTitleText != null) {
                    writer.Write(_cachedTitleText); 
                } 
                writer.RenderEndTag();
            } 

            if (_description == null && !String.IsNullOrEmpty(_cachedDescription)) {
                // Go ahead and render out a meta tag if they set description but don't have a meta tag
                writer.AddAttribute(HtmlTextWriterAttribute.Name, "description"); 
                writer.AddAttribute(HtmlTextWriterAttribute.Content, _cachedDescription);
                writer.RenderBeginTag(HtmlTextWriterTag.Meta); 
                writer.RenderEndTag(); 
            }
 
            if (_keywords == null && !String.IsNullOrEmpty(_cachedKeywords)) {
                // Go ahead and render out a meta tag if they set keywords but don't have a meta tag
                writer.AddAttribute(HtmlTextWriterAttribute.Name, "keywords");
                writer.AddAttribute(HtmlTextWriterAttribute.Content, _cachedKeywords); 
                writer.RenderBeginTag(HtmlTextWriterTag.Meta);
                writer.RenderEndTag(); 
            } 

            if ((string)Page.Request.Browser["requiresXhtmlCssSuppression"] != "true") { 
                RenderStyleSheet(writer);
            }
        }
 
        internal void RenderStyleSheet(HtmlTextWriter writer) {
            if(_styleSheet != null) { 
                _styleSheet.Render(writer); 
            }
        } 

        internal static void RenderCssRule(CssTextWriter cssWriter, string selector,
            Style style, IUrlResolutionService urlResolver) {
 
            cssWriter.WriteBeginCssRule(selector);
 
            CssStyleCollection attrs = style.GetStyleAttributes(urlResolver); 
            attrs.Render(cssWriter);
 
            cssWriter.WriteEndCssRule();
        }

        /// <devdoc> 
        /// Implements the IStyleSheet interface to represent an embedded
        /// style sheet within the HEAD element. 
        /// </devdoc> 
        private sealed class StyleSheetInternal : IStyleSheet, IUrlResolutionService {
 
            private HtmlHead _owner;
            private ArrayList _styles;
            private ArrayList _selectorStyles;
 
            private int _autoGenCount;
 
            public StyleSheetInternal(HtmlHead owner) { 
                _owner = owner;
            } 

            // CssStyleString registered by the PartialCachingControl
            private string _cssStyleString;
            internal string CSSStyleString { 
                get {
                    return _cssStyleString; 
                } 
                set {
                    _cssStyleString = value; 
                }
            }

            public void Render(HtmlTextWriter writer) { 
                if ((_styles == null) && (_selectorStyles == null) && CSSStyleString == null) {
                    return; 
                } 

                writer.AddAttribute(HtmlTextWriterAttribute.Type, "text/css"); 
                writer.RenderBeginTag(HtmlTextWriterTag.Style);

                CssTextWriter cssWriter = new CssTextWriter(writer);
                if (_styles != null) { 
                    for (int i = 0; i < _styles.Count; i++) {
                        StyleInfo si = (StyleInfo)_styles[i]; 
 
                        string cssClass = si.style.RegisteredCssClass;
                        if (cssClass.Length != 0) { 
                            RenderCssRule(cssWriter, "." + cssClass, si.style, si.urlResolver);
                        }
                    }
                } 

                if (_selectorStyles != null) { 
                    for (int i = 0; i < _selectorStyles.Count; i++) { 
                        SelectorStyleInfo si = (SelectorStyleInfo)_selectorStyles[i];
                        RenderCssRule(cssWriter, si.selector, si.style, si.urlResolver); 
                    }
                }

                if (CSSStyleString != null) { 
                    writer.Write(CSSStyleString);
                } 
 
                writer.RenderEndTag();
            } 

            #region Implementation of IStyleSheet
            void IStyleSheet.CreateStyleRule(Style style, IUrlResolutionService urlResolver, string selector) {
                if (style == null) { 
                    throw new ArgumentNullException("style");
                } 
 
                if (selector.Length == 0) {
                    throw new ArgumentNullException("selector"); 
                }

                if (_selectorStyles == null) {
                    _selectorStyles = new ArrayList(); 
                }
 
                if (urlResolver == null) { 
                    urlResolver = this;
                } 

                SelectorStyleInfo styleInfo = new SelectorStyleInfo();
                styleInfo.selector = selector;
                styleInfo.style = style; 
                styleInfo.urlResolver = urlResolver;
 
                _selectorStyles.Add(styleInfo); 

                Page page = _owner.Page; 

                // If there are any partial caching controls on the stack, forward the styleInfo to them
                if (page.PartialCachingControlStack != null) {
                    foreach (BasePartialCachingControl c in page.PartialCachingControlStack) { 
                        c.RegisterStyleInfo(styleInfo);
                    } 
                } 
            }
 
            void IStyleSheet.RegisterStyle(Style style, IUrlResolutionService urlResolver) {
                if (style == null) {
                    throw new ArgumentNullException("style");
                } 

                if (_styles == null) { 
                    _styles = new ArrayList(); 
                }
                else if (style.RegisteredCssClass.Length != 0) { 
                    // if it's already registered, throw an exception
                    throw new InvalidOperationException(SR.GetString(SR.HtmlHead_StyleAlreadyRegistered));
                }
 
                if (urlResolver == null) {
                    urlResolver = this; 
                } 

                StyleInfo styleInfo = new StyleInfo(); 
                styleInfo.style = style;
                styleInfo.urlResolver = urlResolver;

                int index = _autoGenCount++; 
                string name = "aspnet_s" + index.ToString(NumberFormatInfo.InvariantInfo);
 
                style.SetRegisteredCssClass(name); 
                _styles.Add(styleInfo);
            } 
            #endregion

            #region Implementation of IUrlResolutionService
            string IUrlResolutionService.ResolveClientUrl(string relativeUrl) { 
                return _owner.ResolveClientUrl(relativeUrl);
            } 
            #endregion 

            private sealed class StyleInfo { 
                public Style style;
                public IUrlResolutionService urlResolver;
            }
        } 
    }
 
    internal sealed class SelectorStyleInfo { 
        public string selector;
        public Style style; 
        public IUrlResolutionService urlResolver;
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        </pre>

                        </p>
                        <script type="text/javascript">
                            SyntaxHighlighter.all()
                        </script>
                        </pre>
                    </div>
                    <div class="col-sm-3" style="border: 1px solid #81919f;border-radius: 10px;">
                        <h3 style="background-color:#7899a0;margin-bottom: 5%;">Link Menu</h3>
                        <a href="http://www.amazon.com/exec/obidos/ASIN/1555583156/httpnetwoprog-20">
                            <img width="192" height="237" border="0" class="img-responsive" alt="Network programming in C#, Network Programming in VB.NET, Network Programming in .NET" src="/images/book.jpg"></a><br>
                        <span class="copy">

                            This book is available now!<br>

                            <a style="text-decoration: underline; font-family: Verdana,Geneva,Arial,Helvetica,sans-serif; color: Red; font-size: 11px; font-weight: bold;" href="http://www.amazon.com/exec/obidos/ASIN/1555583156/httpnetwoprog-20"> Buy at Amazon US</a> or <br>

                            <a style="text-decoration: underline; font-family: Verdana,Geneva,Arial,Helvetica,sans-serif; color: Red; font-size: 11px; font-weight: bold;" href="http://www.amazon.co.uk/exec/obidos/ASIN/1555583156/wwwxamlnet-21"> Buy at Amazon UK</a> <br>
                            <br>

                            <script type="text/javascript"><!--
                                google_ad_client = "pub-6435000594396515";
                                /* network.programming-in.net */
                                google_ad_slot = "3902760999";
                                google_ad_width = 160;
                                google_ad_height = 600;
                                //-->
                            </script>
                            <script type="text/javascript"
                                    src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
                            </script>
                            <ul>
                                
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/Orcas/NetFXw7/ndp/fx/src/DataEntity/System/Data/Common/CommandTrees/Internal/Validator@cs/1/Validator@cs
">
                                                <span style="word-wrap: break-word;">Validator.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Vista_SP2/Dotnetfx_Vista_SP2/8@0@50727@4016/DEVDIV/depot/DevDiv/releases/Orcas/QFE/ndp/fx/src/DataWeb/Design/system/Data/EntityModel/Emitters/AttributeEmitter@cs/1/AttributeEmitter@cs
">
                                                <span style="word-wrap: break-word;">AttributeEmitter.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/cdf/src/WCF/infocard/Client/System/IdentityModel/Selectors/TransformCryptoHandle@cs/1305376/TransformCryptoHandle@cs
">
                                                <span style="word-wrap: break-word;">TransformCryptoHandle.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/Orcas/NetFXw7/ndp/fx/src/xsp/System/Web/Extensions/resources/AtlasWeb@Designer@cs/2/AtlasWeb@Designer@cs
">
                                                <span style="word-wrap: break-word;">AtlasWeb.Designer.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/FX-1434/FX-1434/1@0/untmp/whidbey/REDBITS/ndp/fx/src/Services/Monitoring/system/Diagnosticts/AlphabeticalEnumConverter@cs/1/AlphabeticalEnumConverter@cs
">
                                                <span style="word-wrap: break-word;">AlphabeticalEnumConverter.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/wpf/src/Framework/System/Windows/VisualStateManager@cs/1651665/VisualStateManager@cs
">
                                                <span style="word-wrap: break-word;">VisualStateManager.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/xsp/System/Web/Compilation/BaseTemplateCodeDomTreeGenerator@cs/1305376/BaseTemplateCodeDomTreeGenerator@cs
">
                                                <span style="word-wrap: break-word;">BaseTemplateCodeDomTreeGenerator.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/whidbey/NetFXspW7/ndp/fx/src/xsp/System/Web/Profile/ProfileProvider@cs/1/ProfileProvider@cs
">
                                                <span style="word-wrap: break-word;">ProfileProvider.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/whidbey/REDBITS/ndp/fx/src/xsp/System/Web/UI/WebParts/ErrorWebPart@cs/1/ErrorWebPart@cs
">
                                                <span style="word-wrap: break-word;">ErrorWebPart.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Vista_SP2/Dotnetfx_Vista_SP2/8@0@50727@4016/DEVDIV/depot/DevDiv/releases/whidbey/NetFxQFE/ndp/fx/src/xsp/System/Web/Configuration/GacUtil@cs/1/GacUtil@cs
">
                                                <span style="word-wrap: break-word;">GacUtil.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/xsp/System/Web/Configuration/CapabilitiesAssignment@cs/1305376/CapabilitiesAssignment@cs
">
                                                <span style="word-wrap: break-word;">CapabilitiesAssignment.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/whidbey/netfxsp/ndp/fx/src/Configuration/System/Configuration/ConfigurationSectionGroupCollection@cs/1/ConfigurationSectionGroupCollection@cs
">
                                                <span style="word-wrap: break-word;">ConfigurationSectionGroupCollection.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/FXUpdate3074/FXUpdate3074/1@1/DEVDIV/depot/DevDiv/releases/whidbey/QFE/ndp/fx/src/xsp/System/Web/Hosting/ApplicationManager@cs/8/ApplicationManager@cs
">
                                                <span style="word-wrap: break-word;">ApplicationManager.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/Sys/System/IO/compression/DeflateStream@cs/1305376/DeflateStream@cs
">
                                                <span style="word-wrap: break-word;">DeflateStream.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/Net/System/Net/_TimerThread@cs/1305376/_TimerThread@cs
">
                                                <span style="word-wrap: break-word;">_TimerThread.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/DLinq/Dlinq/SqlClient/Query/SqlRetyper@cs/1305376/SqlRetyper@cs
">
                                                <span style="word-wrap: break-word;">SqlRetyper.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/whidbey/netfxsp/ndp/fx/src/Data/System/Data/Common/SQLTypes/SQLInt32Storage@cs/1/SQLInt32Storage@cs
">
                                                <span style="word-wrap: break-word;">SQLInt32Storage.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/whidbey/netfxsp/ndp/fx/src/xsp/System/Web/Security/FormsAuthentication@cs/2/FormsAuthentication@cs
">
                                                <span style="word-wrap: break-word;">FormsAuthentication.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/cdf/src/WF/Activities/EventHandlers@cs/1305376/EventHandlers@cs
">
                                                <span style="word-wrap: break-word;">EventHandlers.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/whidbey/REDBITS/ndp/fx/src/CompMod/System/CodeDOM/CodeExpressionCollection@cs/1/CodeExpressionCollection@cs
">
                                                <span style="word-wrap: break-word;">CodeExpressionCollection.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/xsp/System/Web/Configuration/BuildProviderCollection@cs/1305376/BuildProviderCollection@cs
">
                                                <span style="word-wrap: break-word;">BuildProviderCollection.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/FXUpdate3074/FXUpdate3074/1@1/untmp/whidbey/QFE/ndp/fx/src/xsp/System/Web/HttpPostedFile@cs/1/HttpPostedFile@cs
">
                                                <span style="word-wrap: break-word;">HttpPostedFile.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/FX-1434/FX-1434/1@0/untmp/whidbey/REDBITS/ndp/fx/src/Net/System/Net/_AutoWebProxyScriptHelper@cs/2/_AutoWebProxyScriptHelper@cs
">
                                                <span style="word-wrap: break-word;">_AutoWebProxyScriptHelper.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/DataWeb/Server/System/Data/Services/Providers/RootProjectionNode@cs/1305376/RootProjectionNode@cs
">
                                                <span style="word-wrap: break-word;">RootProjectionNode.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Speech/Src/Internal/ObjectToken/RegistryDataKey@cs/1/RegistryDataKey@cs
">
                                                <span style="word-wrap: break-word;">RegistryDataKey.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/cdf/src/WF/RunTime/Tracking/TrackingConditionCollection@cs/1305376/TrackingConditionCollection@cs
">
                                                <span style="word-wrap: break-word;">TrackingConditionCollection.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/Orcas/SP/wpf/src/Framework/System/Windows/SessionEndingCancelEventArgs@cs/1/SessionEndingCancelEventArgs@cs
">
                                                <span style="word-wrap: break-word;">SessionEndingCancelEventArgs.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/Orcas/SP/wpf/src/Base/System/IO/Packaging/ZipPackage@cs/1/ZipPackage@cs
">
                                                <span style="word-wrap: break-word;">ZipPackage.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/Orcas/SP/wpf/src/Base/System/Windows/ExpressionConverter@cs/1/ExpressionConverter@cs
">
                                                <span style="word-wrap: break-word;">ExpressionConverter.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/FX-1434/FX-1434/1@0/untmp/whidbey/REDBITS/ndp/fx/src/xsp/System/Web/Configuration/ExpressionBuilderCollection@cs/2/ExpressionBuilderCollection@cs
">
                                                <span style="word-wrap: break-word;">ExpressionBuilderCollection.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/wpf/src/UIAutomation/Win32Providers/MS/Internal/AutomationProxies/WindowsRichEdit@cs/1305600/WindowsRichEdit@cs
">
                                                <span style="word-wrap: break-word;">WindowsRichEdit.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/Orcas/NetFXw7/ndp/fx/src/xsp/System/Web/Extensions/ui/RegisteredHiddenField@cs/1/RegisteredHiddenField@cs
">
                                                <span style="word-wrap: break-word;">RegisteredHiddenField.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/Xml/System/Xml/XPath/Internal/NumericExpr@cs/1305376/NumericExpr@cs
">
                                                <span style="word-wrap: break-word;">NumericExpr.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Vista_SP2/Dotnetfx_Vista_SP2/8@0@50727@4016/DEVDIV/depot/DevDiv/releases/whidbey/NetFxQFE/ndp/fx/src/xsp/System/Web/Security/FormsIdentity@cs/1/FormsIdentity@cs
">
                                                <span style="word-wrap: break-word;">FormsIdentity.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/Orcas/NetFXw7/wpf/src/Framework/System/Windows/Controls/ProgressBar@cs/1/ProgressBar@cs
">
                                                <span style="word-wrap: break-word;">ProgressBar.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/Orcas/SP/wpf/src/Framework/System/Windows/Controls/GridViewRowPresenter@cs/2/GridViewRowPresenter@cs
">
                                                <span style="word-wrap: break-word;">GridViewRowPresenter.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Core/System/Windows/Media/GuidelineCollection@cs/1/GuidelineCollection@cs
">
                                                <span style="word-wrap: break-word;">GuidelineCollection.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/DataEntity/System/Data/Mapping/FunctionImportMapping@cs/1305376/FunctionImportMapping@cs
">
                                                <span style="word-wrap: break-word;">FunctionImportMapping.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/xsp/System/Web/UI/WebControls/MenuRendererStandards@cs/1305376/MenuRendererStandards@cs
">
                                                <span style="word-wrap: break-word;">MenuRendererStandards.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/whidbey/netfxsp/ndp/fx/src/xsp/System/Web/UI/WebControls/FileUpload@cs/1/FileUpload@cs
">
                                                <span style="word-wrap: break-word;">FileUpload.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/wpf/src/BuildTasks/Microsoft/Build/Tasks/Windows/ResourcesGenerator@cs/1305600/ResourcesGenerator@cs
">
                                                <span style="word-wrap: break-word;">ResourcesGenerator.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/Services/Web/System/Web/Services/WebServiceBindingAttribute@cs/1305376/WebServiceBindingAttribute@cs
">
                                                <span style="word-wrap: break-word;">WebServiceBindingAttribute.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/WinForms/Managed/System/WinForms/Layout/LayoutEngine@cs/1305376/LayoutEngine@cs
">
                                                <span style="word-wrap: break-word;">LayoutEngine.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Speech/Src/Internal/GrammarBuilding/GrammarBuilderPhrase@cs/1/GrammarBuilderPhrase@cs
">
                                                <span style="word-wrap: break-word;">GrammarBuilderPhrase.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/xsp/System/DynamicData/DynamicData/DynamicQueryStringParameter@cs/1305376/DynamicQueryStringParameter@cs
">
                                                <span style="word-wrap: break-word;">DynamicQueryStringParameter.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/xsp/System/Web/UI/TemplateInstanceAttribute@cs/1305376/TemplateInstanceAttribute@cs
">
                                                <span style="word-wrap: break-word;">TemplateInstanceAttribute.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/whidbey/netfxsp/ndp/fx/src/xsp/System/Web/UI/WebControls/DetailsViewRowCollection@cs/1/DetailsViewRowCollection@cs
">
                                                <span style="word-wrap: break-word;">DetailsViewRowCollection.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/wpf/src/Framework/MS/Internal/PtsHost/BaseParaClient@cs/1305600/BaseParaClient@cs
">
                                                <span style="word-wrap: break-word;">BaseParaClient.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Vista_SP2/Dotnetfx_Vista_SP2/8@0@50727@4016/DEVDIV/depot/DevDiv/releases/Orcas/QFE/ndp/fx/src/DataEntity/System/Data/EntityClient/EntityConnection@cs/2/EntityConnection@cs
">
                                                <span style="word-wrap: break-word;">EntityConnection.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/Data/System/Data/Odbc/OdbcDataReader@cs/1305376/OdbcDataReader@cs
">
                                                <span style="word-wrap: break-word;">OdbcDataReader.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Framework/System/Windows/Documents/nulltextcontainer@cs/2/nulltextcontainer@cs
">
                                                <span style="word-wrap: break-word;">nulltextcontainer.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/wpf/src/Base/System/Windows/Freezable@cs/1305600/Freezable@cs
">
                                                <span style="word-wrap: break-word;">Freezable.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/WCF/WCF/3@5@30729@1/untmp/Orcas/SP/ndp/cdf/src/WCF/ServiceModel/System/ServiceModel/WSDualHttpSecurityMode@cs/1/WSDualHttpSecurityMode@cs
">
                                                <span style="word-wrap: break-word;">WSDualHttpSecurityMode.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/Orcas/NetFXw7/wpf/src/Base/MS/Internal/Security/RightsManagement/ClientSession@cs/1/ClientSession@cs
">
                                                <span style="word-wrap: break-word;">ClientSession.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/Orcas/SP/ndp/fx/src/xsp/System/Web/Extensions/Util/Tuple@cs/2/Tuple@cs
">
                                                <span style="word-wrap: break-word;">Tuple.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/FX-1434/FX-1434/1@0/untmp/whidbey/REDBITS/ndp/clr/src/BCL/System/Threading/LockCookie@cs/1/LockCookie@cs
">
                                                <span style="word-wrap: break-word;">LockCookie.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/whidbey/NetFXspW7/ndp/fx/src/Sys/System/Configuration/NameValueSectionHandler@cs/1/NameValueSectionHandler@cs
">
                                                <span style="word-wrap: break-word;">NameValueSectionHandler.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/whidbey/netfxsp/ndp/clr/src/BCL/System/Runtime/Serialization/Formatter@cs/1/Formatter@cs
">
                                                <span style="word-wrap: break-word;">Formatter.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/xsp/System/Web/Abstractions/HttpRequestBase@cs/1305376/HttpRequestBase@cs
">
                                                <span style="word-wrap: break-word;">HttpRequestBase.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/whidbey/NetFXspW7/ndp/fx/src/xsp/System/Web/Security/SQLMembershipProvider@cs/1/SQLMembershipProvider@cs
">
                                                <span style="word-wrap: break-word;">SQLMembershipProvider.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/whidbey/REDBITS/ndp/fx/src/xsp/System/Web/UI/WebControls/EmbeddedMailObjectsCollection@cs/1/EmbeddedMailObjectsCollection@cs
">
                                                <span style="word-wrap: break-word;">EmbeddedMailObjectsCollection.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/CommonUI/System/Drawing/Advanced/ImageCodecInfoPrivate@cs/1305376/ImageCodecInfoPrivate@cs
">
                                                <span style="word-wrap: break-word;">ImageCodecInfoPrivate.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/FXUpdate3074/FXUpdate3074/1@1/untmp/whidbey/QFE/ndp/clr/src/BCL/System/Runtime/CompilerServices/RuntimeHelpers@cs/3/RuntimeHelpers@cs
">
                                                <span style="word-wrap: break-word;">RuntimeHelpers.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/Orcas/NetFXw7/ndp/fx/src/xsp/System/Web/Extensions/Configuration/ConvertersCollection@cs/1/ConvertersCollection@cs
">
                                                <span style="word-wrap: break-word;">ConvertersCollection.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/whidbey/REDBITS/ndp/fx/src/Data/System/Data/SQLTypes/SqlTypesSchemaImporter@cs/1/SqlTypesSchemaImporter@cs
">
                                                <span style="word-wrap: break-word;">SqlTypesSchemaImporter.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/Orcas/NetFXw7/wpf/src/UIAutomation/UIAutomationClient/MS/Internal/Automation/AutomationAttributeInfo@cs/1/AutomationAttributeInfo@cs
">
                                                <span style="word-wrap: break-word;">AutomationAttributeInfo.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/FX-1434/FX-1434/1@0/untmp/whidbey/REDBITS/ndp/fx/src/xsp/System/Web/UI/ControlBuilder@cs/5/ControlBuilder@cs
">
                                                <span style="word-wrap: break-word;">ControlBuilder.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/cdf/src/NetFx40/System@ServiceModel@Discovery/System/ServiceModel/Discovery/VersionCD1/ResolveCriteriaCD1@cs/1305376/ResolveCriteriaCD1@cs
">
                                                <span style="word-wrap: break-word;">ResolveCriteriaCD1.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Vista_SP2/Dotnetfx_Vista_SP2/8@0@50727@4016/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Speech/Src/Recognition/SemanticResultValue@cs/1/SemanticResultValue@cs
">
                                                <span style="word-wrap: break-word;">SemanticResultValue.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/wpf/src/Framework/System/Windows/GridLength@cs/1305600/GridLength@cs
">
                                                <span style="word-wrap: break-word;">GridLength.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/Orcas/NetFXw7/ndp/fx/src/DataEntity/System/Data/Common/EntitySql/CreateRefExpr@cs/1/CreateRefExpr@cs
">
                                                <span style="word-wrap: break-word;">CreateRefExpr.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/FXUpdate3074/FXUpdate3074/1@1/untmp/whidbey/QFE/ndp/fx/src/xsp/System/Web/Configuration/ProfileSettings@cs/2/ProfileSettings@cs
">
                                                <span style="word-wrap: break-word;">ProfileSettings.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/Orcas/NetFXw7/wpf/src/Core/CSharp/MS/Internal/TextFormatting/ThousandthOfEmRealPoints@cs/1/ThousandthOfEmRealPoints@cs
">
                                                <span style="word-wrap: break-word;">ThousandthOfEmRealPoints.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/cdf/src/WF/RunTime/Scheduler@cs/1305376/Scheduler@cs
">
                                                <span style="word-wrap: break-word;">Scheduler.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/clr/src/BCL/System/Deployment/CmsUtils@cs/1305376/CmsUtils@cs
">
                                                <span style="word-wrap: break-word;">CmsUtils.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/FXUpdate3074/FXUpdate3074/1@1/untmp/whidbey/QFE/ndp/clr/src/BCL/System/MissingFieldException@cs/1/MissingFieldException@cs
">
                                                <span style="word-wrap: break-word;">MissingFieldException.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/whidbey/NetFXspW7/ndp/fx/src/xsp/System/Web/Compilation/PreservationFileWriter@cs/1/PreservationFileWriter@cs
">
                                                <span style="word-wrap: break-word;">PreservationFileWriter.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/Net/System/Net/NetworkInformation/SystemTcpStatistics@cs/1305376/SystemTcpStatistics@cs
">
                                                <span style="word-wrap: break-word;">SystemTcpStatistics.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/xsp/System/Web/Compilation/PageThemeBuildProvider@cs/1305376/PageThemeBuildProvider@cs
">
                                                <span style="word-wrap: break-word;">PageThemeBuildProvider.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/wpf/src/Core/CSharp/MS/Internal/FontFace/FontDifferentiator@cs/1305600/FontDifferentiator@cs
">
                                                <span style="word-wrap: break-word;">FontDifferentiator.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/clr/src/BCL/System/Reflection/Pointer@cs/1305376/Pointer@cs
">
                                                <span style="word-wrap: break-word;">Pointer.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Vista_SP2/Dotnetfx_Vista_SP2/8@0@50727@4016/DEVDIV/depot/DevDiv/releases/whidbey/NetFxQFE/ndp/clr/src/BCL/System/Globalization/CultureTableRecord@cs/1/CultureTableRecord@cs
">
                                                <span style="word-wrap: break-word;">CultureTableRecord.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/whidbey/REDBITS/ndp/clr/src/BCL/System/IO/__ConsoleStream@cs/1/__ConsoleStream@cs
">
                                                <span style="word-wrap: break-word;">__ConsoleStream.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/FX-1434/FX-1434/1@0/untmp/whidbey/REDBITS/ndp/fx/src/Xml/System/Xml/XPath/Internal/ChildrenQuery@cs/1/ChildrenQuery@cs
">
                                                <span style="word-wrap: break-word;">ChildrenQuery.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/xsp/System/Extensions/ClientServices/Providers/ClientFormsAuthenticationMembershipProvider@cs/1305376/ClientFormsAuthenticationMembershipProvider@cs
">
                                                <span style="word-wrap: break-word;">ClientFormsAuthenticationMembershipProvider.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/cdf/src/System@Runtime@DurableInstancing/System/Runtime/DurableInstancing/InstancePersistence@cs/1305376/InstancePersistence@cs
">
                                                <span style="word-wrap: break-word;">InstancePersistence.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Vista_SP2/Dotnetfx_Vista_SP2/8@0@50727@4016/DEVDIV/depot/DevDiv/releases/whidbey/NetFxQFE/ndp/fx/src/xsp/System/Web/Configuration/WebBaseEventKeyComparer@cs/1/WebBaseEventKeyComparer@cs
">
                                                <span style="word-wrap: break-word;">WebBaseEventKeyComparer.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Framework/System/Windows/Controls/Primitives/StatusBar@cs/1/StatusBar@cs
">
                                                <span style="word-wrap: break-word;">StatusBar.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/whidbey/NetFXspW7/ndp/fx/src/WinForms/Managed/System/WinForms/GroupBoxRenderer@cs/1/GroupBoxRenderer@cs
">
                                                <span style="word-wrap: break-word;">GroupBoxRenderer.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/Orcas/SP/wpf/src/Core/CSharp/System/Windows/Media/Imaging/BitmapFrame@cs/1/BitmapFrame@cs
">
                                                <span style="word-wrap: break-word;">BitmapFrame.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/wpf/src/Shared/MS/Win32/unsafenativemethodstextservices@cs/1305600/unsafenativemethodstextservices@cs
">
                                                <span style="word-wrap: break-word;">unsafenativemethodstextservices.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Vista_SP2/Dotnetfx_Vista_SP2/8@0@50727@4016/DEVDIV/depot/DevDiv/releases/Orcas/QFE/wpf/src/Core/CSharp/System/Windows/Media/RequestCachePolicyConverter@cs/1/RequestCachePolicyConverter@cs
">
                                                <span style="word-wrap: break-word;">RequestCachePolicyConverter.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/whidbey/netfxsp/ndp/fx/src/CompMod/System/ComponentModel/LicenseProviderAttribute@cs/1/LicenseProviderAttribute@cs
">
                                                <span style="word-wrap: break-word;">LicenseProviderAttribute.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Vista_SP2/Dotnetfx_Vista_SP2/8@0@50727@4016/DEVDIV/depot/DevDiv/releases/whidbey/NetFxQFE/ndp/fx/src/WinForms/Managed/System/WinForms/CheckBoxRenderer@cs/1/CheckBoxRenderer@cs
">
                                                <span style="word-wrap: break-word;">CheckBoxRenderer.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Vista_SP2/Dotnetfx_Vista_SP2/8@0@50727@4016/DEVDIV/depot/DevDiv/releases/Orcas/QFE/wpf/src/Framework/MS/Internal/documents/TextParagraphView@cs/1/TextParagraphView@cs
">
                                                <span style="word-wrap: break-word;">TextParagraphView.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/Orcas/SP/wpf/src/Framework/MS/Internal/documents/MultiPageTextView@cs/1/MultiPageTextView@cs
">
                                                <span style="word-wrap: break-word;">MultiPageTextView.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/whidbey/REDBITS/ndp/fx/src/xsp/System/Web/UI/WebControls/LayoutTableCell@cs/1/LayoutTableCell@cs
">
                                                <span style="word-wrap: break-word;">LayoutTableCell.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Framework/MS/Internal/documents/DocumentGridPage@cs/1/DocumentGridPage@cs
">
                                                <span style="word-wrap: break-word;">DocumentGridPage.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/DataEntity/System/Data/Common/CommandTrees/ExpressionBuilder/Row@cs/1305376/Row@cs
">
                                                <span style="word-wrap: break-word;">Row.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/whidbey/REDBITS/ndp/fx/src/xsp/System/Web/UI/WebParts/WebPartExportVerb@cs/1/WebPartExportVerb@cs
">
                                                <span style="word-wrap: break-word;">WebPartExportVerb.cs
</span>
                                            </a></li>

                                    
                            </ul>
                    </div>
                </div>
            </div>
            <div class="row">
                <div class="col-sm-12" id="footer">
                    <p>Copyright © 2010-2021 <a href="http://www.infiniteloop.ie">Infinite Loop Ltd</a> </p>
                   
                </div>

            </div>
            <script type="text/javascript">
                var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
                document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
            </script>
            <script type="text/javascript">
                var pageTracker = _gat._getTracker("UA-3658396-9");
                pageTracker._trackPageview();
            </script>
        </div>
    </div>
</div>
</body>
</html>