C# Класс Azavea.Open.DAO.Criteria.AbstractExpression

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

Защищенные свойства (Protected)

Свойство Тип Описание
_trueOrNot bool

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

Метод Описание
Invert ( ) : IExpression

Produces an expression that is the exact opposite of this expression. The new expression should exclude everything this one includes, and include everything this one excludes.

ToString ( ) : string
TrueOrNot ( ) : bool

This tells you whether you want things that match, or things that don't match, this expression.

Защищенные методы

Метод Описание
AbstractExpression ( bool trueOrNot ) : System

This lets you specify whether to negate this expression.

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

AbstractExpression() защищенный Метод

This lets you specify whether to negate this expression.
protected AbstractExpression ( bool trueOrNot ) : System
trueOrNot bool True means look for matches (I.E. ==), /// false means look for non-matches (I.E. !=)
Результат System

Invert() публичный абстрактный Метод

Produces an expression that is the exact opposite of this expression. The new expression should exclude everything this one includes, and include everything this one excludes.
public abstract Invert ( ) : IExpression
Результат IExpression

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

public ToString ( ) : string
Результат string

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

This tells you whether you want things that match, or things that don't match, this expression.
public TrueOrNot ( ) : bool
Результат bool

Описание свойств

_trueOrNot защищенное свойство

Holds the value indicating whether this expression is negated.
protected bool _trueOrNot
Результат bool