本文整理汇总了C#中IRecord.GetByteOrDefault方法的典型用法代码示例。如果您正苦于以下问题:C# IRecord.GetByteOrDefault方法的具体用法?C# IRecord.GetByteOrDefault怎么用?C# IRecord.GetByteOrDefault使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IRecord
的用法示例。
在下文中一共展示了IRecord.GetByteOrDefault方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: MapUserInfo
internal static void MapUserInfo(IRecord record, DiscuzUserInfo userinfo)
{
int offset = 0;
userinfo.Uid = record.GetInt32(offset++);// Int32.Parse(reader["uid"].ToString());
userinfo.Username = record.GetStringOrEmpty(offset++);// reader["username"].ToString();
userinfo.Nickname = record.GetStringOrEmpty(offset++);//reader["nickname"].ToString();
userinfo.Password = record.GetStringOrEmpty(offset++);//reader["password"].ToString();
userinfo.Secques = record.GetStringOrEmpty(offset++);//reader["secques"].ToString();
userinfo.Gender = record.GetInt32OrDefault(offset++, 0);// Int32.Parse(reader["gender"].ToString());
userinfo.Adminid = record.GetInt32OrDefault(offset++, 0);// Int32.Parse(reader["adminid"].ToString());
userinfo.Groupid = record.GetInt16OrDefault(offset++, 0);// Int16.Parse(reader["groupid"].ToString());
userinfo.Groupexpiry = record.GetInt32OrDefault(offset++, 0);// Int32.Parse(reader["groupexpiry"].ToString());
userinfo.Extgroupids = record.GetStringOrEmpty(offset++);// reader["extgroupids"].ToString();
userinfo.Regip = record.GetStringOrEmpty(offset++);// reader["regip"].ToString();
userinfo.Joindate = record.GetDateTimeOrEmpty(offset++);// reader["joindate"].ToString();
userinfo.Lastip = record.GetStringOrEmpty(offset++);// reader["lastip"].ToString();
userinfo.Lastvisit = record.GetDateTimeOrEmpty(offset++);//reader["lastvisit"].ToString();
userinfo.Lastactivity = record.GetDateTimeOrEmpty(offset++);//reader["lastactivity"].ToString();
userinfo.Lastpost = record.GetDateTimeOrEmpty(offset++);//reader["lastpost"].ToString();
userinfo.Lastpostid = record.GetInt32OrDefault(offset++, 0);// Int32.Parse(reader["lastpostid"].ToString());
userinfo.Lastposttitle = record.GetStringOrEmpty(offset++);// reader["lastposttitle"].ToString();
userinfo.Posts = record.GetInt32OrDefault(offset++, 0);// Int32.Parse(reader["posts"].ToString());
userinfo.Digestposts = record.GetInt16OrDefault(offset++, 0);//Int16.Parse(reader["digestposts"].ToString());
userinfo.Oltime = record.GetInt32OrDefault(offset++, 0);// Int32.Parse(reader["oltime"].ToString());
userinfo.Pageviews = record.GetInt32OrDefault(offset++, 0);// Int32.Parse(reader["pageviews"].ToString());
userinfo.Credits = record.GetDecimal(offset++); //Int32.Parse(reader["credits"].ToString());
userinfo.Extcredits1 = record.GetDecimal(offset++);// float.Parse(reader["extcredits1"].ToString());
userinfo.Extcredits2 = record.GetDecimal(offset++);//float.Parse(reader["extcredits2"].ToString());
userinfo.Extcredits3 = record.GetDecimal(offset++);//float.Parse(reader["extcredits3"].ToString());
userinfo.Extcredits4 = record.GetDecimal(offset++);//float.Parse(reader["extcredits4"].ToString());
userinfo.Extcredits5 = record.GetDecimal(offset++);//float.Parse(reader["extcredits5"].ToString());
userinfo.Extcredits6 = record.GetDecimal(offset++);//float.Parse(reader["extcredits6"].ToString());
userinfo.Extcredits7 = record.GetDecimal(offset++);//float.Parse(reader["extcredits7"].ToString());
userinfo.Extcredits8 = record.GetDecimal(offset++);// float.Parse(reader["extcredits8"].ToString());
userinfo.Avatarshowid = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["avatarshowid"].ToString());
userinfo.Email = record.GetStringOrEmpty(offset++);// reader["email"].ToString();
userinfo.Bday = record.GetStringOrEmpty(offset++);// reader["bday"].ToString();
userinfo.Sigstatus = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["sigstatus"].ToString());
userinfo.Tpp = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["tpp"].ToString());
userinfo.Ppp = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["ppp"].ToString());
userinfo.Templateid = record.GetInt16OrDefault(offset++, 0); // Int16.Parse(reader["templateid"].ToString());
userinfo.Pmsound = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["pmsound"].ToString());
userinfo.Showemail = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["showemail"].ToString());
userinfo.Invisible = record.GetInt32OrDefault(offset++, 0); // Int32.Parse(reader["invisible"].ToString());
userinfo.Newpm = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["newpm"].ToString());
userinfo.Newpmcount = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["newpmcount"].ToString());
userinfo.Accessmasks = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["accessmasks"].ToString());
userinfo.Onlinestate = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["onlinestate"].ToString());
userinfo.Spaceid = record.GetInt32OrDefault(offset++, 0);// Int32.Parse(reader["spaceid"].ToString());
userinfo.Newsletter = record.GetInt32OrDefault(offset++, 0); //(ReceivePMSettingType)Int32.Parse(reader["newsletter"].ToString());
offset++;//fields.userid
userinfo.Website = record.GetStringOrEmpty(offset++);
userinfo.Icq = record.GetStringOrEmpty(offset++);
userinfo.Qq = record.GetStringOrEmpty(offset++);
userinfo.Yahoo = record.GetStringOrEmpty(offset++);
userinfo.Msn = record.GetStringOrEmpty(offset++);
userinfo.Skype = record.GetStringOrEmpty(offset++);
userinfo.Location = record.GetStringOrEmpty(offset++);
userinfo.Customstatus = record.GetStringOrEmpty(offset++);
userinfo.Avatar = record.GetStringOrEmpty(offset++);
userinfo.Avatarwidth = record.GetInt32OrDefault(offset++, 0);
userinfo.Avatarheight = record.GetInt32OrDefault(offset++, 0);
userinfo.Medals = record.GetStringOrEmpty(offset++);
userinfo.Authstr = record.GetStringOrEmpty(offset++);
userinfo.Authtime = record.GetDateTimeOrEmpty(offset++);
userinfo.Authflag = record.GetByteOrDefault(offset++,0);
userinfo.Bio = record.GetStringOrEmpty(offset++);
userinfo.Signature = record.GetStringOrEmpty(offset++);
userinfo.Sightml = record.GetStringOrEmpty(offset++);
userinfo.Realname = record.GetStringOrEmpty(offset++);
userinfo.Idcard = record.GetStringOrEmpty(offset++);
userinfo.Mobile = record.GetStringOrEmpty(offset++);
userinfo.Phone = record.GetStringOrEmpty(offset++);
}