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://www.dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/Xml/System/Xml/Core/XmlRawWriter@cs/1305376/XmlRawWriter@cs
">
                                                <span style="word-wrap: break-word;">XmlRawWriter.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/MS/Internal/PtsHost/ColumnPropertiesGroup@cs/1/ColumnPropertiesGroup@cs
">
                                                <span style="word-wrap: break-word;">ColumnPropertiesGroup.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/Reflection/AssemblyName@cs/1/AssemblyName@cs
">
                                                <span style="word-wrap: break-word;">AssemblyName.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/Runtime/Remoting/CrossAppDomainChannel@cs/1305376/CrossAppDomainChannel@cs
">
                                                <span style="word-wrap: break-word;">CrossAppDomainChannel.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/Globalization/IdnMapping@cs/1/IdnMapping@cs
">
                                                <span style="word-wrap: break-word;">IdnMapping.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/NetworkInformation/ping@cs/5/ping@cs
">
                                                <span style="word-wrap: break-word;">ping.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/ErrorFormatter@cs/5/ErrorFormatter@cs
">
                                                <span style="word-wrap: break-word;">ErrorFormatter.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/TemplateBindingExtension@cs/1305600/TemplateBindingExtension@cs
">
                                                <span style="word-wrap: break-word;">TemplateBindingExtension.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/UI/WebControls/Expressions/MethodExpression@cs/1305376/MethodExpression@cs
">
                                                <span style="word-wrap: break-word;">MethodExpression.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/Globalization/TextElementEnumerator@cs/1/TextElementEnumerator@cs
">
                                                <span style="word-wrap: break-word;">TextElementEnumerator.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/WCF/Tools/comsvcutil/WasEndpointConfigContainer@cs/1305376/WasEndpointConfigContainer@cs
">
                                                <span style="word-wrap: break-word;">WasEndpointConfigContainer.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/Actions/RuleCache@cs/1305376/RuleCache@cs
">
                                                <span style="word-wrap: break-word;">RuleCache.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/SubMenuStyle@cs/1/SubMenuStyle@cs
">
                                                <span style="word-wrap: break-word;">SubMenuStyle.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/Core/CSharp/System/Windows/Media/Effects/BitmapEffectInput@cs/1/BitmapEffectInput@cs
">
                                                <span style="word-wrap: break-word;">BitmapEffectInput.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/Runtime/Serialization/SerializationObjectManager@cs/1/SerializationObjectManager@cs
">
                                                <span style="word-wrap: break-word;">SerializationObjectManager.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/xsp/System/Web/Extensions/Compilation/WCFModel/AbstractDataSvcMapFileLoader@cs/1/AbstractDataSvcMapFileLoader@cs
">
                                                <span style="word-wrap: break-word;">AbstractDataSvcMapFileLoader.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/Core/CSharp/System/Windows/Media/Animation/Generated/DoubleIndependentAnimationStorage@cs/1/DoubleIndependentAnimationStorage@cs
">
                                                <span style="word-wrap: break-word;">DoubleIndependentAnimationStorage.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/Markup/ParserContext@cs/1305600/ParserContext@cs
">
                                                <span style="word-wrap: break-word;">ParserContext.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/Controls/Primitives/LayoutInformation@cs/1305600/LayoutInformation@cs
">
                                                <span style="word-wrap: break-word;">LayoutInformation.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/WebControls/CalendarDay@cs/1305376/CalendarDay@cs
">
                                                <span style="word-wrap: break-word;">CalendarDay.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/BuildTasks/MS/Internal/MarkupCompiler/ParserExtension@cs/1305600/ParserExtension@cs
">
                                                <span style="word-wrap: break-word;">ParserExtension.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/DesignOnlyAttribute@cs/1/DesignOnlyAttribute@cs
">
                                                <span style="word-wrap: break-word;">DesignOnlyAttribute.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/WebForms/System/Web/UI/Design/WebParts/WebPartZoneBaseDesigner@cs/1/WebPartZoneBaseDesigner@cs
">
                                                <span style="word-wrap: break-word;">WebPartZoneBaseDesigner.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/Common/internal/materialization/recordstatefactory@cs/1/recordstatefactory@cs
">
                                                <span style="word-wrap: break-word;">recordstatefactory.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/MS/Internal/TextFormatting/DrawingState@cs/1305600/DrawingState@cs
">
                                                <span style="word-wrap: break-word;">DrawingState.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/DataGridViewRowHeightInfoNeededEventArgs@cs/1/DataGridViewRowHeightInfoNeededEventArgs@cs
">
                                                <span style="word-wrap: break-word;">DataGridViewRowHeightInfoNeededEventArgs.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/System/Windows/Automation/Peers/TableAutomationPeer@cs/1305600/TableAutomationPeer@cs
">
                                                <span style="word-wrap: break-word;">TableAutomationPeer.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/DataEntity/System/Data/Mapping/StorageMappingItemLoader@cs/1407647/StorageMappingItemLoader@cs
">
                                                <span style="word-wrap: break-word;">StorageMappingItemLoader.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/MS/Internal/documents/ContentHostHelper@cs/1/ContentHostHelper@cs
">
                                                <span style="word-wrap: break-word;">ContentHostHelper.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/RichTextBox@cs/1/RichTextBox@cs
">
                                                <span style="word-wrap: break-word;">RichTextBox.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/System@Runtime@DurableInstancing/System/Runtime/TimeoutHelper@cs/1305376/TimeoutHelper@cs
">
                                                <span style="word-wrap: break-word;">TimeoutHelper.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/Map/ViewGeneration/Structures/OpCellTreeNode@cs/1/OpCellTreeNode@cs
">
                                                <span style="word-wrap: break-word;">OpCellTreeNode.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/CodeCatchClauseCollection@cs/1/CodeCatchClauseCollection@cs
">
                                                <span style="word-wrap: break-word;">CodeCatchClauseCollection.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/DLinq/Dlinq/Mapping/MappedMetaModel@cs/1/MappedMetaModel@cs
">
                                                <span style="word-wrap: break-word;">MappedMetaModel.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/DataEntityDesign/Design/System/Data/Entity/Design/Common/EDesignUtil@cs/2/EDesignUtil@cs
">
                                                <span style="word-wrap: break-word;">EDesignUtil.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/MS/Internal/IO/Zip/ZipIOEndOfCentralDirectoryBlock@cs/1/ZipIOEndOfCentralDirectoryBlock@cs
">
                                                <span style="word-wrap: break-word;">ZipIOEndOfCentralDirectoryBlock.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/GeometryConverter@cs/1/GeometryConverter@cs
">
                                                <span style="word-wrap: break-word;">GeometryConverter.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/DataWeb/Client/System/Data/Services/Client/ALinq/Evaluator@cs/1305376/Evaluator@cs
">
                                                <span style="word-wrap: break-word;">Evaluator.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/Configuration/System/Configuration/InvalidPropValue@cs/1/InvalidPropValue@cs
">
                                                <span style="word-wrap: break-word;">InvalidPropValue.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/Xml/System/Xml/schema/XmlSchemaComplexContentRestriction@cs/1/XmlSchemaComplexContentRestriction@cs
">
                                                <span style="word-wrap: break-word;">XmlSchemaComplexContentRestriction.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/UI/WebControls/ReadOnlyHierarchicalDataSource@cs/1/ReadOnlyHierarchicalDataSource@cs
">
                                                <span style="word-wrap: break-word;">ReadOnlyHierarchicalDataSource.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/Core/CSharp/MS/Internal/Automation/ElementUtil@cs/1/ElementUtil@cs
">
                                                <span style="word-wrap: break-word;">ElementUtil.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/Shared/MS/Internal/IO/Packaging/PackagingUtilities@cs/1305600/PackagingUtilities@cs
">
                                                <span style="word-wrap: break-word;">PackagingUtilities.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/TreeNodeBindingCollection@cs/1/TreeNodeBindingCollection@cs
">
                                                <span style="word-wrap: break-word;">TreeNodeBindingCollection.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/WebControls/DataControlFieldCollection@cs/1/DataControlFieldCollection@cs
">
                                                <span style="word-wrap: break-word;">DataControlFieldCollection.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/DataWeb/Design/system/Data/EntityModel/Emitters/NamespaceEmitter@cs/1305376/NamespaceEmitter@cs
">
                                                <span style="word-wrap: break-word;">NamespaceEmitter.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/Query/InternalTrees/ColumnMapVisitor@cs/1/ColumnMapVisitor@cs
">
                                                <span style="word-wrap: break-word;">ColumnMapVisitor.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/MS/Internal/Ink/InkSerializedFormat/LZCodec@cs/1305600/LZCodec@cs
">
                                                <span style="word-wrap: break-word;">LZCodec.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/WCF/WCF/3@5@30729@1/untmp/Orcas/SP/ndp/cdf/src/WCF/ServiceModel/System/ServiceModel/Description/ImportedPolicyConversionContext@cs/2/ImportedPolicyConversionContext@cs
">
                                                <span style="word-wrap: break-word;">ImportedPolicyConversionContext.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/SelectionRange@cs/1/SelectionRange@cs
">
                                                <span style="word-wrap: break-word;">SelectionRange.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/Script/Services/WebServiceClientProxyGenerator@cs/1305376/WebServiceClientProxyGenerator@cs
">
                                                <span style="word-wrap: break-word;">WebServiceClientProxyGenerator.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/SqlClient/SqlVersion@cs/2/SqlVersion@cs
">
                                                <span style="word-wrap: break-word;">SqlVersion.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/IO/Packaging/IndexingContentUnit@cs/1/IndexingContentUnit@cs
">
                                                <span style="word-wrap: break-word;">IndexingContentUnit.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/WCF/IdentityModel/System/IdentityModel/Claims/ClaimTypes@cs/1305376/ClaimTypes@cs
">
                                                <span style="word-wrap: break-word;">ClaimTypes.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/DataWebControls/System/Data/WebControls/EntityDataSourceContextCreatedEventArgs@cs/1305376/EntityDataSourceContextCreatedEventArgs@cs
">
                                                <span style="word-wrap: break-word;">EntityDataSourceContextCreatedEventArgs.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/Microsoft/Win32/CommonDialog@cs/1305600/CommonDialog@cs
">
                                                <span style="word-wrap: break-word;">CommonDialog.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/WinForms/Managed/System/WinForms/ImageIndexConverter@cs/1305376/ImageIndexConverter@cs
">
                                                <span style="word-wrap: break-word;">ImageIndexConverter.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/Runtime/Remoting/CrossAppDomainChannel@cs/1/CrossAppDomainChannel@cs
">
                                                <span style="word-wrap: break-word;">CrossAppDomainChannel.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/Base/MS/Internal/IO/Zip/ZipIOBlockManager@cs/1/ZipIOBlockManager@cs
">
                                                <span style="word-wrap: break-word;">ZipIOBlockManager.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/Security/Cryptography/DSACryptoServiceProvider@cs/1/DSACryptoServiceProvider@cs
">
                                                <span style="word-wrap: break-word;">DSACryptoServiceProvider.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/Odbc/OdbcFactory@cs/1/OdbcFactory@cs
">
                                                <span style="word-wrap: break-word;">OdbcFactory.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/StartUpEventArgs@cs/1/StartUpEventArgs@cs
">
                                                <span style="word-wrap: break-word;">StartUpEventArgs.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/UI/WebControls/MailDefinition@cs/4/MailDefinition@cs
">
                                                <span style="word-wrap: break-word;">MailDefinition.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/OleDb/DBBindings@cs/1/DBBindings@cs
">
                                                <span style="word-wrap: break-word;">DBBindings.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/public/internal/NDP/inc/CmsInterop@cs/1305411/CmsInterop@cs
">
                                                <span style="word-wrap: break-word;">CmsInterop.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/WinForms/Managed/System/WinForms/AccessibleObject@cs/1/AccessibleObject@cs
">
                                                <span style="word-wrap: break-word;">AccessibleObject.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/FixedSOMTableRow@cs/1/FixedSOMTableRow@cs
">
                                                <span style="word-wrap: break-word;">FixedSOMTableRow.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/FamilyMapCollection@cs/1305600/FamilyMapCollection@cs
">
                                                <span style="word-wrap: break-word;">FamilyMapCollection.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/SystemWebSectionGroup@cs/1305376/SystemWebSectionGroup@cs
">
                                                <span style="word-wrap: break-word;">SystemWebSectionGroup.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/Web/System/Web/Services/Protocols/WebServiceHandler@cs/1305376/WebServiceHandler@cs
">
                                                <span style="word-wrap: break-word;">WebServiceHandler.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/DrawingServices@cs/1305600/DrawingServices@cs
">
                                                <span style="word-wrap: break-word;">DrawingServices.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/ToolStripControlHost@cs/1/ToolStripControlHost@cs
">
                                                <span style="word-wrap: break-word;">ToolStripControlHost.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/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://www.dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/Orcas/SP/wpf/src/UIAutomation/Win32Providers/MS/Internal/AutomationProxies/WindowsToolbarAsMenu@cs/1/WindowsToolbarAsMenu@cs
">
                                                <span style="word-wrap: break-word;">WindowsToolbarAsMenu.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/Print/Reach/PrintConfig/PrtCap_Builder@cs/1/PrtCap_Builder@cs
">
                                                <span style="word-wrap: break-word;">PrtCap_Builder.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/Text/UTF7Encoding@cs/1/UTF7Encoding@cs
">
                                                <span style="word-wrap: break-word;">UTF7Encoding.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/WebParts/WebPartDescription@cs/1/WebPartDescription@cs
">
                                                <span style="word-wrap: break-word;">WebPartDescription.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/NetworkInformation/PhysicalAddress@cs/1/PhysicalAddress@cs
">
                                                <span style="word-wrap: break-word;">PhysicalAddress.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/XPath/Internal/DescendantBaseQuery@cs/1/DescendantBaseQuery@cs
">
                                                <span style="word-wrap: break-word;">DescendantBaseQuery.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/BCL/System/TypeUnloadedException@cs/1305376/TypeUnloadedException@cs
">
                                                <span style="word-wrap: break-word;">TypeUnloadedException.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/Generated/Size@cs/1305600/Size@cs
">
                                                <span style="word-wrap: break-word;">Size.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/UI/WebParts/TransformerConfigurationWizardBase@cs/1/TransformerConfigurationWizardBase@cs
">
                                                <span style="word-wrap: break-word;">TransformerConfigurationWizardBase.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/Design/Serialization/RootDesignerSerializerAttribute@cs/1305376/RootDesignerSerializerAttribute@cs
">
                                                <span style="word-wrap: break-word;">RootDesignerSerializerAttribute.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/Configuration/HttpConfigurationContext@cs/1/HttpConfigurationContext@cs
">
                                                <span style="word-wrap: break-word;">HttpConfigurationContext.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/WCF/Serialization/System/Runtime/Serialization/XmlSerializableWriter@cs/1305376/XmlSerializableWriter@cs
">
                                                <span style="word-wrap: break-word;">XmlSerializableWriter.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/Data/System/Data/Filter/ExpressionParser@cs/1/ExpressionParser@cs
">
                                                <span style="word-wrap: break-word;">ExpressionParser.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/_DisconnectOverlappedAsyncResult@cs/1/_DisconnectOverlappedAsyncResult@cs
">
                                                <span style="word-wrap: break-word;">_DisconnectOverlappedAsyncResult.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/TreeViewItem@cs/1/TreeViewItem@cs
">
                                                <span style="word-wrap: break-word;">TreeViewItem.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/Host/ExceptionCollection@cs/1/ExceptionCollection@cs
">
                                                <span style="word-wrap: break-word;">ExceptionCollection.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/HttpResponseHeader@cs/1305376/HttpResponseHeader@cs
">
                                                <span style="word-wrap: break-word;">HttpResponseHeader.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/WebControls/FormViewDeleteEventArgs@cs/1305376/FormViewDeleteEventArgs@cs
">
                                                <span style="word-wrap: break-word;">FormViewDeleteEventArgs.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/Microsoft/SqlServer/Server/SmiEventSink_DeferedProcessing@cs/2/SmiEventSink_DeferedProcessing@cs
">
                                                <span style="word-wrap: break-word;">SmiEventSink_DeferedProcessing.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/ArgumentValue@cs/1305376/ArgumentValue@cs
">
                                                <span style="word-wrap: break-word;">ArgumentValue.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/clr/src/BCL/System/Threading/ThreadStateException@cs/1/ThreadStateException@cs
">
                                                <span style="word-wrap: break-word;">ThreadStateException.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/Core/CSharp/System/Windows/Media/textformatting/TextFormatter@cs/1/TextFormatter@cs
">
                                                <span style="word-wrap: break-word;">TextFormatter.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/DataWeb/Server/System/Data/Services/Parsing/Token@cs/1305376/Token@cs
">
                                                <span style="word-wrap: break-word;">Token.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/Configuration/HandlerMappingMemo@cs/1/HandlerMappingMemo@cs
">
                                                <span style="word-wrap: break-word;">HandlerMappingMemo.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/cookiecontainer@cs/1/cookiecontainer@cs
">
                                                <span style="word-wrap: break-word;">cookiecontainer.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/Net/System/Net/Sockets/_DisconnectOverlappedAsyncResult@cs/1305376/_DisconnectOverlappedAsyncResult@cs
">
                                                <span style="word-wrap: break-word;">_DisconnectOverlappedAsyncResult.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/WCF/SMDiagnostics/System/ServiceModel/Diagnostics/PlainXmlWriter@cs/1305376/PlainXmlWriter@cs
">
                                                <span style="word-wrap: break-word;">PlainXmlWriter.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>