Метод | Описание | |
---|---|---|
Component ( ) : System |
Initializes a new instance of the Component class.
|
|
Component ( bool updateAttributes ) : System |
Initializes a new instance of the Component class.
|
|
GetAttributeValue ( string key ) : string |
Gets the value of an attribute key.
|
|
GetAttributeValues ( string key ) : List |
Gets the value of an attribute key - splitting that delimited value into a list of strings.
|
|
InitializeAttributeValues ( System request, string rootUrl ) : void |
Method that is called before attribute values are updated. Components can override this to perform any needed initialization of attribute values.
|
|
IsAllowedByDefault ( string action ) : bool |
If a user or role is not specifically allowed or denied to perform the selected action, return
|
|
IsAuthorized ( string action, Model person ) : bool |
Return
|
|
IsPrivate ( string action, Model person ) : bool |
Determines whether the specified action is private (Only the current user has access).
|
|
MakePrivate ( string action, Model person, RockContext rockContext = null ) : void |
Makes the action on the current entity private (Only the current user will have access).
|
|
MakeUnPrivate ( string action, Model person, RockContext rockContext = null ) : void |
If action on the current entity is private, removes security that made it private.
|
|
SetAttributeValue ( string key, string value ) : void |
Sets the value of an attribute key in memory. Note, this will not persist value to database
|
|
ValidateAttributeValues ( string &errorMessage ) : bool |
Method that is called when attribute values are updated. Components can override this to perform any needed setup/validation based on current attribute values.
|
Метод | Описание | |
---|---|---|
UpdateAttributes ( ) : void |
public Component ( bool updateAttributes ) : System | ||
updateAttributes | bool | if set to |
Результат | System |
public GetAttributeValue ( string key ) : string | ||
key | string | The key. |
Результат | string |
public GetAttributeValues ( string key ) : List |
||
key | string | The key. |
Результат | List |
public InitializeAttributeValues ( System request, string rootUrl ) : void | ||
request | System | The request. |
rootUrl | string | The root URL. |
Результат | void |
public IsAllowedByDefault ( string action ) : bool | ||
action | string | The action. |
Результат | bool |
public IsAuthorized ( string action, Model person ) : bool | ||
action | string | The action. |
person | Model | The person. |
Результат | bool |
public IsPrivate ( string action, Model person ) : bool | ||
action | string | The action. |
person | Model | The person. |
Результат | bool |
public MakePrivate ( string action, Model person, RockContext rockContext = null ) : void | ||
action | string | The action. |
person | Model | The person. |
rockContext | RockContext | The rock context. |
Результат | void |
public MakeUnPrivate ( string action, Model person, RockContext rockContext = null ) : void | ||
action | string | The action. |
person | Model | The person. |
rockContext | RockContext | The rock context. |
Результат | void |
public SetAttributeValue ( string key, string value ) : void | ||
key | string | The key. |
value | string | The value. |
Результат | void |
public ValidateAttributeValues ( string &errorMessage ) : bool | ||
errorMessage | string | The error message. |
Результат | bool |