C# Class Rock.Model.TagService

Service/Data access class for Rock.Model.Tag entity objects.
Mostrar archivo Open project: NewSpring/Rock Class Usage Examples

Public Methods

Method Description
Get ( int entityTypeId, string entityQualifierColumn, string entityQualifierValue, int ownerId ) : IQueryable

Returns a queryable collection of Tags by EntityType, Qualifier Column, Qualifier Value and Owner.

Get ( int entityTypeId, string entityQualifierColumn, string entityQualifierValue, int ownerId, string name ) : Tag

Returns an Rock.Model.Tag by EntityType, Qualifier Column, Qualifier Value, Owner and Tag Name.

Method Details

Get() public method

Returns a queryable collection of Tags by EntityType, Qualifier Column, Qualifier Value and Owner.
public Get ( int entityTypeId, string entityQualifierColumn, string entityQualifierValue, int ownerId ) : IQueryable
entityTypeId int A representing the EntityTypeID of the of the entities that are eligible for the .
entityQualifierColumn string A that represents the EntityQualifierColumn of the . This value can be null.
entityQualifierValue string A that represents the EntityQualifierValue of the . This value can be null.
ownerId int A representing the owner's PersonId. If the is public this value can be null.
return IQueryable

Get() public method

Returns an Rock.Model.Tag by EntityType, Qualifier Column, Qualifier Value, Owner and Tag Name.
public Get ( int entityTypeId, string entityQualifierColumn, string entityQualifierValue, int ownerId, string name ) : Tag
entityTypeId int A representing the EntityTypeID of the of entities that are eligible for the .
entityQualifierColumn string A representing the EntityQualifierColumn of the . /// If the does not have a EntityQualifierColumn associated with it, this value can be null.
entityQualifierValue string A representing the EntityQualifierValue of the . /// If the does not have a EntityQualifierValue associated with it, this value can be null.
ownerId int A representing the owner's PersonId.
name string A representing the Name of the .
return Tag