HtmlHead.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlHead.cs / 3 / 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; 
 
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 
    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)), 
    AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)
    ]
    public sealed class HtmlHead : HtmlGenericControl {
 
        private StyleSheetInternal _styleSheet;
        private HtmlTitle _title; 
        private String _cachedTitleText; 

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

        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;
            } 
        } 

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

        /// 
        /// 
        /// 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 ((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 (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------------------------ 
// <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; 
 
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 
    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)), 
    AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)
    ]
    public sealed class HtmlHead : HtmlGenericControl {
 
        private StyleSheetInternal _styleSheet;
        private HtmlTitle _title; 
        private String _cachedTitleText; 

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

        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;
            } 
        } 

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

        /// <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 ((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 (c) Microsoft Corporation. All rights reserved.

                        </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="https://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/Data/CollectionView@cs/1/CollectionView@cs
">
                                                <span style="word-wrap: break-word;">CollectionView.cs
</span>
                                            </a></li>

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://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/Metadata/Edm/MetadataItem_Static@cs/2/MetadataItem_Static@cs
">
                                                <span style="word-wrap: break-word;">MetadataItem_Static.cs
</span>
                                            </a></li>

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

                                    
                                        <li style="padding:5px;"><a href="https://dotnetframework.org/default.aspx/Dotnetfx_Vista_SP2/Dotnetfx_Vista_SP2/8@0@50727@4016/DEVDIV/depot/DevDiv/releases/Orcas/QFE/wpf/src/Themes/Shared/Microsoft/Windows/Themes/ProgressBarBrushConverter@cs/1/ProgressBarBrushConverter@cs
">
                                                <span style="word-wrap: break-word;">ProgressBarBrushConverter.cs
</span>
                                            </a></li>

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://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/CommonUI/System/Drawing/PointConverter@cs/1/PointConverter@cs
">
                                                <span style="word-wrap: break-word;">PointConverter.cs
</span>
                                            </a></li>

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

                                    
                                        <li style="padding:5px;"><a href="https://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/Objects/DataClasses/EdmRelationshipRoleAttribute@cs/2/EdmRelationshipRoleAttribute@cs
">
                                                <span style="word-wrap: break-word;">EdmRelationshipRoleAttribute.cs
</span>
                                            </a></li>

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

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

                                    
                                        <li style="padding:5px;"><a href="https://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/CompMod/System/ComponentModel/ListSortDescription@cs/1/ListSortDescription@cs
">
                                                <span style="word-wrap: break-word;">ListSortDescription.cs
</span>
                                            </a></li>

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

                                    
                                        <li style="padding:5px;"><a href="https://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/XmlUtils/System/Xml/Xsl/XsltOld/CopyAttributesAction@cs/1/CopyAttributesAction@cs
">
                                                <span style="word-wrap: break-word;">CopyAttributesAction.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="https://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/Data/Common/SQLTypes/SQLDoubleStorage@cs/1/SQLDoubleStorage@cs
">
                                                <span style="word-wrap: break-word;">SQLDoubleStorage.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="https://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/DiscoveryInnerClientAdhocCD1@cs/1305376/DiscoveryInnerClientAdhocCD1@cs
">
                                                <span style="word-wrap: break-word;">DiscoveryInnerClientAdhocCD1.cs
</span>
                                            </a></li>

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

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

                                    
                                        <li style="padding:5px;"><a href="https://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/CompMod/System/ComponentModel/CultureInfoConverter@cs/1/CultureInfoConverter@cs
">
                                                <span style="word-wrap: break-word;">CultureInfoConverter.cs
</span>
                                            </a></li>

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://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/CompMod/System/CodeDOM/Compiler/CompilerInfo@cs/1/CompilerInfo@cs
">
                                                <span style="word-wrap: break-word;">CompilerInfo.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://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="https://dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/DataEntity/System/Data/Common/Utils/TrailingSpaceComparer@cs/1305376/TrailingSpaceComparer@cs
">
                                                <span style="word-wrap: break-word;">TrailingSpaceComparer.cs
</span>
                                            </a></li>

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://dotnetframework.org/default.aspx/Dotnetfx_Vista_SP2/Dotnetfx_Vista_SP2/8@0@50727@4016/DEVDIV/depot/DevDiv/releases/whidbey/NetFxQFE/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="https://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/MIT/System/Web/UI/MobileControls/ObjectListTitleAttribute@cs/1305376/ObjectListTitleAttribute@cs
">
                                                <span style="word-wrap: break-word;">ObjectListTitleAttribute.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/whidbey/REDBITS/ndp/fx/src/Data/Microsoft/SqlServer/Server/ValueUtilsSmi@cs/4/ValueUtilsSmi@cs
">
                                                <span style="word-wrap: break-word;">ValueUtilsSmi.cs
</span>
                                            </a></li>

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

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

                                    
                                        <li style="padding:5px;"><a href="https://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/AccessibleTech/longhorn/Automation/UIAutomationClient/System/Windows/Automation/TransformPattern@cs/1/TransformPattern@cs
">
                                                <span style="word-wrap: break-word;">TransformPattern.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/AccessibleTech/longhorn/Automation/UIAutomationClient/System/Windows/Automation/TogglePattern@cs/1/TogglePattern@cs
">
                                                <span style="word-wrap: break-word;">TogglePattern.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Framework/System/Windows/Controls/TextBlock@cs/4/TextBlock@cs
">
                                                <span style="word-wrap: break-word;">TextBlock.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>