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="http://dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/Orcas/NetFXw7/wpf/src/Framework/System/Windows/Media/Animation/Generated/ThicknessAnimationBase@cs/1/ThicknessAnimationBase@cs
">
                                                <span style="word-wrap: break-word;">ThicknessAnimationBase.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/DLinq/Dlinq/SqlClient/Query/SqlOuterApplyReducer@cs/1305376/SqlOuterApplyReducer@cs
">
                                                <span style="word-wrap: break-word;">SqlOuterApplyReducer.cs
</span>
                                            </a></li>

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Vista_SP2/Dotnetfx_Vista_SP2/8@0@50727@4016/DEVDIV/depot/DevDiv/releases/whidbey/NetFxQFE/ndp/clr/src/BCL/Microsoft/Win32/SafeHandles/Win32SafeHandles@cs/1/Win32SafeHandles@cs
">
                                                <span style="word-wrap: break-word;">Win32SafeHandles.cs
</span>
                                            </a></li>

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

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

                                    
                                        <li style="padding:5px;"><a href="http://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/DataWeb/Client/System/Data/Services/Client/ALinq/InputBinder@cs/1/InputBinder@cs
">
                                                <span style="word-wrap: break-word;">InputBinder.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://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="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/MIT/System/Web/Mobile/CookielessData@cs/1305376/CookielessData@cs
">
                                                <span style="word-wrap: break-word;">CookielessData.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://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="http://dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/Orcas/SP/wpf/src/Framework/System/Windows/Controls/Frame@cs/1/Frame@cs
">
                                                <span style="word-wrap: break-word;">Frame.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/DataWeb/Design/system/Data/Entity/Design/Common/UniqueIdentifierService@cs/1305376/UniqueIdentifierService@cs
">
                                                <span style="word-wrap: break-word;">UniqueIdentifierService.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/Orcas/NetFXw7/wpf/src/UIAutomation/UIAutomationClient/MS/Internal/Automation/ProxyManager@cs/1/ProxyManager@cs
">
                                                <span style="word-wrap: break-word;">ProxyManager.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Core/System/Windows/Media/Converters/Generated/BrushValueSerializer@cs/1/BrushValueSerializer@cs
">
                                                <span style="word-wrap: break-word;">BrushValueSerializer.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>