/// <summary>
 /// Initializes a new instance of the <see cref="StringPropertyProxy"/> struct.
 /// </summary>
 public StringPropertyProxy(BulkResponsePool pool)
 {
     mPool   = pool;
     mData   = null;
     mIndex  = 0;
     mLength = 0;
     mCache  = false;
     mString = null;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BulkResponse.Item_Index"/> class.
 /// </summary>
 /// <param name="pool">The pool managing the response and its resources.</param>
 internal Item_Index(BulkResponsePool pool)
 {
     mPool = pool;
     Reset();                 // init pool references in proxies
 }