Exemplo n.º 1
0
 public CciCommand Return(CciResultType type)
 {
     return(Return(type, null));
 }
Exemplo n.º 2
0
 public CciResult(CciResultType type) : this(type, null)
 {
 }
Exemplo n.º 3
0
 public CciCommand Return(CciResultType type, Object value)
 {
     return(Return(new CciResult(type, value)));
 }
Exemplo n.º 4
0
 public CciResult(CciResultType type, Object value)
 {
     _type  = type;
     _value = value;
 }