C# 클래스 Rock.Model.TagService

Service/Data access class for Rock.Model.Tag entity objects.
파일 보기 프로젝트 열기: NewSpring/Rock 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

Get() 공개 메소드

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.
리턴 IQueryable

Get() 공개 메소드

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 .
리턴 Tag