Ejemplo n.º 1
0
 public Context(T o, BinaryOffset position, BinarySize length)
 {
     StreamPosition = position;
     Object         = o;
     StreamLength   = length;
 }
Ejemplo n.º 2
0
 public CollectionMemberContext(T collection, TMember value, Int32 index, BinaryOffset position, BinarySize length)
     : base(collection, value, position, length)
 {
     Index = index;
 }
Ejemplo n.º 3
0
 public MemberContext(T o, TMember value, BinaryOffset position, BinarySize length)
     : base(o, position, length)
 {
     Value = value;
 }