public virtual void ProcessAspectOnMissingClass(ClassAspect aspect, int currentSlot ) { if (_marshallingInfo.IsNull(currentSlot)) { return; } aspect.IncrementOffset(_marshallingInfo.Buffer()); }
protected override void ProcessAspect(ClassAspect curField, int currentSlot, bool isNull) { if (curField == aspect) { found.value = !isNull; this.Cancel(); return; } if (!isNull) { curField.IncrementOffset(this._marshallingInfo.Buffer(), context); } }
protected override void ProcessAspect(ClassAspect aspect, int currentSlot, bool isNull ) { if (aspect is FieldMetadata) { FieldMetadata field = (FieldMetadata)aspect; if (isNull) { field.AddIndexEntry(context.Transaction(), context.ObjectId(), null); } else { field.AddFieldIndex(context); } } else { aspect.IncrementOffset(context.Buffer(), context); } }
protected override void ProcessAspect(ClassAspect aspect, int currentSlot, bool isNull ) { if (!isNull) { if (aspect is VirtualFieldMetadata) { ((VirtualFieldMetadata)aspect).ReadVirtualAttribute(context); } else { aspect.IncrementOffset(context, context); } } }
protected override void ProcessAspect(ClassAspect aspect, int currentSlot, bool isNull ) { if (isNull) { return; } if (this._enclosing.IsCollectIdTypehandlerAspect(aspect)) { aspectFound.value = true; aspect.CollectIDs(subContext); } else { aspect.IncrementOffset(subContext, subContext); } }
protected override void ProcessAspect(ClassAspect aspect, int currentSlot, bool isNull ) { if (isNull) { return; } if (predicate.Match(aspect)) { aspect.CollectIDs(context); } else { aspect.IncrementOffset(context, context); } }