HtmlHead.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.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/DEVDIV_TFS/Dev10/Releases/RTMRel/wpf/src/Core/CSharp/System/Windows/Media/Animation/Generated/DecimalKeyFrameCollection@cs/1305600/DecimalKeyFrameCollection@cs
">
                                                <span style="word-wrap: break-word;">DecimalKeyFrameCollection.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/Ink/InkSerializedFormat/HuffCodec@cs/1/HuffCodec@cs
">
                                                <span style="word-wrap: break-word;">HuffCodec.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/WinForms/Managed/System/WinForms/HtmlDocument@cs/1305376/HtmlDocument@cs
">
                                                <span style="word-wrap: break-word;">HtmlDocument.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/HttpCapabilitiesSectionHandler@cs/2/HttpCapabilitiesSectionHandler@cs
">
                                                <span style="word-wrap: break-word;">HttpCapabilitiesSectionHandler.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/System/data/design/TypedDataSetSchemaImporterExtensionFx35@cs/1/TypedDataSetSchemaImporterExtensionFx35@cs
">
                                                <span style="word-wrap: break-word;">TypedDataSetSchemaImporterExtensionFx35.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/NewXml/XPathNodePointer@cs/1305376/XPathNodePointer@cs
">
                                                <span style="word-wrap: break-word;">XPathNodePointer.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/Data/System/Data/Common/AdapterSwitches@cs/1/AdapterSwitches@cs
">
                                                <span style="word-wrap: break-word;">AdapterSwitches.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/Media3D/Generated/GeometryModel3D@cs/1305600/GeometryModel3D@cs
">
                                                <span style="word-wrap: break-word;">GeometryModel3D.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/TagPrefixAttribute@cs/1/TagPrefixAttribute@cs
">
                                                <span style="word-wrap: break-word;">TagPrefixAttribute.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/Misc/GDI/WindowsFont@cs/1/WindowsFont@cs
">
                                                <span style="word-wrap: break-word;">WindowsFont.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/UI/WebControls/SqlDataSourceCommandEventArgs@cs/1305376/SqlDataSourceCommandEventArgs@cs
">
                                                <span style="word-wrap: break-word;">SqlDataSourceCommandEventArgs.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/Core/CSharp/MS/Internal/Shaping/ShaperBuffers@cs/1/ShaperBuffers@cs
">
                                                <span style="word-wrap: break-word;">ShaperBuffers.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/Win32Providers/MS/Internal/AutomationProxies/EmptyElement@cs/1/EmptyElement@cs
">
                                                <span style="word-wrap: break-word;">EmptyElement.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/Configuration/HttpModuleActionCollection@cs/3/HttpModuleActionCollection@cs
">
                                                <span style="word-wrap: break-word;">HttpModuleActionCollection.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/Input/RawUIStateInputReport@cs/1305600/RawUIStateInputReport@cs
">
                                                <span style="word-wrap: break-word;">RawUIStateInputReport.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/MS/Internal/Text/TextLineResult@cs/1/TextLineResult@cs
">
                                                <span style="word-wrap: break-word;">TextLineResult.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/Xml/System/Xml/Base64Decoder@cs/1/Base64Decoder@cs
">
                                                <span style="word-wrap: break-word;">Base64Decoder.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/Transactions/WsatTransactionInfo@cs/1/WsatTransactionInfo@cs
">
                                                <span style="word-wrap: break-word;">WsatTransactionInfo.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/Accessible@cs/1/Accessible@cs
">
                                                <span style="word-wrap: break-word;">Accessible.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/DragCompletedEventArgs@cs/1305600/DragCompletedEventArgs@cs
">
                                                <span style="word-wrap: break-word;">DragCompletedEventArgs.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/xsp/System/Web/Compilation/ResourcesBuildProvider@cs/1/ResourcesBuildProvider@cs
">
                                                <span style="word-wrap: break-word;">ResourcesBuildProvider.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/MS/Internal/Controls/ActiveXSite@cs/1/ActiveXSite@cs
">
                                                <span style="word-wrap: break-word;">ActiveXSite.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/MS/Internal/AppModel/SiteOfOriginContainer@cs/1/SiteOfOriginContainer@cs
">
                                                <span style="word-wrap: break-word;">SiteOfOriginContainer.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/Controls/Primitives/MenuBase@cs/1/MenuBase@cs
">
                                                <span style="word-wrap: break-word;">MenuBase.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/Map/Update/Internal/RelationshipConstraintValidator@cs/1/RelationshipConstraintValidator@cs
">
                                                <span style="word-wrap: break-word;">RelationshipConstraintValidator.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/Design/EventsTab@cs/1/EventsTab@cs
">
                                                <span style="word-wrap: break-word;">EventsTab.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/NonSerializedAttribute@cs/1/NonSerializedAttribute@cs
">
                                                <span style="word-wrap: break-word;">NonSerializedAttribute.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/Designer/WinForms/System/WinForms/Design/AxParameterData@cs/1/AxParameterData@cs
">
                                                <span style="word-wrap: break-word;">AxParameterData.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/BamlMapTable@cs/1/BamlMapTable@cs
">
                                                <span style="word-wrap: break-word;">BamlMapTable.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/whidbey/REDBITS/ndp/clr/src/BCL/System/Threading/ManualResetEvent@cs/1/ManualResetEvent@cs
">
                                                <span style="word-wrap: break-word;">ManualResetEvent.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/XamlPathDataSerializer@cs/1/XamlPathDataSerializer@cs
">
                                                <span style="word-wrap: break-word;">XamlPathDataSerializer.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/Xml/System/Xml/schema/XmlSchemaInclude@cs/1/XmlSchemaInclude@cs
">
                                                <span style="word-wrap: break-word;">XmlSchemaInclude.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/CommonUI/System/Drawing/Advanced/WmfPlaceableFileHeader@cs/1305376/WmfPlaceableFileHeader@cs
">
                                                <span style="word-wrap: break-word;">WmfPlaceableFileHeader.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/Web/System/Web/Services/Discovery/DiscoveryDocumentLinksPattern@cs/1305376/DiscoveryDocumentLinksPattern@cs
">
                                                <span style="word-wrap: break-word;">DiscoveryDocumentLinksPattern.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/TabControlDesigner@cs/2/TabControlDesigner@cs
">
                                                <span style="word-wrap: break-word;">TabControlDesigner.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/FontStyleConverter@cs/1/FontStyleConverter@cs
">
                                                <span style="word-wrap: break-word;">FontStyleConverter.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/Serialization/XmlAnyElementAttribute@cs/1305376/XmlAnyElementAttribute@cs
">
                                                <span style="word-wrap: break-word;">XmlAnyElementAttribute.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/DataWebControls/System/Data/WebControls/EntityDataSourceWrapperCollection@cs/1305376/EntityDataSourceWrapperCollection@cs
">
                                                <span style="word-wrap: break-word;">EntityDataSourceWrapperCollection.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/CodeDOM/CodeStatementCollection@cs/1305376/CodeStatementCollection@cs
">
                                                <span style="word-wrap: break-word;">CodeStatementCollection.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/Activities/Designers/ServiceDesigner@cs/1305376/ServiceDesigner@cs
">
                                                <span style="word-wrap: break-word;">ServiceDesigner.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/Base/System/Windows/AttachedPropertyBrowsableWhenAttributePresentAttribute@cs/1305600/AttachedPropertyBrowsableWhenAttributePresentAttribute@cs
">
                                                <span style="word-wrap: break-word;">AttachedPropertyBrowsableWhenAttributePresentAttribute.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/Channels/ClientReliableChannelBinder@cs/1/ClientReliableChannelBinder@cs
">
                                                <span style="word-wrap: break-word;">ClientReliableChannelBinder.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/UI/SimplePropertyEntry@cs/1/SimplePropertyEntry@cs
">
                                                <span style="word-wrap: break-word;">SimplePropertyEntry.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/EnterpriseServicesHelper@cs/1/EnterpriseServicesHelper@cs
">
                                                <span style="word-wrap: break-word;">EnterpriseServicesHelper.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/QuadraticBezierSegment@cs/1/QuadraticBezierSegment@cs
">
                                                <span style="word-wrap: break-word;">QuadraticBezierSegment.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/Byte@cs/1/Byte@cs
">
                                                <span style="word-wrap: break-word;">Byte.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/HtmlEncodedRawTextWriter@cs/1/HtmlEncodedRawTextWriter@cs
">
                                                <span style="word-wrap: break-word;">HtmlEncodedRawTextWriter.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/UI/DataBindingCollection@cs/2/DataBindingCollection@cs
">
                                                <span style="word-wrap: break-word;">DataBindingCollection.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/Core/CSharp/System/Windows/Media/Imaging/WmpBitmapDecoder@cs/1/WmpBitmapDecoder@cs
">
                                                <span style="word-wrap: break-word;">WmpBitmapDecoder.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/TrustLevelCollection@cs/2/TrustLevelCollection@cs
">
                                                <span style="word-wrap: break-word;">TrustLevelCollection.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/Core/XmlCharCheckingReader@cs/1305376/XmlCharCheckingReader@cs
">
                                                <span style="word-wrap: break-word;">XmlCharCheckingReader.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/Base/System/Windows/Media/Matrix@cs/1/Matrix@cs
">
                                                <span style="word-wrap: break-word;">Matrix.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/Generated/PolyQuadraticBezierSegment@cs/1/PolyQuadraticBezierSegment@cs
">
                                                <span style="word-wrap: break-word;">PolyQuadraticBezierSegment.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/RunInstallerAttribute@cs/1/RunInstallerAttribute@cs
">
                                                <span style="word-wrap: break-word;">RunInstallerAttribute.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/Xml/System/Xml/XPath/Internal/AttributeQuery@cs/1/AttributeQuery@cs
">
                                                <span style="word-wrap: break-word;">AttributeQuery.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/EntityModel/SchemaObjectModel/ByteFacetDescriptionElement@cs/2/ByteFacetDescriptionElement@cs
">
                                                <span style="word-wrap: break-word;">ByteFacetDescriptionElement.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/Security/RoleManagerEventArgs@cs/1/RoleManagerEventArgs@cs
">
                                                <span style="word-wrap: break-word;">RoleManagerEventArgs.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/CompMod/System/Diagnostics/SourceElementsCollection@cs/1/SourceElementsCollection@cs
">
                                                <span style="word-wrap: break-word;">SourceElementsCollection.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/NavigationProgressEventArgs@cs/1305600/NavigationProgressEventArgs@cs
">
                                                <span style="word-wrap: break-word;">NavigationProgressEventArgs.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/Runtime/CompilerServices/AssemblySettingAttributes@cs/1/AssemblySettingAttributes@cs
">
                                                <span style="word-wrap: break-word;">AssemblySettingAttributes.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/NativeMethods@cs/1305376/NativeMethods@cs
">
                                                <span style="word-wrap: break-word;">NativeMethods.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/xsp/System/Web/Configuration/ProtocolsConfigurationHandler@cs/5/ProtocolsConfigurationHandler@cs
">
                                                <span style="word-wrap: break-word;">ProtocolsConfigurationHandler.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/Design/DesigntimeLicenseContextSerializer@cs/1305376/DesigntimeLicenseContextSerializer@cs
">
                                                <span style="word-wrap: break-word;">DesigntimeLicenseContextSerializer.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/NativeMethods@cs/1/NativeMethods@cs
">
                                                <span style="word-wrap: break-word;">NativeMethods.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/Odbc/OdbcConnection@cs/2/OdbcConnection@cs
">
                                                <span style="word-wrap: break-word;">OdbcConnection.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/Animation/Generated/ColorAnimationUsingKeyFrames@cs/1/ColorAnimationUsingKeyFrames@cs
">
                                                <span style="word-wrap: break-word;">ColorAnimationUsingKeyFrames.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/Base/System/Windows/Markup/ConstructorArgumentAttribute@cs/1/ConstructorArgumentAttribute@cs
">
                                                <span style="word-wrap: break-word;">ConstructorArgumentAttribute.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/Base/MS/Internal/AvTraceDetails@cs/1305600/AvTraceDetails@cs
">
                                                <span style="word-wrap: break-word;">AvTraceDetails.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/Dispatcher/QueryResultOp@cs/1/QueryResultOp@cs
">
                                                <span style="word-wrap: break-word;">QueryResultOp.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/Collections/Specialized/StringDictionary@cs/1/StringDictionary@cs
">
                                                <span style="word-wrap: break-word;">StringDictionary.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/WF/Activities/Rules/RuleEngine@cs/1305376/RuleEngine@cs
">
                                                <span style="word-wrap: break-word;">RuleEngine.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/ComponentCollection@cs/1/ComponentCollection@cs
">
                                                <span style="word-wrap: break-word;">ComponentCollection.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/Data/System/Data/SqlClient/TdsParserStateObject@cs/8/TdsParserStateObject@cs
">
                                                <span style="word-wrap: break-word;">TdsParserStateObject.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/DataWeb/Client/System/Data/Services/Client/MaterializeFromAtom@cs/4/MaterializeFromAtom@cs
">
                                                <span style="word-wrap: break-word;">MaterializeFromAtom.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/FXUpdate3074/FXUpdate3074/1@1/untmp/whidbey/QFE/ndp/clr/src/BCL/System/NotSupportedException@cs/1/NotSupportedException@cs
">
                                                <span style="word-wrap: break-word;">NotSupportedException.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/PropertyGridInternal/GridToolTip@cs/2/GridToolTip@cs
">
                                                <span style="word-wrap: break-word;">GridToolTip.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/Documents/DocumentReference@cs/1/DocumentReference@cs
">
                                                <span style="word-wrap: break-word;">DocumentReference.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/Common/SQLTypes/SQLDecimalStorage@cs/1305376/SQLDecimalStorage@cs
">
                                                <span style="word-wrap: break-word;">SQLDecimalStorage.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/SolidBrush@cs/1305376/SolidBrush@cs
">
                                                <span style="word-wrap: break-word;">SolidBrush.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/Common/Utils/CommandHelper@cs/3/CommandHelper@cs
">
                                                <span style="word-wrap: break-word;">CommandHelper.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/DLinq/Dlinq/SqlClient/Query/SqlReorderer@cs/1305376/SqlReorderer@cs
">
                                                <span style="word-wrap: break-word;">SqlReorderer.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/Base/MS/Internal/IO/Packaging/InterleavedZipPartStream@cs/1/InterleavedZipPartStream@cs
">
                                                <span style="word-wrap: break-word;">InterleavedZipPartStream.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/Update/Internal/UpdateCompiler@cs/2/UpdateCompiler@cs
">
                                                <span style="word-wrap: break-word;">UpdateCompiler.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/Policy/EvidenceBase@cs/1305376/EvidenceBase@cs
">
                                                <span style="word-wrap: break-word;">EvidenceBase.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/DBConcurrencyException@cs/1305376/DBConcurrencyException@cs
">
                                                <span style="word-wrap: break-word;">DBConcurrencyException.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/Animation/Generated/VectorAnimationUsingKeyFrames@cs/1/VectorAnimationUsingKeyFrames@cs
">
                                                <span style="word-wrap: break-word;">VectorAnimationUsingKeyFrames.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/EntityModel/SchemaObjectModel/ReferentialConstraint@cs/1305376/ReferentialConstraint@cs
">
                                                <span style="word-wrap: break-word;">ReferentialConstraint.cs
</span>
                                            </a></li>

                                    
                                        <li style="padding:5px;"><a href="https://www.dotnetframework.org/default.aspx/FXUpdate3074/FXUpdate3074/1@1/untmp/whidbey/QFE/ndp/clr/src/BCL/System/Reflection/Emit/SymbolType@cs/3/SymbolType@cs
">
                                                <span style="word-wrap: break-word;">SymbolType.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/Serialization/SerializationEventsCache@cs/1/SerializationEventsCache@cs
">
                                                <span style="word-wrap: break-word;">SerializationEventsCache.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/MS/Internal/PtsHost/BreakRecordTable@cs/1/BreakRecordTable@cs
">
                                                <span style="word-wrap: break-word;">BreakRecordTable.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/MS/Internal/TextFormatting/CultureMapper@cs/2/CultureMapper@cs
">
                                                <span style="word-wrap: break-word;">CultureMapper.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/Compilation/BuildProvider@cs/1/BuildProvider@cs
">
                                                <span style="word-wrap: break-word;">BuildProvider.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/Core/CSharp/System/Windows/Media/FontFamilyValueSerializer@cs/1/FontFamilyValueSerializer@cs
">
                                                <span style="word-wrap: break-word;">FontFamilyValueSerializer.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/Shared/MS/Win32/NativeMethodsOther@cs/1305600/NativeMethodsOther@cs
">
                                                <span style="word-wrap: break-word;">NativeMethodsOther.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/Net/System/Net/NetworkInformation/NetworkInformationException@cs/1/NetworkInformationException@cs
">
                                                <span style="word-wrap: break-word;">NetworkInformationException.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/Core/CSharp/System/Windows/Media/Generated/TransformConverter@cs/1305600/TransformConverter@cs
">
                                                <span style="word-wrap: break-word;">TransformConverter.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/IO/PinnedBufferMemoryStream@cs/1/PinnedBufferMemoryStream@cs
">
                                                <span style="word-wrap: break-word;">PinnedBufferMemoryStream.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/ScriptDescriptor@cs/1305376/ScriptDescriptor@cs
">
                                                <span style="word-wrap: break-word;">ScriptDescriptor.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/UI/WebParts/PersonalizationAdministration@cs/1305376/PersonalizationAdministration@cs
">
                                                <span style="word-wrap: break-word;">PersonalizationAdministration.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/CodeDOM/CodeAttributeArgumentCollection@cs/1/CodeAttributeArgumentCollection@cs
">
                                                <span style="word-wrap: break-word;">CodeAttributeArgumentCollection.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>