Пример #1
0
 /// <summary>
 /// Reads the <see cref="NPCChatDialogID"/> from an IValueReader.
 /// </summary>
 /// <param name="valueReader"><see cref="IValueReader"/> to read the <see cref="NPCChatDialogID"/> from.</param>
 /// <param name="name">The unique name of the value to read.</param>
 /// <returns>The <see cref="NPCChatDialogID"/> read from the IValueReader.</returns>
 public static NPCChatDialogID ReadNPCChatDialogID(this IValueReader valueReader, string name)
 {
     return(NPCChatDialogID.Read(valueReader, name));
 }
Пример #2
0
 /// <summary>
 /// Reads the <see cref="NPCChatDialogID"/> from an <see cref="IDataRecord"/>.
 /// </summary>
 /// <param name="r"><see cref="IDataRecord"/> to read the <see cref="NPCChatDialogID"/> from.</param>
 /// <param name="name">The name of the field to read the value from.</param>
 /// <returns>The <see cref="NPCChatDialogID"/> read from the <see cref="IDataRecord"/>.</returns>
 public static NPCChatDialogID GetNPCChatDialogID(this IDataRecord r, string name)
 {
     return(NPCChatDialogID.Read(r, name));
 }
Пример #3
0
 /// <summary>
 /// Reads the <see cref="NPCChatDialogID"/> from a <see cref="BitStream"/>.
 /// </summary>
 /// <param name="bitStream"><see cref="BitStream"/> to read the <see cref="NPCChatDialogID"/> from.</param>
 /// <returns>The <see cref="NPCChatDialogID"/> read from the <see cref="BitStream"/>.</returns>
 public static NPCChatDialogID ReadNPCChatDialogID(this BitStream bitStream)
 {
     return(NPCChatDialogID.Read(bitStream));
 }
Пример #4
0
 /// <summary>
 /// Reads the <see cref="NPCChatDialogID"/> from an <see cref="IDataRecord"/>.
 /// </summary>
 /// <param name="r"><see cref="IDataRecord"/> to read the <see cref="NPCChatDialogID"/> from.</param>
 /// <param name="i">The field index to read.</param>
 /// <returns>The <see cref="NPCChatDialogID"/> read from the <see cref="IDataRecord"/>.</returns>
 public static NPCChatDialogID GetNPCChatDialogID(this IDataRecord r, int i)
 {
     return(NPCChatDialogID.Read(r, i));
 }