Exemplo n.º 1
0
 /// <summary>
 /// Reads the BodyID from an IValueReader.
 /// </summary>
 /// <param name="valueReader">IValueReader to read the BodyID from.</param>
 /// <param name="name">The unique name of the value to read.</param>
 /// <returns>The BodyID read from the IValueReader.</returns>
 public static BodyID ReadBodyID(this IValueReader valueReader, string name)
 {
     return(BodyID.Read(valueReader, name));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Reads the BodyID from an <see cref="IDataRecord"/>.
 /// </summary>
 /// <param name="r"><see cref="IDataRecord"/> to read the BodyID from.</param>
 /// <param name="name">The name of the field to read the value from.</param>
 /// <returns>The BodyID read from the <see cref="IDataRecord"/>.</returns>
 public static BodyID GetBodyID(this IDataRecord r, string name)
 {
     return(BodyID.Read(r, name));
 }
Exemplo n.º 3
0
 /// <summary>
 /// Reads the BodyID from a BitStream.
 /// </summary>
 /// <param name="bitStream">BitStream to read the BodyID from.</param>
 /// <returns>The BodyID read from the BitStream.</returns>
 public static BodyID ReadBodyID(this BitStream bitStream)
 {
     return(BodyID.Read(bitStream));
 }
Exemplo n.º 4
0
 /// <summary>
 /// Reads the BodyID from an <see cref="IDataRecord"/>.
 /// </summary>
 /// <param name="r"><see cref="IDataRecord"/> to read the BodyID from.</param>
 /// <param name="i">The field index to read.</param>
 /// <returns>The BodyID read from the <see cref="IDataRecord"/>.</returns>
 public static BodyID GetBodyID(this IDataRecord r, int i)
 {
     return(BodyID.Read(r, i));
 }