Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartAuthorizationEventArgs.cs / 1 / WebPartAuthorizationEventArgs.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 class WebPartAuthorizationEventArgs : EventArgs {
private Type _type;
private string _path;
private string _authorizationFilter;
private bool _isShared;
private bool _isAuthorized;
public WebPartAuthorizationEventArgs(Type type, string path, string authorizationFilter, bool isShared) {
_type = type;
_path = path;
_authorizationFilter = authorizationFilter;
_isShared = isShared;
_isAuthorized = true;
}
public string AuthorizationFilter {
get {
return _authorizationFilter;
}
}
public bool IsAuthorized {
get {
return _isAuthorized;
}
set {
_isAuthorized = value;
}
}
public bool IsShared {
get {
return _isShared;
}
}
public string Path {
get {
return _path;
}
}
public Type Type {
get {
return _type;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebConfigurationManager.cs
- TemplatedMailWebEventProvider.cs
- DbParameterCollectionHelper.cs
- SqlLiftWhereClauses.cs
- Normalization.cs
- AlternateViewCollection.cs
- MenuItem.cs
- InternalsVisibleToAttribute.cs
- PrivacyNoticeBindingElement.cs
- WindowsScrollBar.cs
- RealProxy.cs
- MaskedTextProvider.cs
- BamlLocalizer.cs
- GridViewCommandEventArgs.cs
- OrderByLifter.cs
- TextViewSelectionProcessor.cs
- UnsafeNetInfoNativeMethods.cs
- TreeWalkHelper.cs
- FilteredDataSetHelper.cs
- XmlDictionaryWriter.cs
- Nodes.cs
- RecognitionResult.cs
- WebPartMenu.cs
- WebUtil.cs
- embossbitmapeffect.cs
- TextPattern.cs
- DeflateEmulationStream.cs
- DataGridRowDetailsEventArgs.cs
- SqlInternalConnectionTds.cs
- PropertyConverter.cs
- SqlDependencyUtils.cs
- Flattener.cs
- OdbcDataReader.cs
- XmlUTF8TextWriter.cs
- RadioButtonPopupAdapter.cs
- DataTemplate.cs
- ToolStripMenuItem.cs
- XPathChildIterator.cs
- RequestSecurityTokenResponseCollection.cs
- DataRelationPropertyDescriptor.cs
- COAUTHINFO.cs
- RtfNavigator.cs
- NativeMethods.cs
- RelatedView.cs
- ProjectionQueryOptionExpression.cs
- MessageDescription.cs
- MatcherBuilder.cs
- SrgsOneOf.cs
- CodeSnippetStatement.cs
- URIFormatException.cs
- ProcessModule.cs
- BamlRecordWriter.cs
- CssTextWriter.cs
- FlowLayoutSettings.cs
- MdiWindowListItemConverter.cs
- HtmlTextArea.cs
- InfoCardSchemas.cs
- ProfileProvider.cs
- SmtpFailedRecipientException.cs
- ComboBoxDesigner.cs
- filewebrequest.cs
- FormClosedEvent.cs
- XmlCharCheckingWriter.cs
- TemplateBindingExtension.cs
- ConditionCollection.cs
- BuildResultCache.cs
- SrgsRuleRef.cs
- FileLevelControlBuilderAttribute.cs
- IdentifierElement.cs
- BrushValueSerializer.cs
- MULTI_QI.cs
- Mouse.cs
- FontStyleConverter.cs
- Aes.cs
- _NegotiateClient.cs
- OdbcCommand.cs
- TranslateTransform3D.cs
- Intellisense.cs
- SchemaNames.cs
- ValidatorCollection.cs
- SelectingProviderEventArgs.cs
- AdapterUtil.cs
- ServiceDescriptionSerializer.cs
- ReaderOutput.cs
- HttpModuleCollection.cs
- SqlMethodTransformer.cs
- VisualBrush.cs
- WebBrowser.cs
- EndEvent.cs
- ControlEvent.cs
- TextParagraph.cs
- UserControlBuildProvider.cs
- HttpHeaderCollection.cs
- RuntimeCompatibilityAttribute.cs
- ProcessHostMapPath.cs
- EntryIndex.cs
- EventLogPermissionEntryCollection.cs
- METAHEADER.cs
- WindowsRegion.cs
- SubMenuStyleCollection.cs