コード例 #1
0
ファイル: NPCChatDialogItemID.cs プロジェクト: wtfcolt/game
 /// <summary>
 /// Reads the <see cref="NPCChatDialogItemID"/> from an IValueReader.
 /// </summary>
 /// <param name="valueReader"><see cref="IValueReader"/> to read the <see cref="NPCChatDialogItemID"/> from.</param>
 /// <param name="name">The unique name of the value to read.</param>
 /// <returns>The <see cref="NPCChatDialogItemID"/> read from the IValueReader.</returns>
 public static NPCChatDialogItemID ReadNPCChatDialogItemID(this IValueReader valueReader, string name)
 {
     return(NPCChatDialogItemID.Read(valueReader, name));
 }
コード例 #2
0
ファイル: NPCChatDialogItemID.cs プロジェクト: wtfcolt/game
 /// <summary>
 /// Reads the <see cref="NPCChatDialogItemID"/> from an <see cref="IDataRecord"/>.
 /// </summary>
 /// <param name="r"><see cref="IDataRecord"/> to read the <see cref="NPCChatDialogItemID"/> from.</param>
 /// <param name="name">The name of the field to read the value from.</param>
 /// <returns>The <see cref="NPCChatDialogItemID"/> read from the <see cref="IDataRecord"/>.</returns>
 public static NPCChatDialogItemID GetNPCChatDialogItemID(this IDataRecord r, string name)
 {
     return(NPCChatDialogItemID.Read(r, name));
 }
コード例 #3
0
ファイル: NPCChatDialogItemID.cs プロジェクト: wtfcolt/game
 /// <summary>
 /// Reads the <see cref="NPCChatDialogItemID"/> from a <see cref="BitStream"/>.
 /// </summary>
 /// <param name="bitStream"><see cref="BitStream"/> to read the <see cref="NPCChatDialogItemID"/> from.</param>
 /// <returns>The <see cref="NPCChatDialogItemID"/> read from the <see cref="BitStream"/>.</returns>
 public static NPCChatDialogItemID ReadNPCChatDialogItemID(this BitStream bitStream)
 {
     return(NPCChatDialogItemID.Read(bitStream));
 }
コード例 #4
0
ファイル: NPCChatDialogItemID.cs プロジェクト: wtfcolt/game
 /// <summary>
 /// Reads the <see cref="NPCChatDialogItemID"/> from an <see cref="IDataRecord"/>.
 /// </summary>
 /// <param name="r"><see cref="IDataRecord"/> to read the <see cref="NPCChatDialogItemID"/> from.</param>
 /// <param name="i">The field index to read.</param>
 /// <returns>The <see cref="NPCChatDialogItemID"/> read from the <see cref="IDataRecord"/>.</returns>
 public static NPCChatDialogItemID GetNPCChatDialogItemID(this IDataRecord r, int i)
 {
     return(NPCChatDialogItemID.Read(r, i));
 }