Example #1
0
 public override void Read(BinaryReader reader)
 {
     reader.ReadInt32();
     this._uploadState = (OutboundAttachmentUploadState)reader.ReadInt32();
     this._video       = reader.ReadGeneric <VKClient.Common.Backend.DataObjects.Video>();
 }
Example #2
0
 public OutboundVideoAttachment(VKClient.Common.Backend.DataObjects.Video video)
 {
     this._uploadState = OutboundAttachmentUploadState.Completed;
     this._video       = video;
 }