示例#1
0
        /// <returns>A type of <seealso cref="System.Collections.Generic.IDictionary{TKey,TValue}"/>.</returns>
        public IDictionary <string, object> ReadTable()
        {
            IDictionary <string, object> result = WireFormatting.ReadTable(_memory.Slice(_memoryOffset), out int bytesRead);

            _memoryOffset += bytesRead;
            return(result);
        }
示例#2
0
        public Dictionary <string, object> ReadTable()
        {
            Dictionary <string, object> result = WireFormatting.ReadTable(Span, out int bytesRead);

            _offset += bytesRead;
            return(result);
        }
示例#3
0
 /// <returns>A type of <seealso cref="System.Collections.Generic.IDictionary{TKey,TValue}"/>.</returns>
 public IDictionary <string, object> ReadTable()
 {
     return(WireFormatting.ReadTable(BaseReader));
 }
示例#4
0
 public IDictionary ReadTable()
 {
     return(WireFormatting.ReadTable(m_reader));
 }
示例#5
0
 public IDictionary ReadTable()
 {
     ClearBits();
     return(WireFormatting.ReadTable(m_reader));
 }