HtmlHead.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlHead.cs / 1305376 / HtmlHead.cs

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

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

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

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

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

            return null;
        } 

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

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

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

                return _styleSheet;
            }
        } 

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                Page page = _owner.Page; 

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

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

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

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

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

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

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


                        </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/DataEntityDesign/Design/System/Data/EntityModel/Emitters/Emitter@cs/3/Emitter@cs
">
                                                <span style="word-wrap: break-word;">Emitter.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/Core/System/Linq/Parallel/Utils/Wrapper@cs/1305376/Wrapper@cs
">
                                                <span style="word-wrap: break-word;">Wrapper.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/XmlUtil@cs/1/XmlUtil@cs
">
                                                <span style="word-wrap: break-word;">XmlUtil.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/DataEntity/System/Data/Metadata/ObjectLayer/ObjectItemCachedAssemblyLoader@cs/1305376/ObjectItemCachedAssemblyLoader@cs
">
                                                <span style="word-wrap: break-word;">ObjectItemCachedAssemblyLoader.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/Configuration/System/Configuration/ConfigXmlCDataSection@cs/1/ConfigXmlCDataSection@cs
">
                                                <span style="word-wrap: break-word;">ConfigXmlCDataSection.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/NodeInfo@cs/1/NodeInfo@cs
">
                                                <span style="word-wrap: break-word;">NodeInfo.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@Xaml@Hosting/System/Xaml/Hosting/Configuration/XamlHostingConfiguration@cs/1305376/XamlHostingConfiguration@cs
">
                                                <span style="word-wrap: break-word;">XamlHostingConfiguration.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/DataEntity/System/Data/Map/ViewGeneration/Structures/ScalarConstant@cs/1305376/ScalarConstant@cs
">
                                                <span style="word-wrap: break-word;">ScalarConstant.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/Parameter@cs/3/Parameter@cs
">
                                                <span style="word-wrap: break-word;">Parameter.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/XmlHierarchyData@cs/1/XmlHierarchyData@cs
">
                                                <span style="word-wrap: break-word;">XmlHierarchyData.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/BoundPropertyEntry@cs/1/BoundPropertyEntry@cs
">
                                                <span style="word-wrap: break-word;">BoundPropertyEntry.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/Base/Core/Internal/PropertyEditing/VisualTreeUtils@cs/1305376/VisualTreeUtils@cs
">
                                                <span style="word-wrap: break-word;">VisualTreeUtils.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/Core/Microsoft/Scripting/Compiler/LambdaCompiler@Logical@cs/1305376/LambdaCompiler@Logical@cs
">
                                                <span style="word-wrap: break-word;">LambdaCompiler.Logical.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/NetFx35/System@ServiceModel@Web/System/ServiceModel/Configuration/WebHttpSecurityElement@cs/1305376/WebHttpSecurityElement@cs
">
                                                <span style="word-wrap: break-word;">WebHttpSecurityElement.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/Runtime/InteropServices/InvalidComObjectException@cs/1/InvalidComObjectException@cs
">
                                                <span style="word-wrap: break-word;">InvalidComObjectException.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/OleDb/OleDbDataAdapter@cs/1/OleDbDataAdapter@cs
">
                                                <span style="word-wrap: break-word;">OleDbDataAdapter.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/Runtime/InteropServices/TCEAdapterGen/NameSpaceExtractor@cs/1/NameSpaceExtractor@cs
">
                                                <span style="word-wrap: break-word;">NameSpaceExtractor.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/TrustUi/MS/Internal/documents/Application/PackageDocument@cs/1/PackageDocument@cs
">
                                                <span style="word-wrap: break-word;">PackageDocument.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/BoundsDrawingContextWalker@cs/1/BoundsDrawingContextWalker@cs
">
                                                <span style="word-wrap: break-word;">BoundsDrawingContextWalker.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/EventEntry@cs/1/EventEntry@cs
">
                                                <span style="word-wrap: break-word;">EventEntry.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/Core/System/Linq/Parallel/Partitioning/HashRepartitionStream@cs/1305376/HashRepartitionStream@cs
">
                                                <span style="word-wrap: break-word;">HashRepartitionStream.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/TagMapInfo@cs/2/TagMapInfo@cs
">
                                                <span style="word-wrap: break-word;">TagMapInfo.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/StackOverflowException@cs/1/StackOverflowException@cs
">
                                                <span style="word-wrap: break-word;">StackOverflowException.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/Shared/MS/Internal/Xaml/Context/XamlContextStack@cs/1305600/XamlContextStack@cs
">
                                                <span style="word-wrap: break-word;">XamlContextStack.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/Menu@cs/1458001/Menu@cs
">
                                                <span style="word-wrap: break-word;">Menu.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/ProviderBase/SchemaMapping@cs/1305376/SchemaMapping@cs
">
                                                <span style="word-wrap: break-word;">SchemaMapping.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/Imaging/ColorConvertedBitmap@cs/1/ColorConvertedBitmap@cs
">
                                                <span style="word-wrap: break-word;">ColorConvertedBitmap.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/IO/EndOfStreamException@cs/1/EndOfStreamException@cs
">
                                                <span style="word-wrap: break-word;">EndOfStreamException.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/Util/UrlPath@cs/1477467/UrlPath@cs
">
                                                <span style="word-wrap: break-word;">UrlPath.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/ClientServices/Providers/ClientFormsAuthenticationMembershipProvider@cs/1305376/ClientFormsAuthenticationMembershipProvider@cs
">
                                                <span style="word-wrap: break-word;">ClientFormsAuthenticationMembershipProvider.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/ProfileSection@cs/3/ProfileSection@cs
">
                                                <span style="word-wrap: break-word;">ProfileSection.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/Printing/PaperSize@cs/1/PaperSize@cs
">
                                                <span style="word-wrap: break-word;">PaperSize.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/Configuration/RemoteWebConfigurationHostServer@cs/4/RemoteWebConfigurationHostServer@cs
">
                                                <span style="word-wrap: break-word;">RemoteWebConfigurationHostServer.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/CompMod/System/Diagnostics/ListenerElementsCollection@cs/1/ListenerElementsCollection@cs
">
                                                <span style="word-wrap: break-word;">ListenerElementsCollection.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/Color@cs/1/Color@cs
">
                                                <span style="word-wrap: break-word;">Color.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/IO/LongPath@cs/1305376/LongPath@cs
">
                                                <span style="word-wrap: break-word;">LongPath.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/DataEntity/System/Data/Objects/ObjectStateEntryDbDataRecord@cs/1305376/ObjectStateEntryDbDataRecord@cs
">
                                                <span style="word-wrap: break-word;">ObjectStateEntryDbDataRecord.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/IdentityModel/System/IdentityModel/Transform@cs/1305376/Transform@cs
">
                                                <span style="word-wrap: break-word;">Transform.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/AddIn/AddIn/System/Addin/Hosting/AddInProcess@cs/1305376/AddInProcess@cs
">
                                                <span style="word-wrap: break-word;">AddInProcess.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/BuildTasks/Microsoft/Build/Tasks/Windows/MarkupCompilePass2@cs/1/MarkupCompilePass2@cs
">
                                                <span style="word-wrap: break-word;">MarkupCompilePass2.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/Serialization/Configuration/ConfigurationStrings@cs/2/ConfigurationStrings@cs
">
                                                <span style="word-wrap: break-word;">ConfigurationStrings.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/AccessControl/MutexSecurity@cs/1/MutexSecurity@cs
">
                                                <span style="word-wrap: break-word;">MutexSecurity.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/MIT/System/Web/UI/MobileControls/ItemPager@cs/1305376/ItemPager@cs
">
                                                <span style="word-wrap: break-word;">ItemPager.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/Resources/ResourceSet@cs/1305376/ResourceSet@cs
">
                                                <span style="word-wrap: break-word;">ResourceSet.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/Designer/WebForms/System/Web/UI/Design/WebControls/DataGridComponentEditor@cs/1/DataGridComponentEditor@cs
">
                                                <span style="word-wrap: break-word;">DataGridComponentEditor.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/DataEntity/System/Data/Map/ViewGeneration/CqlGenerator@cs/1305376/CqlGenerator@cs
">
                                                <span style="word-wrap: break-word;">CqlGenerator.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/Objects/ObjectStateManager@cs/1/ObjectStateManager@cs
">
                                                <span style="word-wrap: break-word;">ObjectStateManager.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/Generated/UIElement3D@cs/1305600/UIElement3D@cs
">
                                                <span style="word-wrap: break-word;">UIElement3D.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/Shared/MS/Internal/SafeSecurityHelper@cs/1305600/SafeSecurityHelper@cs
">
                                                <span style="word-wrap: break-word;">SafeSecurityHelper.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/SqlDuplicator@cs/1/SqlDuplicator@cs
">
                                                <span style="word-wrap: break-word;">SqlDuplicator.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/Markup/BamlRecordReader@cs/1305600/BamlRecordReader@cs
">
                                                <span style="word-wrap: break-word;">BamlRecordReader.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/CommonUI/System/Drawing/Advanced/GPPOINTF@cs/1/GPPOINTF@cs
">
                                                <span style="word-wrap: break-word;">GPPOINTF.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/Media/ImageMetadata@cs/1/ImageMetadata@cs
">
                                                <span style="word-wrap: break-word;">ImageMetadata.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/Objects/FieldDescriptor@cs/1/FieldDescriptor@cs
">
                                                <span style="word-wrap: break-word;">FieldDescriptor.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/Rules/RuleSetCollection@cs/1305376/RuleSetCollection@cs
">
                                                <span style="word-wrap: break-word;">RuleSetCollection.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/Dom/XmlUnspecifiedAttribute@cs/1/XmlUnspecifiedAttribute@cs
">
                                                <span style="word-wrap: break-word;">XmlUnspecifiedAttribute.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/DataWeb/Client/System/Data/Services/Client/Descriptor@cs/1/Descriptor@cs
">
                                                <span style="word-wrap: break-word;">Descriptor.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/GridItemProviderWrapper@cs/1/GridItemProviderWrapper@cs
">
                                                <span style="word-wrap: break-word;">GridItemProviderWrapper.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/WinForms/Managed/System/WinForms/NumericUpDownAccelerationCollection@cs/1/NumericUpDownAccelerationCollection@cs
">
                                                <span style="word-wrap: break-word;">NumericUpDownAccelerationCollection.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/WinCategoryAttribute@cs/1305376/WinCategoryAttribute@cs
">
                                                <span style="word-wrap: break-word;">WinCategoryAttribute.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/WinForms/Managed/System/WinForms/TrackBarRenderer@cs/1/TrackBarRenderer@cs
">
                                                <span style="word-wrap: break-word;">TrackBarRenderer.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/MS/Internal/TextFormatting/FullTextLine@cs/1/FullTextLine@cs
">
                                                <span style="word-wrap: break-word;">FullTextLine.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/Util/Profiler@cs/1/Profiler@cs
">
                                                <span style="word-wrap: break-word;">Profiler.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/SystemNet/Net/PeerToPeer/Collaboration/PeerCollaborationPermission@cs/1/PeerCollaborationPermission@cs
">
                                                <span style="word-wrap: break-word;">PeerCollaborationPermission.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/DataGridViewCellLinkedList@cs/1305376/DataGridViewCellLinkedList@cs
">
                                                <span style="word-wrap: break-word;">DataGridViewCellLinkedList.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/Security/Permissions/GACIdentityPermission@cs/1305376/GACIdentityPermission@cs
">
                                                <span style="word-wrap: break-word;">GACIdentityPermission.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/Microsoft/VisualBasic/Activities/VisualBasicHelper@cs/1305376/VisualBasicHelper@cs
">
                                                <span style="word-wrap: break-word;">VisualBasicHelper.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/TextEditorContextMenu@cs/1305600/TextEditorContextMenu@cs
">
                                                <span style="word-wrap: break-word;">TextEditorContextMenu.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/Annotations/AnnotationResourceChangedEventArgs@cs/1/AnnotationResourceChangedEventArgs@cs
">
                                                <span style="word-wrap: break-word;">AnnotationResourceChangedEventArgs.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/ImageMap@cs/3/ImageMap@cs
">
                                                <span style="word-wrap: break-word;">ImageMap.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/NullRuntimeConfig@cs/1/NullRuntimeConfig@cs
">
                                                <span style="word-wrap: break-word;">NullRuntimeConfig.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/MS/Internal/Generic/Span@cs/1/Span@cs
">
                                                <span style="word-wrap: break-word;">Span.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/WinForms/Managed/System/WinForms/SplitterEvent@cs/1/SplitterEvent@cs
">
                                                <span style="word-wrap: break-word;">SplitterEvent.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/SerializationInfoEnumerator@cs/1/SerializationInfoEnumerator@cs
">
                                                <span style="word-wrap: break-word;">SerializationInfoEnumerator.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/Documents/TextTreeText@cs/1/TextTreeText@cs
">
                                                <span style="word-wrap: break-word;">TextTreeText.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/DataWeb/Server/System/Data/Services/Parsing/FunctionDescription@cs/1/FunctionDescription@cs
">
                                                <span style="word-wrap: break-word;">FunctionDescription.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/WebControls/HotSpot@cs/1305376/HotSpot@cs
">
                                                <span style="word-wrap: break-word;">HotSpot.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/SqlGen/JoinSymbol@cs/2/JoinSymbol@cs
">
                                                <span style="word-wrap: break-word;">JoinSymbol.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/DataGridViewTextBoxEditingControl@cs/1/DataGridViewTextBoxEditingControl@cs
">
                                                <span style="word-wrap: break-word;">DataGridViewTextBoxEditingControl.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/Objects/ELinq/TypeSystem@cs/1599186/TypeSystem@cs
">
                                                <span style="word-wrap: break-word;">TypeSystem.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/ScalarConstant@cs/1/ScalarConstant@cs
">
                                                <span style="word-wrap: break-word;">ScalarConstant.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/UIAutomation/Win32Providers/MS/Internal/AutomationProxies/WindowsSpinner@cs/1/WindowsSpinner@cs
">
                                                <span style="word-wrap: break-word;">WindowsSpinner.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/NoneExcludedImageIndexConverter@cs/1305376/NoneExcludedImageIndexConverter@cs
">
                                                <span style="word-wrap: break-word;">NoneExcludedImageIndexConverter.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/CompMod/System/CodeDOM/CodeMemberEvent@cs/1/CodeMemberEvent@cs
">
                                                <span style="word-wrap: break-word;">CodeMemberEvent.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/Layout/PropertyNames@cs/1305376/PropertyNames@cs
">
                                                <span style="word-wrap: break-word;">PropertyNames.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/Markup/ProvideValueServiceProvider@cs/1/ProvideValueServiceProvider@cs
">
                                                <span style="word-wrap: break-word;">ProvideValueServiceProvider.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/DataEntity/System/Data/Objects/Internal/TransactionManager@cs/1305376/TransactionManager@cs
">
                                                <span style="word-wrap: break-word;">TransactionManager.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/Documents/TextRange@cs/1305600/TextRange@cs
">
                                                <span style="word-wrap: break-word;">TextRange.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/Animation/Generated/Animatable@cs/1/Animatable@cs
">
                                                <span style="word-wrap: break-word;">Animatable.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/IOThreadScheduler@cs/1305376/IOThreadScheduler@cs
">
                                                <span style="word-wrap: break-word;">IOThreadScheduler.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/WinForms/Managed/System/WinForms/NumericUpDownAcceleration@cs/1/NumericUpDownAcceleration@cs
">
                                                <span style="word-wrap: break-word;">NumericUpDownAcceleration.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/Management/TemplatedMailWebEventProvider@cs/1/TemplatedMailWebEventProvider@cs
">
                                                <span style="word-wrap: break-word;">TemplatedMailWebEventProvider.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/Serialization/XmlSerializerVersionAttribute@cs/1305376/XmlSerializerVersionAttribute@cs
">
                                                <span style="word-wrap: break-word;">XmlSerializerVersionAttribute.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/Double@cs/1/Double@cs
">
                                                <span style="word-wrap: break-word;">Double.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/Command/MediaCommands@cs/1305600/MediaCommands@cs
">
                                                <span style="word-wrap: break-word;">MediaCommands.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/Component/AnnotationComponentManager@cs/1/AnnotationComponentManager@cs
">
                                                <span style="word-wrap: break-word;">AnnotationComponentManager.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/HttpClientCertificate@cs/1/HttpClientCertificate@cs
">
                                                <span style="word-wrap: break-word;">HttpClientCertificate.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/Common/DateTimeStorage@cs/1/DateTimeStorage@cs
">
                                                <span style="word-wrap: break-word;">DateTimeStorage.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/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Speech/Src/Recognition/DictationGrammar@cs/1/DictationGrammar@cs
">
                                                <span style="word-wrap: break-word;">DictationGrammar.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/AnimatedTypeHelpers@cs/1/AnimatedTypeHelpers@cs
">
                                                <span style="word-wrap: break-word;">AnimatedTypeHelpers.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>