상속: IConfirmedRequest
        public static void Save(IValueSink sink, GetEventInformationRequest value)
        {
            sink.EnterSequence();
            Value <Option <ObjectId> > .Save(sink, value.LastReceivedObjectIdentifier);

            sink.LeaveSequence();
        }
예제 #2
0
 public static ConfirmedServiceRequest NewGetEventInformation(GetEventInformationRequest getEventInformation)
 {
     return new GetEventInformationWrapper(getEventInformation);
 }
 public static void Save(IValueSink sink, GetEventInformationRequest value)
 {
     sink.EnterSequence();
     Value<Option<ObjectId>>.Save(sink, value.LastReceivedObjectIdentifier);
     sink.LeaveSequence();
 }
예제 #4
0
 public GetEventInformationWrapper(GetEventInformationRequest item)
 {
     this.Item = item;
 }