public void Deserialize(IPayloadReader reader) { this.ObjectName = reader.ReadString("ObjectName"); this.ObjectId = reader.ReadGuid("ObjectId"); this.IsContainer = reader.ReadBoolean("IsContainer"); this.ETag = reader.ReadObject <ETag>("ETag"); this.Rules = reader.ReadList <SharedObjectAccessRule>("Rules"); }
public override void Deserialize(IPayloadReader reader) { base.Deserialize(reader); this.Id = reader.ReadGuid("Id"); this.Name = reader.ReadString("Name"); }
public override void Deserialize(IPayloadReader reader) { base.Deserialize(reader); this.Parent = reader.ReadObject<ParentEntry>("Parent"); this.ObjectId = reader.ReadGuid("ObjectId"); this.ApplyPayload = reader.ReadBoolean("ApplyPayload"); this.OperationSequence = reader.ReadInt32("OperationSequence"); }
public override void Deserialize(IPayloadReader reader) { base.Deserialize(reader); this.ObjectId = reader.ReadGuid("ObjectId"); }
public virtual void Deserialize(IPayloadReader reader) { // The EventType has already been read by this point this.PayloadId = reader.ReadUInt16("PayloadId"); this.ClientId = reader.ReadGuid("ClientId"); }
public override void Deserialize(IPayloadReader reader) { base.Deserialize(reader); this.Action = (PayloadAction)reader.ReadByte("Action"); this.EntryId = reader.ReadGuid("EntryId"); this.Policy = (EvictionPolicy)reader.ReadObject("Policy", EvictionPolicy.Create); }
public override void Deserialize(IPayloadReader reader) { base.Deserialize(reader); this.CollectionId = reader.ReadGuid("CollectionId"); this.CollectionName = reader.ReadString("CollectionName"); }
public override void Deserialize(IPayloadReader reader) { base.Deserialize(reader); this.AtomicOperator = (AtomicOperators)reader.ReadByte("Operator"); this.ObjectId = reader.ReadGuid("ObjectId"); this.PropertyIndex = reader.ReadInt16("PropertyIndex"); this.PropertyType = reader.ReadString("PropertyType"); this.Parameters = reader.ReadStringArray("Parameters"); }
public override void Deserialize(IPayloadReader reader) { base.Deserialize(reader); this.ETag = reader.ReadObject<ETag>("ETag"); this.ObjectId = reader.ReadGuid("ObjectId"); this.PropertyIndex = reader.ReadInt16("PropertyIndex"); this.PropertyName = reader.ReadString("PropertyName"); this.PropertyType = reader.ReadByte("PropertyType"); this.PropertyValue = reader.ReadString("PropertyValue"); }
public void Deserialize(IPayloadReader reader) { this.ClientId = reader.ReadGuid("ClientId"); this.Version = reader.ReadInt32("Version"); }
public void Deserialize(IPayloadReader reader) { this.Id = reader.ReadGuid("Id"); this.Index = reader.ReadInt32("Index"); }