Esempio n. 1
0
 internal FlowType(RuntimeTypeRef type, FlowConstructor constructor) : base(type)
 {
     Constructor = constructor;
     Events      = new FlowEventSet();
     IsTopic     = this is TopicType;
     IsQuery     = this is QueryType;
     IsView      = this is ViewType;
     IsRequest   = this is RequestType;
 }
Esempio n. 2
0
 internal QueryType(RuntimeTypeRef type, FlowConstructor constructor) : base(type, constructor)
 {
 }
Esempio n. 3
0
 internal RequestType(RuntimeTypeRef type, FlowConstructor constructor) : base(type, constructor)
 {
 }
Esempio n. 4
0
 public EventType(RuntimeTypeRef type) : base(type)
 {
 }