HtmlHead.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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;
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// <copyright file="HtmlHead.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
//----------------------------------------------------------------------------- 

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;
        }
    }
 
    /// <devdoc>
    /// Represents the HEAD element. 
    /// </devdoc> 
    [
    ControlBuilderAttribute(typeof(HtmlHeadBuilder)), 
    AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)
    ]
    public sealed class HtmlHead : HtmlGenericControl {
 
        private StyleSheetInternal _styleSheet;
        private HtmlTitle _title; 
        private String _cachedTitleText; 

        /// <devdoc> 
        /// Initializes an instance of an HtmlHead class.
        /// </devdoc>
        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;
            } 
        } 

        /// <internalonly/> 
        /// <devdoc>
        /// Allows the HEAD element to register itself with the page.
        /// </devdoc>
        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; 
            }
        } 

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                Page page = _owner.Page; 

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

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

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

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

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

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

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        </pre>

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

                            This book is available now!<br>

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

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

                            <script type="text/javascript"><!--
                                google_ad_client = "pub-6435000594396515";
                                /* network.programming-in.net */
                                google_ad_slot = "3902760999";
                                google_ad_width = 160;
                                google_ad_height = 600;
                                //-->
                            </script>
                            <script type="text/javascript"
                                    src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
                            </script>
                            <ul>
                                
                                        <li style="padding:5px;"><a href="https://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/DLinq/Dlinq/SqlClient/Query/SqlColumnizer@cs/1305376/SqlColumnizer@cs
">
                                                <span style="word-wrap: break-word;">SqlColumnizer.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/Orcas/RTM/ndp/fx/src/xsp/System/Web/Extensions/ui/RegisteredScript@cs/1/RegisteredScript@cs
">
                                                <span style="word-wrap: break-word;">RegisteredScript.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/wpf/src/Shared/MS/Win32/unsafenativemethodsother@cs/1483140/unsafenativemethodsother@cs
">
                                                <span style="word-wrap: break-word;">unsafenativemethodsother.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/fx/src/SystemNet/Net/PeerToPeer/Collaboration/PeerInvitationResponse@cs/1305376/PeerInvitationResponse@cs
">
                                                <span style="word-wrap: break-word;">PeerInvitationResponse.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="https://dotnetframework.org/default.aspx/Net/Net/3@5@50727@3053/DEVDIV/depot/DevDiv/releases/Orcas/SP/wpf/src/Framework/System/Windows/Automation/Peers/ListBoxItemAutomationPeer@cs/1/ListBoxItemAutomationPeer@cs
">
                                                <span style="word-wrap: break-word;">ListBoxItemAutomationPeer.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>