HtmlHead.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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="http://www.dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/ndp/clr/src/BCL/System/Diagnostics/ConditionalAttribute@cs/1305376/ConditionalAttribute@cs
">
                                                <span style="word-wrap: break-word;">ConditionalAttribute.cs
</span>
                                            </a></li>

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.dotnetframework.org/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/wpf/src/Base/MS/Internal/Security/RightsManagement/SafeRightsManagementQueryHandle@cs/1305600/SafeRightsManagementQueryHandle@cs
">
                                                <span style="word-wrap: break-word;">SafeRightsManagementQueryHandle.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/TrustUi/MS/Internal/documents/Application/StreamProxy@cs/1/StreamProxy@cs
">
                                                <span style="word-wrap: break-word;">StreamProxy.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.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/Model/ModelTypeConverter@cs/1305376/ModelTypeConverter@cs
">
                                                <span style="word-wrap: break-word;">ModelTypeConverter.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://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/UIAutomation/UIAutomationClient/System/Windows/Automation/SelectionPattern@cs/1/SelectionPattern@cs
">
                                                <span style="word-wrap: break-word;">SelectionPattern.cs
</span>
                                            </a></li>

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Framework/MS/Internal/PtsTable/RowSpanVector@cs/1/RowSpanVector@cs
">
                                                <span style="word-wrap: break-word;">RowSpanVector.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.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/UndoEngine@cs/1305376/UndoEngine@cs
">
                                                <span style="word-wrap: break-word;">UndoEngine.cs
</span>
                                            </a></li>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Print/Reach/Serialization/manager/ReachVisualSerializerAsync@cs/1/ReachVisualSerializerAsync@cs
">
                                                <span style="word-wrap: break-word;">ReachVisualSerializerAsync.cs
</span>
                                            </a></li>

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.dotnetframework.org/default.aspx/DotNET/DotNET/8@0/untmp/WIN_WINDOWS/lh_tools_devdiv_wpf/Windows/wcp/Framework/MS/Internal/Data/DefaultAsyncDataDispatcher@cs/1/DefaultAsyncDataDispatcher@cs
">
                                                <span style="word-wrap: break-word;">DefaultAsyncDataDispatcher.cs
</span>
                                            </a></li>

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

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

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

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

                                    
                                        <li style="padding:5px;"><a href="http://www.dotnetframework.org/default.aspx/FXUpdate3074/FXUpdate3074/1@1/untmp/whidbey/QFE/ndp/clr/src/BCL/System/Security/Policy/NetCodeGroup@cs/2/NetCodeGroup@cs
">
                                                <span style="word-wrap: break-word;">NetCodeGroup.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>