HtmlHead.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlHead.cs / 3 / HtmlHead.cs

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

namespace System.Web.UI.HtmlControls { 
    using System; 
    using System.Collections;
    using System.Collections.Specialized; 
    using System.ComponentModel;
    using System.Globalization;
    using System.Web;
    using System.Web.UI; 
    using System.Web.UI.WebControls;
    using System.Security.Permissions; 
 
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 
    public class HtmlHeadBuilder : ControlBuilder {


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

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

        public override bool AllowWhitespaceLiterals() { 
            return false;
        }
    }
 
    /// 
    /// Represents the HEAD element. 
    ///  
    [
    ControlBuilderAttribute(typeof(HtmlHeadBuilder)), 
    AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)
    ]
    public sealed class HtmlHead : HtmlGenericControl {
 
        private StyleSheetInternal _styleSheet;
        private HtmlTitle _title; 
        private String _cachedTitleText; 

        ///  
        /// Initializes an instance of an HtmlHead class.
        /// 
        public HtmlHead() : base("head") {
        } 

        public HtmlHead(string tag) : base(tag) { 
            if (tag == null) { 
                tag = String.Empty;
            } 
            _tagName = tag;
        }

        public IStyleSheet StyleSheet { 
            get {
                if (_styleSheet == null) { 
                    _styleSheet = new StyleSheetInternal(this); 
                }
 
                return _styleSheet;
            }
        }
 
        public String Title {
            get { 
                if (_title == null) { 
                    return _cachedTitleText;
                } 

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

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

            if (control is HtmlTitle) { 
                if (_title != null) {
                    throw new HttpException(SR.GetString(SR.HtmlHead_OnlyOneTitleAllowed));
                }
 
                _title = (HtmlTitle)control;
            } 
        } 

        ///  
        /// 
        /// Allows the HEAD element to register itself with the page.
        /// 
        protected internal override void OnInit(EventArgs e) { 
            base.OnInit(e);
 
            Page p = Page; 
            if (p == null) {
                throw new HttpException(SR.GetString(SR.Head_Needs_Page)); 
            }
            if (p.Header != null) {
                throw new HttpException(SR.GetString(SR.HtmlHead_OnlyOneHeadAllowed));
            } 
            p.SetHeader(this);
        } 
 
        internal void RegisterCssStyleString(string outputString) {
            ((StyleSheetInternal)StyleSheet).CSSStyleString = outputString; 
        }

        protected internal override void RemovedControl(Control control) {
            base.RemovedControl(control); 

            if (control is HtmlTitle) { 
                _title = null; 
            }
        } 

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                Page page = _owner.Page; 

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

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

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

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

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

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

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        </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/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/Orcas/SP/wpf/src/Framework/MS/Internal/PtsHost/LineBreakRecord@cs/1/LineBreakRecord@cs
">
                                                <span style="word-wrap: break-word;">LineBreakRecord.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/System/Windows/Automation/Peers/ThumbAutomationPeer@cs/1/ThumbAutomationPeer@cs
">
                                                <span style="word-wrap: break-word;">ThumbAutomationPeer.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/NetFx35/System@ServiceModel@Web/System/ServiceModel/Configuration/InternalEnumValidatorAttribute@cs/1/InternalEnumValidatorAttribute@cs
">
                                                <span style="word-wrap: break-word;">InternalEnumValidatorAttribute.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/Configuration/UrlAuthFailedErrorFormatter@cs/1/UrlAuthFailedErrorFormatter@cs
">
                                                <span style="word-wrap: break-word;">UrlAuthFailedErrorFormatter.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/NetFx35/System@ServiceModel@Web/System/ServiceModel/Web/HttpDateParse@cs/1305376/HttpDateParse@cs
">
                                                <span style="word-wrap: break-word;">HttpDateParse.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/Documents/RtfToken@cs/1/RtfToken@cs
">
                                                <span style="word-wrap: break-word;">RtfToken.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/_HeaderInfoTable@cs/1/_HeaderInfoTable@cs
">
                                                <span style="word-wrap: break-word;">_HeaderInfoTable.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/SecurityImpersonationBehavior@cs/2/SecurityImpersonationBehavior@cs
">
                                                <span style="word-wrap: break-word;">SecurityImpersonationBehavior.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/CompMod/System/ComponentModel/RecommendedAsConfigurableAttribute@cs/1/RecommendedAsConfigurableAttribute@cs
">
                                                <span style="word-wrap: break-word;">RecommendedAsConfigurableAttribute.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/TrustUi/MS/Internal/documents/Application/RightsController@cs/1/RightsController@cs
">
                                                <span style="word-wrap: break-word;">RightsController.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/DataTableCollection@cs/1/DataTableCollection@cs
">
                                                <span style="word-wrap: break-word;">DataTableCollection.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/MappingException@cs/2/MappingException@cs
">
                                                <span style="word-wrap: break-word;">MappingException.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/CompMod/System/CodeDOM/CodeSnippetTypeMember@cs/1305376/CodeSnippetTypeMember@cs
">
                                                <span style="word-wrap: break-word;">CodeSnippetTypeMember.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/Configuration/ProtocolsConfigurationEntry@cs/2/ProtocolsConfigurationEntry@cs
">
                                                <span style="word-wrap: break-word;">ProtocolsConfigurationEntry.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/Collections/Specialized/OrderedDictionary@cs/1/OrderedDictionary@cs
">
                                                <span style="word-wrap: break-word;">OrderedDictionary.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/CommonUI/System/Drawing/BufferedGraphicsManager@cs/1/BufferedGraphicsManager@cs
">
                                                <span style="word-wrap: break-word;">BufferedGraphicsManager.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/HtmlControls/HtmlInputImage@cs/1/HtmlInputImage@cs
">
                                                <span style="word-wrap: break-word;">HtmlInputImage.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/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Speech/Src/Recognition/LoadGrammarCompletedEventArgs@cs/1/LoadGrammarCompletedEventArgs@cs
">
                                                <span style="word-wrap: break-word;">LoadGrammarCompletedEventArgs.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/Media/Animation/Clock@cs/1/Clock@cs
">
                                                <span style="word-wrap: break-word;">Clock.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/Ports/SerialStream@cs/1305376/SerialStream@cs
">
                                                <span style="word-wrap: break-word;">SerialStream.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/DataWeb/Design/system/Data/Entity/Design/Common/UniqueIdentifierService@cs/1/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/Orcas/QFE/ndp/fx/src/DLinq/Dlinq/SqlClient/SqlMethods@cs/2/SqlMethods@cs
">
                                                <span style="word-wrap: break-word;">SqlMethods.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/FocusWithinProperty@cs/1305600/FocusWithinProperty@cs
">
                                                <span style="word-wrap: break-word;">FocusWithinProperty.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/Sys/System/IO/compression/GZipStream@cs/1/GZipStream@cs
">
                                                <span style="word-wrap: break-word;">GZipStream.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/Base/System/Windows/Markup/RuntimeIdentifierPropertyAttribute@cs/1305600/RuntimeIdentifierPropertyAttribute@cs
">
                                                <span style="word-wrap: break-word;">RuntimeIdentifierPropertyAttribute.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/CompMod/System/ComponentModel/ComponentCollection@cs/1/ComponentCollection@cs
">
                                                <span style="word-wrap: break-word;">ComponentCollection.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/Net/System/Net/_NestedMultipleAsyncResult@cs/1305376/_NestedMultipleAsyncResult@cs
">
                                                <span style="word-wrap: break-word;">_NestedMultipleAsyncResult.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@Routing/System/ServiceModel/Routing/SendOperation@cs/1305376/SendOperation@cs
">
                                                <span style="word-wrap: break-word;">SendOperation.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/ManagedLibraries/Security/System/Security/Cryptography/Xml/CanonicalXml@cs/1305376/CanonicalXml@cs
">
                                                <span style="word-wrap: break-word;">CanonicalXml.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/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Speech/Src/Internal/Synthesis/EngineSite@cs/1/EngineSite@cs
">
                                                <span style="word-wrap: break-word;">EngineSite.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/MS/Internal/TextFormatting/TextRunCacheImp@cs/1/TextRunCacheImp@cs
">
                                                <span style="word-wrap: break-word;">TextRunCacheImp.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/UI/ParsedAttributeCollection@cs/1/ParsedAttributeCollection@cs
">
                                                <span style="word-wrap: break-word;">ParsedAttributeCollection.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/FormsAuthenticationEventArgs@cs/1/FormsAuthenticationEventArgs@cs
">
                                                <span style="word-wrap: break-word;">FormsAuthenticationEventArgs.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/System/Linq/Parallel/QueryOperators/Inlined/DecimalAverageAggregationOperator@cs/1305376/DecimalAverageAggregationOperator@cs
">
                                                <span style="word-wrap: break-word;">DecimalAverageAggregationOperator.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/NotImplementedException@cs/1/NotImplementedException@cs
">
                                                <span style="word-wrap: break-word;">NotImplementedException.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/Sys/System/IO/compression/FastEncoder@cs/1/FastEncoder@cs
">
                                                <span style="word-wrap: break-word;">FastEncoder.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/Dotnetfx_Vista_SP2/Dotnetfx_Vista_SP2/8@0@50727@4016/DEVDIV/depot/DevDiv/releases/whidbey/NetFxQFE/ndp/fx/src/Xml/System/Xml/XmlConvert@cs/1/XmlConvert@cs
">
                                                <span style="word-wrap: break-word;">XmlConvert.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/Net/System/Net/SecureProtocols/_NegoState@cs/1/_NegoState@cs
">
                                                <span style="word-wrap: break-word;">_NegoState.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/Documents/XamlToRtfWriter@cs/1/XamlToRtfWriter@cs
">
                                                <span style="word-wrap: break-word;">XamlToRtfWriter.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/Configuration/System/Configuration/Internal/FileVersion@cs/1305376/FileVersion@cs
">
                                                <span style="word-wrap: break-word;">FileVersion.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/Extensions/UI/ScriptComponentDescriptor@cs/1305376/ScriptComponentDescriptor@cs
">
                                                <span style="word-wrap: break-word;">ScriptComponentDescriptor.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/Speech/Src/Result/RecognitionResult@cs/1/RecognitionResult@cs
">
                                                <span style="word-wrap: break-word;">RecognitionResult.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/System/Windows/Documents/TextTreeTextElementNode@cs/1/TextTreeTextElementNode@cs
">
                                                <span style="word-wrap: break-word;">TextTreeTextElementNode.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/Diagnostics/PerformanceData/PerfProviderCollection@cs/1305376/PerfProviderCollection@cs
">
                                                <span style="word-wrap: break-word;">PerfProviderCollection.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/SchemaInfo@cs/1/SchemaInfo@cs
">
                                                <span style="word-wrap: break-word;">SchemaInfo.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/DataEntityDesign/Design/System/Data/Entity/Design/AspNet/MappingModelBuildProvider@cs/1/MappingModelBuildProvider@cs
">
                                                <span style="word-wrap: break-word;">MappingModelBuildProvider.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/UI/TemplateControlParser@cs/1/TemplateControlParser@cs
">
                                                <span style="word-wrap: break-word;">TemplateControlParser.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/UI/WebParts/WebDisplayNameAttribute@cs/1/WebDisplayNameAttribute@cs
">
                                                <span style="word-wrap: break-word;">WebDisplayNameAttribute.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/UI/WebParts/CatalogZone@cs/1305376/CatalogZone@cs
">
                                                <span style="word-wrap: break-word;">CatalogZone.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/QueryRewriting/RoleBoolean@cs/1305376/RoleBoolean@cs
">
                                                <span style="word-wrap: break-word;">RoleBoolean.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/RunTime/Tracking/TrackPoint@cs/1305376/TrackPoint@cs
">
                                                <span style="word-wrap: break-word;">TrackPoint.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/FormsAuthenticationModule@cs/3/FormsAuthenticationModule@cs
">
                                                <span style="word-wrap: break-word;">FormsAuthenticationModule.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/Configuration/UrlMapping@cs/5/UrlMapping@cs
">
                                                <span style="word-wrap: break-word;">UrlMapping.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/SQLTypes/SQLDateTimeStorage@cs/1/SQLDateTimeStorage@cs
">
                                                <span style="word-wrap: break-word;">SQLDateTimeStorage.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/Documents/RtfFormatStack@cs/1/RtfFormatStack@cs
">
                                                <span style="word-wrap: break-word;">RtfFormatStack.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/CompMod/System/CodeDOM/CodeArrayIndexerExpression@cs/1/CodeArrayIndexerExpression@cs
">
                                                <span style="word-wrap: break-word;">CodeArrayIndexerExpression.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/Common/EntitySql/Parameter@cs/2/Parameter@cs
">
                                                <span style="word-wrap: break-word;">Parameter.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/Data/System/Data/DataSet@cs/7/DataSet@cs
">
                                                <span style="word-wrap: break-word;">DataSet.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/UI/LOSFormatter@cs/1/LOSFormatter@cs
">
                                                <span style="word-wrap: break-word;">LOSFormatter.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/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Speech/Src/Recognition/Grammar@cs/1/Grammar@cs
">
                                                <span style="word-wrap: break-word;">Grammar.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/CompMod/System/ComponentModel/MultilineStringConverter@cs/1305376/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/ndp/cdf/src/NetFx40/System@Activities@DurableInstancing/System/Activities/DurableInstancing/SqlWorkflowInstanceStore@cs/1305376/SqlWorkflowInstanceStore@cs
">
                                                <span style="word-wrap: break-word;">SqlWorkflowInstanceStore.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/Odbc/OdbcConnectionFactory@cs/1/OdbcConnectionFactory@cs
">
                                                <span style="word-wrap: break-word;">OdbcConnectionFactory.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/WebParts/PersonalizationEntry@cs/2/PersonalizationEntry@cs
">
                                                <span style="word-wrap: break-word;">PersonalizationEntry.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/WinForms/Managed/System/WinForms/TreeNodeClickEventArgs@cs/1/TreeNodeClickEventArgs@cs
">
                                                <span style="word-wrap: break-word;">TreeNodeClickEventArgs.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/FXUpdate3074/FXUpdate3074/1@1/DEVDIV/depot/DevDiv/releases/whidbey/QFE/ndp/fx/src/xsp/System/Web/UI/WebControls/RepeaterItemEventArgs@cs/1/RepeaterItemEventArgs@cs
">
                                                <span style="word-wrap: break-word;">RepeaterItemEventArgs.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/Runtime/Remoting/LeaseManager@cs/1305376/LeaseManager@cs
">
                                                <span style="word-wrap: break-word;">LeaseManager.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/StringResourceManager@cs/1/StringResourceManager@cs
">
                                                <span style="word-wrap: break-word;">StringResourceManager.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/WinForms/Managed/System/WinForms/Design/WinFormsComponentEditor@cs/1305376/WinFormsComponentEditor@cs
">
                                                <span style="word-wrap: break-word;">WinFormsComponentEditor.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/Xml/System/Xml/XPath/XPathNodeIterator@cs/5/XPathNodeIterator@cs
">
                                                <span style="word-wrap: break-word;">XPathNodeIterator.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/Net/System/Net/SecureProtocols/_SslState@cs/1/_SslState@cs
">
                                                <span style="word-wrap: break-word;">_SslState.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/Security/SignatureConfirmationElement@cs/1/SignatureConfirmationElement@cs
">
                                                <span style="word-wrap: break-word;">SignatureConfirmationElement.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/Configuration/System/Configuration/ConfigurationValues@cs/1305376/ConfigurationValues@cs
">
                                                <span style="word-wrap: break-word;">ConfigurationValues.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/CommonUI/System/Drawing/Advanced/Metafile@cs/1/Metafile@cs
">
                                                <span style="word-wrap: break-word;">Metafile.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/WinForms/Managed/System/Resources/ResXResourceWriter@cs/1/ResXResourceWriter@cs
">
                                                <span style="word-wrap: break-word;">ResXResourceWriter.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/AuthenticationSchemesHelper@cs/1/AuthenticationSchemesHelper@cs
">
                                                <span style="word-wrap: break-word;">AuthenticationSchemesHelper.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/FXUpdate3074/FXUpdate3074/1@1/DEVDIV/depot/DevDiv/releases/whidbey/QFE/ndp/fx/src/xsp/System/Web/UI/WebControls/TreeNodeStyle@cs/1/TreeNodeStyle@cs
">
                                                <span style="word-wrap: break-word;">TreeNodeStyle.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/System/Windows/Media/Generated/GlyphRunDrawing@cs/2/GlyphRunDrawing@cs
">
                                                <span style="word-wrap: break-word;">GlyphRunDrawing.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/Management/WebEventCodes@cs/3/WebEventCodes@cs
">
                                                <span style="word-wrap: break-word;">WebEventCodes.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/IO/Packaging/PackWebRequestFactory@cs/1/PackWebRequestFactory@cs
">
                                                <span style="word-wrap: break-word;">PackWebRequestFactory.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/WinForms/Managed/System/WinForms/HtmlElementCollection@cs/1305376/HtmlElementCollection@cs
">
                                                <span style="word-wrap: break-word;">HtmlElementCollection.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="http://dotnetframework.org/default.aspx/FXUpdate3074/FXUpdate3074/1@1/DEVDIV/depot/DevDiv/releases/whidbey/QFE/ndp/fx/src/xsp/System/Web/UI/WebControls/xml@cs/4/xml@cs
">
                                                <span style="word-wrap: break-word;">xml.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/NotImplementedException@cs/1305376/NotImplementedException@cs
">
                                                <span style="word-wrap: break-word;">NotImplementedException.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/WinForms/Managed/System/WinForms/StatusBarPanelClickEvent@cs/1/StatusBarPanelClickEvent@cs
">
                                                <span style="word-wrap: break-word;">StatusBarPanelClickEvent.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/xsp/System/Web/Extensions/ui/webcontrols/ListViewTableCell@cs/1/ListViewTableCell@cs
">
                                                <span style="word-wrap: break-word;">ListViewTableCell.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/Data/System/Data/Sql/SqlFunctionAttribute@cs/1/SqlFunctionAttribute@cs
">
                                                <span style="word-wrap: break-word;">SqlFunctionAttribute.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/EncodingTable@cs/1/EncodingTable@cs
">
                                                <span style="word-wrap: break-word;">EncodingTable.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/Documents/Typography@cs/1/Typography@cs
">
                                                <span style="word-wrap: break-word;">Typography.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/UI/WebControls/XmlDataSourceView@cs/1305376/XmlDataSourceView@cs
">
                                                <span style="word-wrap: break-word;">XmlDataSourceView.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/MIT/System/Web/UI/MobileControls/Design/AppliedDeviceFiltersEditor@cs/1305376/AppliedDeviceFiltersEditor@cs
">
                                                <span style="word-wrap: break-word;">AppliedDeviceFiltersEditor.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/Base/System/Windows/Generated/Size@cs/1/Size@cs
">
                                                <span style="word-wrap: break-word;">Size.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/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="http://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/ProcessRequestArgs@cs/1/ProcessRequestArgs@cs
">
                                                <span style="word-wrap: break-word;">ProcessRequestArgs.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/Documents/TextTreeTextBlock@cs/1/TextTreeTextBlock@cs
">
                                                <span style="word-wrap: break-word;">TextTreeTextBlock.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/IdentityModel/System/IdentityModel/CryptoHelper@cs/1/CryptoHelper@cs
">
                                                <span style="word-wrap: break-word;">CryptoHelper.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/Net/System/Net/NetworkInformation/UnicastIPAddressInformationCollection@cs/1305376/UnicastIPAddressInformationCollection@cs
">
                                                <span style="word-wrap: break-word;">UnicastIPAddressInformationCollection.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/PropertyGridInternal/GridToolTip@cs/1/GridToolTip@cs
">
                                                <span style="word-wrap: break-word;">GridToolTip.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/Xml/System/Xml/Cache/XPathNode@cs/1/XPathNode@cs
">
                                                <span style="word-wrap: break-word;">XPathNode.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/DLinq/Dlinq/SqlClient/Query/SqlDeflator@cs/1305376/SqlDeflator@cs
">
                                                <span style="word-wrap: break-word;">SqlDeflator.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/MS/Internal/ComponentModel/APCustomTypeDescriptor@cs/1/APCustomTypeDescriptor@cs
">
                                                <span style="word-wrap: break-word;">APCustomTypeDescriptor.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>