C# Класс Rock.Extension.Component

Наследование: Rock.Attribute.IHasAttributes
Показать файл Открыть проект

Открытые методы

Метод Описание
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 true if they should be allowed anyway or false if not.

IsAuthorized ( string action, Model person ) : bool

Return true if the user is authorized to perform the selected action on this object.

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

Описание методов

Component() публичный Метод

Initializes a new instance of the Component class.
public Component ( ) : System
Результат System

Component() публичный Метод

Initializes a new instance of the Component class.
public Component ( bool updateAttributes ) : System
updateAttributes bool if set to true [update attributes].
Результат System

GetAttributeValue() публичный Метод

Gets the value of an attribute key.
public GetAttributeValue ( string key ) : string
key string The key.
Результат string

GetAttributeValues() публичный Метод

Gets the value of an attribute key - splitting that delimited value into a list of strings.
public GetAttributeValues ( string key ) : List
key string The key.
Результат List

InitializeAttributeValues() публичный Метод

Method that is called before attribute values are updated. Components can override this to perform any needed initialization of attribute values.
public InitializeAttributeValues ( System request, string rootUrl ) : void
request System The request.
rootUrl string The root URL.
Результат void

IsAllowedByDefault() публичный Метод

If a user or role is not specifically allowed or denied to perform the selected action, return true if they should be allowed anyway or false if not.
public IsAllowedByDefault ( string action ) : bool
action string The action.
Результат bool

IsAuthorized() публичный Метод

Return true if the user is authorized to perform the selected action on this object.
public IsAuthorized ( string action, Model person ) : bool
action string The action.
person Model The person.
Результат bool

IsPrivate() публичный Метод

Determines whether the specified action is private (Only the current user has access).
public IsPrivate ( string action, Model person ) : bool
action string The action.
person Model The person.
Результат bool

MakePrivate() публичный Метод

Makes the action on the current entity private (Only the current user will have access).
public MakePrivate ( string action, Model person, RockContext rockContext = null ) : void
action string The action.
person Model The person.
rockContext RockContext The rock context.
Результат void

MakeUnPrivate() публичный Метод

If action on the current entity is private, removes security that made it private.
public MakeUnPrivate ( string action, Model person, RockContext rockContext = null ) : void
action string The action.
person Model The person.
rockContext RockContext The rock context.
Результат void

SetAttributeValue() публичный Метод

Sets the value of an attribute key in memory. Note, this will not persist value to database
public SetAttributeValue ( string key, string value ) : void
key string The key.
value string The value.
Результат void

ValidateAttributeValues() публичный Метод

Method that is called when attribute values are updated. Components can override this to perform any needed setup/validation based on current attribute values.
public ValidateAttributeValues ( string &errorMessage ) : bool
errorMessage string The error message.
Результат bool