Пример #1
0
 public ExecutionContextProfile(global::omg.org.RTC.ExecutionContextProfile source)
 {
     _Kind = (ReactiveRTM.RTC.ExecutionKind)source.kind;
     _Rate = source.rate;
     _Owner = new ReactiveRTM.RTC.RTObjectStub(source.owner);
     _Participants = source.participants.Select(x => (ReactiveRTM.RTC.RTObject)new ReactiveRTM.RTC.RTObjectStub(x)).ToList();
     _Properties = Converter.NVListToDictionary(source.properties);
 }
Пример #2
0
 public ExecutionContextProfile()
 {
     _Kind = new ReactiveRTM.RTC.ExecutionKind();
     _Rate = new System.Double();
     _Owner = default(ReactiveRTM.RTC.RTObject);
     _Participants = new List<ReactiveRTM.RTC.RTObject>();
     _Properties = new Dictionary<string,object>();
 }