Rock.Model.GroupService.GetByIsSecurityRole C# (CSharp) 메소드

GetByIsSecurityRole() 공개 메소드

Returns an enumerable collection of Groups by their IsSecurityRole flag.
public GetByIsSecurityRole ( bool isSecurityRole ) : IQueryable
isSecurityRole bool A representing the IsSecurityRole flag value to search by.
리턴 IQueryable
        public IQueryable<Group> GetByIsSecurityRole( bool isSecurityRole )
        {
            return Queryable().Where( t => t.IsSecurityRole == isSecurityRole );
        }