Exemple #1
0
 /// <summary>
 ///   Gets the <see cref="System.Object" /> with the specified name.
 /// </summary>
 /// <value> The <see cref="System.Object" /> . </value>
 /// <param name="name"> The name. </param>
 /// <returns> </returns>
 public object this[string name]
 {
     get
     {
         CqlColumn column = Schema[name];
         return(column.Deserialize(CurrentValues[column.Index]));
     }
 }
Exemple #2
0
 /// <summary>
 ///   Gets the <see cref="System.Object" /> at the specified index.
 /// </summary>
 /// <value> The <see cref="System.Object" /> . </value>
 /// <param name="index"> The index. </param>
 /// <returns> </returns>
 public object this[int index]
 {
     get
     {
         CqlColumn column = Schema[index];
         return(column.Deserialize(CurrentValues[index]));
     }
 }