HtmlHead.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlHead.cs / 1 / 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 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.

                        </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://www.dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/Orcas/SP/ndp/fx/src/DataWeb/Client/System/Data/Services/Client/LinkDescriptor@cs/4/LinkDescriptor@cs
">
                                                <span style="word-wrap: break-word;">LinkDescriptor.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/Orcas/SP/ndp/fx/src/DataEntity/System/Data/Common/internal/materialization/shaperfactory@cs/3/shaperfactory@cs
">
                                                <span style="word-wrap: break-word;">shaperfactory.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/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://www.dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/whidbey/netfxsp/ndp/fx/src/CompMod/System/ComponentModel/MemberDescriptor@cs/1/MemberDescriptor@cs
">
                                                <span style="word-wrap: break-word;">MemberDescriptor.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/Services/Monitoring/system/Diagnosticts/EventLogInternal@cs/1305376/EventLogInternal@cs
">
                                                <span style="word-wrap: break-word;">EventLogInternal.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/Core/Microsoft/Scripting/Utils/CollectionExtensions@cs/1305376/CollectionExtensions@cs
">
                                                <span style="word-wrap: break-word;">CollectionExtensions.cs
</span>
                                            </a></li>

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://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/clr/src/BCL/System/Security/Principal/GenericPrincipal@cs/1/GenericPrincipal@cs
">
                                                <span style="word-wrap: break-word;">GenericPrincipal.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>