You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@ -0,0 +1,59 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="WebPartAuthorizationEventArgs.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace System.Web.UI.WebControls.WebParts {
|
||||
|
||||
using System;
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user