本文整理汇总了C#中IQ.get_Type方法的典型用法代码示例。如果您正苦于以下问题:C# IQ.get_Type方法的具体用法?C# IQ.get_Type怎么用?C# IQ.get_Type使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IQ
的用法示例。
在下文中一共展示了IQ.get_Type方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: VcardResult
private void VcardResult(object sender, IQ iq, object data)
{
if (base.InvokeRequired)
{
base.BeginInvoke(new IqCB(this, (IntPtr) this.VcardResult), new object[] { sender, iq, data });
}
else if (iq.get_Type() == 2)
{
Vcard vcard = iq.get_Vcard();
if (vcard != null)
{
this.txtFullname.Text = vcard.get_Fullname();
this.txtNickname.Text = vcard.get_Nickname();
this.txtBirthday.Text = vcard.get_Birthday().ToString();
this.txtDescription.Text = vcard.get_Description();
if (vcard.get_Photo() != null)
{
this.picPhoto.Image = vcard.get_Photo().get_Image();
}
}
}
}