HtmlHead.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlHead.cs / 1 / 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;
    }
}


                        </pre>

                        </p>
                        <script type="text/javascript">
                            SyntaxHighlighter.all()
                        </script>
                        </pre>
                    </div>
                    <div class="col-sm-3" style="border: 1px solid #81919f;border-radius: 10px;">
                        <h3 style="background-color:#7899a0;margin-bottom: 5%;">Link Menu</h3>
                        <a href="http://www.amazon.com/exec/obidos/ASIN/1555583156/httpnetwoprog-20">
                            <img width="192" height="237" border="0" class="img-responsive" alt="Network programming in C#, Network Programming in VB.NET, Network Programming in .NET" src="/images/book.jpg"></a><br>
                        <span class="copy">

                            This book is available now!<br>

                            <a style="text-decoration: underline; font-family: Verdana,Geneva,Arial,Helvetica,sans-serif; color: Red; font-size: 11px; font-weight: bold;" href="http://www.amazon.com/exec/obidos/ASIN/1555583156/httpnetwoprog-20"> Buy at Amazon US</a> or <br>

                            <a style="text-decoration: underline; font-family: Verdana,Geneva,Arial,Helvetica,sans-serif; color: Red; font-size: 11px; font-weight: bold;" href="http://www.amazon.co.uk/exec/obidos/ASIN/1555583156/wwwxamlnet-21"> Buy at Amazon UK</a> <br>
                            <br>

                            <script type="text/javascript"><!--
                                google_ad_client = "pub-6435000594396515";
                                /* network.programming-in.net */
                                google_ad_slot = "3902760999";
                                google_ad_width = 160;
                                google_ad_height = 600;
                                //-->
                            </script>
                            <script type="text/javascript"
                                    src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
                            </script>
                            <ul>
                                
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/4@0/4@0/untmp/DEVDIV_TFS/Dev10/Releases/RTMRel/wpf/src/Framework/System/Windows/DependencyPropertyHelper@cs/1305600/DependencyPropertyHelper@cs
">
                                                <span style="word-wrap: break-word;">DependencyPropertyHelper.cs
</span>
                                            </a></li>

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/Orcas/NetFXw7/ndp/fx/src/DataWeb/Server/System/Data/Services/ExpandSegmentCollection@cs/1/ExpandSegmentCollection@cs
">
                                                <span style="word-wrap: break-word;">ExpandSegmentCollection.cs
</span>
                                            </a></li>

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

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

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/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://www.dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/wpf/src/Framework/System/Windows/Controls/Primitives/Thumb@cs/1305600/Thumb@cs
">
                                                <span style="word-wrap: break-word;">Thumb.cs
</span>
                                            </a></li>

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

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/Orcas/SP/ndp/fx/src/DataEntity/System/Data/Map/ViewGeneration/Validation/errorpatternmatcher@cs/3/errorpatternmatcher@cs
">
                                                <span style="word-wrap: break-word;">errorpatternmatcher.cs
</span>
                                            </a></li>

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

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

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/Orcas/NetFXw7/ndp/fx/src/DataEntity/System/Data/Common/CommandTrees/Internal/CommandTreeTypeHelper@cs/1/CommandTreeTypeHelper@cs
">
                                                <span style="word-wrap: break-word;">CommandTreeTypeHelper.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/Orcas/NetFXw7/wpf/src/Framework/System/Windows/Documents/CompositionAdorner@cs/1/CompositionAdorner@cs
">
                                                <span style="word-wrap: break-word;">CompositionAdorner.cs
</span>
                                            </a></li>

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/Orcas/NetFXw7/wpf/src/Framework/System/Windows/Automation/Peers/InkPresenterAutomationPeer@cs/1/InkPresenterAutomationPeer@cs
">
                                                <span style="word-wrap: break-word;">InkPresenterAutomationPeer.cs
</span>
                                            </a></li>

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/FX-1434/FX-1434/1@0/untmp/whidbey/REDBITS/ndp/clr/src/BCL/System/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://www.dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/cdf/src/WF/Common/AuthoringOM/Behaviors/CompensateDesigner@cs/1305376/CompensateDesigner@cs
">
                                                <span style="word-wrap: break-word;">CompensateDesigner.cs
</span>
                                            </a></li>

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/Dotnetfx_Win7_3@5@1/Dotnetfx_Win7_3@5@1/3@5@1/DEVDIV/depot/DevDiv/releases/Orcas/NetFXw7/wpf/src/Core/CSharp/System/Windows/CultureInfoConverter@cs/1/CultureInfoConverter@cs
">
                                                <span style="word-wrap: break-word;">CultureInfoConverter.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/AccessibleTech/longhorn/Automation/UIAutomationClient/MS/Internal/Automation/WindowHideOrCloseTracker@cs/1/WindowHideOrCloseTracker@cs
">
                                                <span style="word-wrap: break-word;">WindowHideOrCloseTracker.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Core/MS/Internal/IO/Packaging/NetStream@cs/2/NetStream@cs
">
                                                <span style="word-wrap: break-word;">NetStream.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/whidbey/REDBITS/ndp/fx/src/Misc/GDI/DeviceContext@cs/3/DeviceContext@cs
">
                                                <span style="word-wrap: break-word;">DeviceContext.cs
</span>
                                            </a></li>

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/Orcas/SP/ndp/fx/src/DataEntity/System/Data/EntityClient/EntityDataReader@cs/4/EntityDataReader@cs
">
                                                <span style="word-wrap: break-word;">EntityDataReader.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/Dotnetfx_Vista_SP2/Dotnetfx_Vista_SP2/8@0@50727@4016/DEVDIV/depot/DevDiv/releases/Orcas/QFE/ndp/fx/src/xsp/System/Web/Extensions/Compilation/WCFModel/SvcMapFile@cs/1/SvcMapFile@cs
">
                                                <span style="word-wrap: break-word;">SvcMapFile.cs
</span>
                                            </a></li>

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

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/DataEntity/System/Data/Mapping/ObjectPropertyMapping@cs/1305376/ObjectPropertyMapping@cs
">
                                                <span style="word-wrap: break-word;">ObjectPropertyMapping.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>