Ejemplo n.º 1
0
 void IMessage.ReallocateTextBuffer(IStringSliceReallocator alloc)
 {
     text      = alloc.Reallocate(text);
     textML    = null;
     rawText   = alloc.Reallocate(rawText);
     rawTextML = null;
 }
Ejemplo n.º 2
0
 protected override void DoReallocateTextBuffer(IStringSliceReallocator alloc)
 {
     base.DoReallocateTextBuffer(alloc);
     message = alloc.Reallocate(message);
 }
Ejemplo n.º 3
0
 void IMessage.ReallocateTextBuffer(IStringSliceReallocator alloc)
 {
     DoReallocateTextBuffer(alloc);
 }
Ejemplo n.º 4
0
 protected virtual void DoReallocateTextBuffer(IStringSliceReallocator alloc)
 {
     rawText = alloc.Reallocate(rawText);
 }