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="https://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/xsp/System/Web/Compilation/AppSettingsExpressionBuilder@cs/1305376/AppSettingsExpressionBuilder@cs
">
                                                <span style="word-wrap: break-word;">AppSettingsExpressionBuilder.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/whidbey/NetFXspW7/ndp/clr/src/BCL/System/IO/IsolatedStorage/IsolatedStorageException@cs/1/IsolatedStorageException@cs
">
                                                <span style="word-wrap: break-word;">IsolatedStorageException.cs
</span>
                                            </a></li>

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

                                    
                                        <li style="padding:5px;"><a href="https://dotnetframework.org/default.aspx/DotNET/DotNET/8@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="https://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/whidbey/REDBITS/ndp/fx/src/Data/System/Data/Common/DbConnectionOptions@cs/2/DbConnectionOptions@cs
">
                                                <span style="word-wrap: break-word;">DbConnectionOptions.cs
</span>
                                            </a></li>

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

                                    
                                        <li style="padding:5px;"><a href="https://dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/Orcas/SP/ndp/fx/src/xsp/System/Web/Extensions/Compilation/WCFModel/ContractMapping@cs/1/ContractMapping@cs
">
                                                <span style="word-wrap: break-word;">ContractMapping.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://dotnetframework.org/default.aspx/Dotnetfx_Vista_SP2/Dotnetfx_Vista_SP2/8@0@50727@4016/DEVDIV/depot/DevDiv/releases/Orcas/QFE/ndp/fx/src/DataEntity/System/Data/SqlClient/SqlVersion@cs/2/SqlVersion@cs
">
                                                <span style="word-wrap: break-word;">SqlVersion.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/Orcas/SP/ndp/fx/src/XLinq/System/Xml/Linq/XNodeNavigator@cs/1/XNodeNavigator@cs
">
                                                <span style="word-wrap: break-word;">XNodeNavigator.cs
</span>
                                            </a></li>

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