WebPartAuthorizationEventArgs Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides data for the AuthorizeWebPart event.
public ref class WebPartAuthorizationEventArgs : EventArgs
public class WebPartAuthorizationEventArgs : EventArgs
type WebPartAuthorizationEventArgs = class
inherit EventArgs
Public Class WebPartAuthorizationEventArgs
Inherits EventArgs
- Inheritance
Remarks
The AuthorizeWebPart event occurs before a WebPart control is added to a page. There are a number of common scenarios where a control can be added to a page. For a full description of these, see the Remarks section for the WebPartManager.IsAuthorized method.
The WebPartAuthorizationEventArgs class provides access to properties about the Web Parts control being added to the page. When a control is added, it must be checked to see whether its AuthorizationFilter property has been set and, if so, whether the control is authorized to be added to the page.
Constructors
WebPartAuthorizationEventArgs(Type, String, String, Boolean) |
Initializes a new instance of the WebPartAuthorizationEventArgs class. |
Properties
AuthorizationFilter |
Gets the string value assigned to the AuthorizationFilter property of a WebPart control, used for authorizing whether a control can be added to a page. |
IsAuthorized |
Gets or sets the value indicating whether a Web Parts control can be added to a page. |
IsShared |
Gets a value that indicates whether a Web Parts control is visible to all users of a Web Parts page. |
Path |
Gets the relative application path to the source file for the control being authorized, if the control is a user control. |
Type |
Gets the Type of the Web Parts control being checked for authorization. |
Methods
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |