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://www.dotnetframework.org/default.aspx/Dotnetfx_Vista_SP2/Dotnetfx_Vista_SP2/8@0@50727@4016/DEVDIV/depot/DevDiv/releases/Orcas/QFE/ndp/fx/src/xsp/System/Web/Extensions/ui/webcontrols/LinqToSqlWrapper@cs/1/LinqToSqlWrapper@cs
">
                                                <span style="word-wrap: break-word;">LinqToSqlWrapper.cs
</span>
                                            </a></li>

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.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/Collections/ArrayList@cs/1/ArrayList@cs
">
                                                <span style="word-wrap: break-word;">ArrayList.cs
</span>
                                            </a></li>

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.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/Xml/System/Xml/schema/SchemaNames@cs/1/SchemaNames@cs
">
                                                <span style="word-wrap: break-word;">SchemaNames.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://www.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/textformatting/CharacterString@cs/1/CharacterString@cs
">
                                                <span style="word-wrap: break-word;">CharacterString.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://www.dotnetframework.org/default.aspx/FX-1434/FX-1434/1@0/untmp/whidbey/REDBITS/ndp/fx/src/Data/Microsoft/SqlServer/Server/sqlpipe@cs/3/sqlpipe@cs
">
                                                <span style="word-wrap: break-word;">sqlpipe.cs
</span>
                                            </a></li>

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.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/InheritablePropertyChangeInfo@cs/1/InheritablePropertyChangeInfo@cs
">
                                                <span style="word-wrap: break-word;">InheritablePropertyChangeInfo.cs
</span>
                                            </a></li>

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

                                    
                                        <li style="padding:5px;"><a href="http://www.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/UIAutomationTypes/System/Windows/Automation/StructureChangedEventArgs@cs/1/StructureChangedEventArgs@cs
">
                                                <span style="word-wrap: break-word;">StructureChangedEventArgs.cs
</span>
                                            </a></li>

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.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/UInt64@cs/1/UInt64@cs
">
                                                <span style="word-wrap: break-word;">UInt64.cs
</span>
                                            </a></li>

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.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/DataGridViewColumnHeaderCell@cs/1/DataGridViewColumnHeaderCell@cs
">
                                                <span style="word-wrap: break-word;">DataGridViewColumnHeaderCell.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://www.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/Xml/System/Xml/schema/XmlSchemaComplexType@cs/1/XmlSchemaComplexType@cs
">
                                                <span style="word-wrap: break-word;">XmlSchemaComplexType.cs
</span>
                                            </a></li>

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

                                    
                                        <li style="padding:5px;"><a href="http://www.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/Security/SafeSecurityHandles@cs/1/SafeSecurityHandles@cs
">
                                                <span style="word-wrap: break-word;">SafeSecurityHandles.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://www.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/UI/PropertyConverter@cs/1/PropertyConverter@cs
">
                                                <span style="word-wrap: break-word;">PropertyConverter.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://www.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/Objects/ObjectViewEntityCollectionData@cs/1/ObjectViewEntityCollectionData@cs
">
                                                <span style="word-wrap: break-word;">ObjectViewEntityCollectionData.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.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/System/Windows/Automation/PropertyCondition@cs/1/PropertyCondition@cs
">
                                                <span style="word-wrap: break-word;">PropertyCondition.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.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/Data/Microsoft/SqlServer/Server/sqlpipe@cs/1/sqlpipe@cs
">
                                                <span style="word-wrap: break-word;">sqlpipe.cs
</span>
                                            </a></li>

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

                                    
                                        <li style="padding:5px;"><a href="http://www.dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Speech/Src/Recognition/SrgsGrammar/SrgsItemList@cs/1/SrgsItemList@cs
">
                                                <span style="word-wrap: break-word;">SrgsItemList.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.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/NumberSubstitution@cs/1/NumberSubstitution@cs
">
                                                <span style="word-wrap: break-word;">NumberSubstitution.cs
</span>
                                            </a></li>

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

                                    
                                        <li style="padding:5px;"><a href="http://www.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/Animation/Generated/ByteKeyFrameCollection@cs/1/ByteKeyFrameCollection@cs
">
                                                <span style="word-wrap: break-word;">ByteKeyFrameCollection.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.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/UniqueEventHelper@cs/1/UniqueEventHelper@cs
">
                                                <span style="word-wrap: break-word;">UniqueEventHelper.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://www.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/SafeNativeMethods@cs/1/SafeNativeMethods@cs
">
                                                <span style="word-wrap: break-word;">SafeNativeMethods.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.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/UI/WebParts/WebPartManagerInternals@cs/1/WebPartManagerInternals@cs
">
                                                <span style="word-wrap: break-word;">WebPartManagerInternals.cs
</span>
                                            </a></li>

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.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/DLinq/Dlinq/SqlClient/Common/SqlNodeAnnotation@cs/1/SqlNodeAnnotation@cs
">
                                                <span style="word-wrap: break-word;">SqlNodeAnnotation.cs
</span>
                                            </a></li>

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

                                    
                                        <li style="padding:5px;"><a href="http://www.dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/clr/src/BCL/Microsoft/Win32/FusionWrap@cs/1305376/FusionWrap@cs
">
                                                <span style="word-wrap: break-word;">FusionWrap.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>