WebPartDisplayMode.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 / WebParts / WebPartDisplayMode.cs / 1 / WebPartDisplayMode.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Web.UI.WebControls.WebParts { 
 
    using System;
    using System.Security.Permissions; 

    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    public abstract class WebPartDisplayMode { 

        private string _name; 
 
        protected WebPartDisplayMode(string name) {
            if (String.IsNullOrEmpty(name)) { 
                throw new ArgumentNullException("name");
            }
            _name = name;
        } 

        public virtual bool AllowPageDesign { 
            get { 
                return false;
            } 
        }

        public virtual bool AssociatedWithToolZone {
            get { 
                return false;
            } 
        } 

        public string Name { 
            get {
                return _name;
            }
        } 

        public virtual bool RequiresPersonalization { 
            get { 
                return false;
            } 
        }

        public virtual bool ShowHiddenWebParts {
            get { 
                return false;
            } 
        } 

        public virtual bool IsEnabled(WebPartManager webPartManager) { 
            return (!RequiresPersonalization || webPartManager.Personalization.IsModifiable);
        }
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Web.UI.WebControls.WebParts { 
 
    using System;
    using System.Security.Permissions; 

    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    public abstract class WebPartDisplayMode { 

        private string _name; 
 
        protected WebPartDisplayMode(string name) {
            if (String.IsNullOrEmpty(name)) { 
                throw new ArgumentNullException("name");
            }
            _name = name;
        } 

        public virtual bool AllowPageDesign { 
            get { 
                return false;
            } 
        }

        public virtual bool AssociatedWithToolZone {
            get { 
                return false;
            } 
        } 

        public string Name { 
            get {
                return _name;
            }
        } 

        public virtual bool RequiresPersonalization { 
            get { 
                return false;
            } 
        }

        public virtual bool ShowHiddenWebParts {
            get { 
                return false;
            } 
        } 

        public virtual bool IsEnabled(WebPartManager webPartManager) { 
            return (!RequiresPersonalization || webPartManager.Personalization.IsModifiable);
        }
    }
} 

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

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK