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/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Core/System/Windows/Media/Imaging/BitmapCodecInfo@cs/1/BitmapCodecInfo@cs
">
                                                <span style="word-wrap: break-word;">BitmapCodecInfo.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/CommonObjectSecurity@cs/1305376/CommonObjectSecurity@cs
">
                                                <span style="word-wrap: break-word;">CommonObjectSecurity.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/DataEntity/System/Data/EntitySqlException@cs/2/EntitySqlException@cs
">
                                                <span style="word-wrap: break-word;">EntitySqlException.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/XmlUtils/System/Xml/Xsl/XsltOld/CompiledAction@cs/1305376/CompiledAction@cs
">
                                                <span style="word-wrap: break-word;">CompiledAction.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/DataEntity/System/Data/Metadata/Edm/SimpleType@cs/1/SimpleType@cs
">
                                                <span style="word-wrap: break-word;">SimpleType.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/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Speech/Src/Internal/SrgsCompiler/State@cs/1/State@cs
">
                                                <span style="word-wrap: break-word;">State.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/Configuration/GlobalizationSection@cs/2/GlobalizationSection@cs
">
                                                <span style="word-wrap: break-word;">GlobalizationSection.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/Markup/KnownTypesHelper@cs/1305600/KnownTypesHelper@cs
">
                                                <span style="word-wrap: break-word;">KnownTypesHelper.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/FixedDSBuilder@cs/1305600/FixedDSBuilder@cs
">
                                                <span style="word-wrap: break-word;">FixedDSBuilder.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/HttpModuleCollection@cs/1/HttpModuleCollection@cs
">
                                                <span style="word-wrap: break-word;">HttpModuleCollection.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/MS/Internal/PtsHost/RowVisual@cs/1305600/RowVisual@cs
">
                                                <span style="word-wrap: break-word;">RowVisual.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/IsolatedStorage/IsolatedStorageFileStream@cs/1305376/IsolatedStorageFileStream@cs
">
                                                <span style="word-wrap: break-word;">IsolatedStorageFileStream.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/CommonUI/System/Drawing/Advanced/EncoderParameter@cs/1/EncoderParameter@cs
">
                                                <span style="word-wrap: break-word;">EncoderParameter.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/WinForms/Managed/System/WinForms/CurrencyManager@cs/1/CurrencyManager@cs
">
                                                <span style="word-wrap: break-word;">CurrencyManager.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/clr/src/BCL/System/Resources/MissingManifestResourceException@cs/1305376/MissingManifestResourceException@cs
">
                                                <span style="word-wrap: break-word;">MissingManifestResourceException.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/xsp/System/Web/Configuration/IISMapPath@cs/1/IISMapPath@cs
">
                                                <span style="word-wrap: break-word;">IISMapPath.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/Core/CSharp/System/Windows/Media/Effects/embossbitmapeffect@cs/1/embossbitmapeffect@cs
">
                                                <span style="word-wrap: break-word;">embossbitmapeffect.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/DataEntity/System/Data/Common/CommandTrees/Internal/ExpressionDumper@cs/1305376/ExpressionDumper@cs
">
                                                <span style="word-wrap: break-word;">ExpressionDumper.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/DataGridDetailsPresenterAutomationPeer@cs/1305600/DataGridDetailsPresenterAutomationPeer@cs
">
                                                <span style="word-wrap: break-word;">DataGridDetailsPresenterAutomationPeer.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/SharedDp@cs/1305600/SharedDp@cs
">
                                                <span style="word-wrap: break-word;">SharedDp.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/Documents/FixedTextContainer@cs/1/FixedTextContainer@cs
">
                                                <span style="word-wrap: break-word;">FixedTextContainer.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/MS/Internal/Controls/InkCanvasInnerCanvas@cs/1/InkCanvasInnerCanvas@cs
">
                                                <span style="word-wrap: break-word;">InkCanvasInnerCanvas.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/Policy/ApplicationTrust@cs/2/ApplicationTrust@cs
">
                                                <span style="word-wrap: break-word;">ApplicationTrust.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/Xml/System/Xml/XPath/Internal/Filter@cs/1/Filter@cs
">
                                                <span style="word-wrap: break-word;">Filter.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/MS/Internal/PtsHost/PtsCache@cs/1305600/PtsCache@cs
">
                                                <span style="word-wrap: break-word;">PtsCache.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/NetFx40/Tools/System@Activities@Presentation/System/Activities/Presentation/View/ImportedNamespaceContextItem@cs/1305376/ImportedNamespaceContextItem@cs
">
                                                <span style="word-wrap: break-word;">ImportedNamespaceContextItem.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/FrameworkElement@cs/1305600/FrameworkElement@cs
">
                                                <span style="word-wrap: break-word;">FrameworkElement.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/CommonUI/System/Drawing/Advanced/ColorMatrix@cs/2/ColorMatrix@cs
">
                                                <span style="word-wrap: break-word;">ColorMatrix.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/ManagedLibraries/Security/System/Security/Cryptography/Xml/Reference@cs/5/Reference@cs
">
                                                <span style="word-wrap: break-word;">Reference.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/infocard/Service/managed/Microsoft/InfoCards/IntermediatePolicyValidator@cs/1/IntermediatePolicyValidator@cs
">
                                                <span style="word-wrap: break-word;">IntermediatePolicyValidator.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/WebParts/WebPartTracker@cs/1305376/WebPartTracker@cs
">
                                                <span style="word-wrap: break-word;">WebPartTracker.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/IdentityModel/System/IdentityModel/Tokens/RsaSecurityKey@cs/1/RsaSecurityKey@cs
">
                                                <span style="word-wrap: break-word;">RsaSecurityKey.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/Security/Permissions/FileIOPermission@cs/1/FileIOPermission@cs
">
                                                <span style="word-wrap: break-word;">FileIOPermission.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/Net/System/Net/cookiecontainer@cs/1/cookiecontainer@cs
">
                                                <span style="word-wrap: break-word;">cookiecontainer.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="https://dotnetframework.org/default.aspx/WCF/WCF/3@5@30729@1/untmp/Orcas/SP/ndp/cdf/src/WCF/infocard/Service/managed/Microsoft/InfoCards/IssuerInformation@cs/1/IssuerInformation@cs
">
                                                <span style="word-wrap: break-word;">IssuerInformation.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/Net/System/Net/Cache/_CacheStreams@cs/1/_CacheStreams@cs
">
                                                <span style="word-wrap: break-word;">_CacheStreams.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/FileDialog_Vista_Interop@cs/4/FileDialog_Vista_Interop@cs
">
                                                <span style="word-wrap: break-word;">FileDialog_Vista_Interop.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/clr/src/BCL/System/Runtime/CompilerServices/RequiredAttributeAttribute@cs/1305376/RequiredAttributeAttribute@cs
">
                                                <span style="word-wrap: break-word;">RequiredAttributeAttribute.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/DataWeb/Server/System/Data/Services/DataServiceHost@cs/1/DataServiceHost@cs
">
                                                <span style="word-wrap: break-word;">DataServiceHost.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/ArgIterator@cs/1/ArgIterator@cs
">
                                                <span style="word-wrap: break-word;">ArgIterator.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/Runtime/InteropServices/UnknownWrapper@cs/1/UnknownWrapper@cs
">
                                                <span style="word-wrap: break-word;">UnknownWrapper.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/UICuesEvent@cs/1305376/UICuesEvent@cs
">
                                                <span style="word-wrap: break-word;">UICuesEvent.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/Data/System/Data/OleDb/PropertyInfoSet@cs/1305376/PropertyInfoSet@cs
">
                                                <span style="word-wrap: break-word;">PropertyInfoSet.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/DataEntity/System/Data/Mapping/StorageMappingItemCollection@cs/1/StorageMappingItemCollection@cs
">
                                                <span style="word-wrap: break-word;">StorageMappingItemCollection.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/Xml/System/Xml/Dom/XmlElement@cs/3/XmlElement@cs
">
                                                <span style="word-wrap: break-word;">XmlElement.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/CompMod/System/ComponentModel/CancelEventArgs@cs/1/CancelEventArgs@cs
">
                                                <span style="word-wrap: break-word;">CancelEventArgs.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/NamedPipeActivation@cs/1/NamedPipeActivation@cs
">
                                                <span style="word-wrap: break-word;">NamedPipeActivation.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/DataEntity/System/Data/Objects/DataClasses/ComplexObject@cs/1/ComplexObject@cs
">
                                                <span style="word-wrap: break-word;">ComplexObject.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/xsp/System/Web/Extensions/Script/Services/ScriptMethodAttribute@cs/1/ScriptMethodAttribute@cs
">
                                                <span style="word-wrap: break-word;">ScriptMethodAttribute.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/MS/Internal/documents/TextBoxView@cs/1/TextBoxView@cs
">
                                                <span style="word-wrap: break-word;">TextBoxView.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/Generated/DrawingContextDrawingContextWalker@cs/1305600/DrawingContextDrawingContextWalker@cs
">
                                                <span style="word-wrap: break-word;">DrawingContextDrawingContextWalker.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/Util/XMLUtil@cs/1305376/XMLUtil@cs
">
                                                <span style="word-wrap: break-word;">XMLUtil.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/clr/src/BCL/System/Security/Cryptography/DSACryptoServiceProvider@cs/1305376/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/WinForms/Managed/System/WinForms/ButtonInternal/CheckBoxStandardAdapter@cs/1305376/CheckBoxStandardAdapter@cs
">
                                                <span style="word-wrap: break-word;">CheckBoxStandardAdapter.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/Controls/Primitives/Thumb@cs/2/Thumb@cs
">
                                                <span style="word-wrap: break-word;">Thumb.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/IO/FileSystemInfo@cs/1/FileSystemInfo@cs
">
                                                <span style="word-wrap: break-word;">FileSystemInfo.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/Point3DCollectionValueSerializer@cs/1/Point3DCollectionValueSerializer@cs
">
                                                <span style="word-wrap: break-word;">Point3DCollectionValueSerializer.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/TrackBar@cs/1/TrackBar@cs
">
                                                <span style="word-wrap: break-word;">TrackBar.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/Configuration/System/Configuration/LongValidator@cs/1/LongValidator@cs
">
                                                <span style="word-wrap: break-word;">LongValidator.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/WinForms/Managed/System/WinForms/HtmlElement@cs/1/HtmlElement@cs
">
                                                <span style="word-wrap: break-word;">HtmlElement.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/HScrollBar@cs/1/HScrollBar@cs
">
                                                <span style="word-wrap: break-word;">HScrollBar.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/ColumnCollection@cs/1/ColumnCollection@cs
">
                                                <span style="word-wrap: break-word;">ColumnCollection.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/CompMod/Microsoft/Win32/UnsafeNativeMethods@cs/1305376/UnsafeNativeMethods@cs
">
                                                <span style="word-wrap: break-word;">UnsafeNativeMethods.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/Annotations/AnnotationDocumentPaginator@cs/1305600/AnnotationDocumentPaginator@cs
">
                                                <span style="word-wrap: break-word;">AnnotationDocumentPaginator.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/GeneralTransformGroup@cs/1/GeneralTransformGroup@cs
">
                                                <span style="word-wrap: break-word;">GeneralTransformGroup.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/MS/Internal/AppModel/AssemblyFilter@cs/1305600/AssemblyFilter@cs
">
                                                <span style="word-wrap: break-word;">AssemblyFilter.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/Framework/MS/Internal/PtsHost/TextFormatterHost@cs/1/TextFormatterHost@cs
">
                                                <span style="word-wrap: break-word;">TextFormatterHost.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/WinForms/Managed/System/WinForms/TreeViewCancelEvent@cs/1/TreeViewCancelEvent@cs
">
                                                <span style="word-wrap: break-word;">TreeViewCancelEvent.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/Net/System/Net/Mail/MimeMultiPart@cs/1/MimeMultiPart@cs
">
                                                <span style="word-wrap: break-word;">MimeMultiPart.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/ObjectViewListener@cs/1305376/ObjectViewListener@cs
">
                                                <span style="word-wrap: break-word;">ObjectViewListener.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/Microsoft/Win32/SafeHandles/SafeFileMappingHandle@cs/1/SafeFileMappingHandle@cs
">
                                                <span style="word-wrap: break-word;">SafeFileMappingHandle.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/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="https://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/Orcas/RTM/ndp/fx/src/xsp/System/Web/Extensions/ui/PostBackTrigger@cs/2/PostBackTrigger@cs
">
                                                <span style="word-wrap: break-word;">PostBackTrigger.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/xsp/System/Web/Configuration/HealthMonitoringSectionHelper@cs/1/HealthMonitoringSectionHelper@cs
">
                                                <span style="word-wrap: break-word;">HealthMonitoringSectionHelper.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/Input/Command/KeyGestureConverter@cs/1305600/KeyGestureConverter@cs
">
                                                <span style="word-wrap: break-word;">KeyGestureConverter.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/WinForms/System/WinForms/Design/PictureBoxDesigner@cs/1/PictureBoxDesigner@cs
">
                                                <span style="word-wrap: break-word;">PictureBoxDesigner.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/IO/Packaging/CompoundFile/UserUseLicenseDictionaryLoader@cs/1/UserUseLicenseDictionaryLoader@cs
">
                                                <span style="word-wrap: break-word;">UserUseLicenseDictionaryLoader.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/Xml/System/Xml/Cache/XPathDocumentIterator@cs/1305376/XPathDocumentIterator@cs
">
                                                <span style="word-wrap: break-word;">XPathDocumentIterator.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/DataOracleClient/System/Data/OracleClient/OracleConnectionStringBuilder@cs/1/OracleConnectionStringBuilder@cs
">
                                                <span style="word-wrap: break-word;">OracleConnectionStringBuilder.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/MS/Internal/Ink/ElementsClipboardData@cs/1/ElementsClipboardData@cs
">
                                                <span style="word-wrap: break-word;">ElementsClipboardData.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/infocard/Service/managed/Microsoft/InfoCards/FileAccessException@cs/1/FileAccessException@cs
">
                                                <span style="word-wrap: break-word;">FileAccessException.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/BadImageFormatException@cs/1/BadImageFormatException@cs
">
                                                <span style="word-wrap: break-word;">BadImageFormatException.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/Services/IO/System/IO/RenamedEventArgs@cs/1/RenamedEventArgs@cs
">
                                                <span style="word-wrap: break-word;">RenamedEventArgs.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/Security/X509CertificateRecipientServiceCredential@cs/1/X509CertificateRecipientServiceCredential@cs
">
                                                <span style="word-wrap: break-word;">X509CertificateRecipientServiceCredential.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/NativeMethods@cs/1/NativeMethods@cs
">
                                                <span style="word-wrap: break-word;">NativeMethods.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/Metadata/EdmItemError@cs/1305376/EdmItemError@cs
">
                                                <span style="word-wrap: break-word;">EdmItemError.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/Policy/StrongName@cs/2/StrongName@cs
">
                                                <span style="word-wrap: break-word;">StrongName.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/Hosting/ISAPIRuntime@cs/2/ISAPIRuntime@cs
">
                                                <span style="word-wrap: break-word;">ISAPIRuntime.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/Converters/Generated/PathFigureCollectionValueSerializer@cs/1/PathFigureCollectionValueSerializer@cs
">
                                                <span style="word-wrap: break-word;">PathFigureCollectionValueSerializer.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/Configuration/COSERVERINFO@cs/1/COSERVERINFO@cs
">
                                                <span style="word-wrap: break-word;">COSERVERINFO.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/MS/Internal/Data/XDeferredAxisSource@cs/1/XDeferredAxisSource@cs
">
                                                <span style="word-wrap: break-word;">XDeferredAxisSource.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/GlyphTypeface@cs/1/GlyphTypeface@cs
">
                                                <span style="word-wrap: break-word;">GlyphTypeface.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/MIT/System/Web/UI/MobileControls/Adapters/ChtmlPageAdapter@cs/1305376/ChtmlPageAdapter@cs
">
                                                <span style="word-wrap: break-word;">ChtmlPageAdapter.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/MIT/System/Web/UI/MobileControls/Adapters/WmlPhoneCallAdapter@cs/1305376/WmlPhoneCallAdapter@cs
">
                                                <span style="word-wrap: break-word;">WmlPhoneCallAdapter.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/UI/HtmlFormWrapper@cs/1305376/HtmlFormWrapper@cs
">
                                                <span style="word-wrap: break-word;">HtmlFormWrapper.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/Serialization/XmlSchemaProviderAttribute@cs/1/XmlSchemaProviderAttribute@cs
">
                                                <span style="word-wrap: break-word;">XmlSchemaProviderAttribute.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/DataEntity/System/Data/Map/ViewGeneration/CqlGeneration/CqlIdentifiers@cs/1/CqlIdentifiers@cs
">
                                                <span style="word-wrap: break-word;">CqlIdentifiers.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/Input/Command/MouseGestureConverter@cs/1/MouseGestureConverter@cs
">
                                                <span style="word-wrap: break-word;">MouseGestureConverter.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/UI/WebParts/WebPartConnection@cs/1305376/WebPartConnection@cs
">
                                                <span style="word-wrap: break-word;">WebPartConnection.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/Framework/System/Windows/Controls/ListBoxItem@cs/1/ListBoxItem@cs
">
                                                <span style="word-wrap: break-word;">ListBoxItem.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>