本文整理汇总了C#中Contact.GetAddresses方法的典型用法代码示例。如果您正苦于以下问题:C# Contact.GetAddresses方法的具体用法?C# Contact.GetAddresses怎么用?C# Contact.GetAddresses使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Contact
的用法示例。
在下文中一共展示了Contact.GetAddresses方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ListProperties
//.........这里部分代码省略.........
{
Console.Write(";VIDEO");
}
if ((tPhone.Types & PhoneTypes.voip) == PhoneTypes.voip)
{
Console.Write(";VOIP");
}
Console.WriteLine("");
}
if (cContact.Organization != "")
{
Console.WriteLine("ORG=" + cContact.Organization);
}
if (cContact.WorkForceID != "")
{
Console.WriteLine("WORKFORCEID=" + cContact.WorkForceID);
}
if (cContact.ManagerID != "")
{
Console.WriteLine("MANAGERID=" + cContact.ManagerID);
}
if (cContact.Birthday != "")
{
Console.WriteLine("BDAY=" + cContact.Birthday);
}
if (cContact.Blog != "")
{
Console.WriteLine("BLOG=" + cContact.Blog);
}
if (cContact.Url != "")
{
Console.WriteLine("URL=" + cContact.Url);
}
IABList aList = cContact.GetAddresses();
foreach(Address cAddress in aList)
{
Console.Write("ADR=(");
if (cAddress.ID != "")
{
Console.Write("ID=" + cAddress.ID);
}
if (cAddress.Street != "")
{
Console.Write(";STREET=" + cAddress.Street);
}
if (cAddress.Locality != "")
{
Console.Write(";LOCALITY=" + cAddress.Locality);
}
if (cAddress.Region != "")
{
Console.Write(";REGION=" + cAddress.Region);
}
if (cAddress.PostalCode != "")
{
Console.Write(";PCODE=" + cAddress.PostalCode);
}
if (cAddress.PostalBox != "")
{
Console.Write(";PBOX=" + cAddress.PostalBox);
}
if (cAddress.Country != "")
{
Console.Write(";COUNTRY=" + cAddress.Country);
}
if (cAddress.Types != 0)
示例2: DisplayContactDetails
public void DisplayContactDetails(Contact c)
{
bool addBlank = false;
ClearContactDetails();
if(c != null)
{
Pixbuf cPhoto = GetScaledPhoto(c, 64);
if(cPhoto != null)
AddPicture(cPhoto);
else
AddPicture(BlankHeadPixBuf);
if(c.FN != null)
{
AddTitles(c.FN, c.Title, null);
}
else
{
AddTitles(c.UserName, c.Title, null);
}
foreach(Telephone phone in c.GetTelephoneNumbers())
{
addBlank = true;
if((phone.Types & PhoneTypes.home) == PhoneTypes.home)
{
AddLabeledValue("home", phone.Number);
}
if((phone.Types & PhoneTypes.work) == PhoneTypes.work)
{
AddLabeledValue("work", phone.Number);
}
if((phone.Types & PhoneTypes.other) == PhoneTypes.other)
{
AddLabeledValue("other", phone.Number);
}
if((phone.Types & PhoneTypes.cell) == PhoneTypes.cell)
{
AddLabeledValue("mobile", phone.Number);
}
if((phone.Types & PhoneTypes.pager) == PhoneTypes.pager)
{
AddLabeledValue("pager", phone.Number);
}
if((phone.Types & PhoneTypes.fax) == PhoneTypes.fax)
{
AddLabeledValue("fax", phone.Number);
}
}
if(addBlank)
{
AddLabeledValue(null, null);
addBlank = false;
}
foreach(Email e in c.GetEmailAddresses())
{
addBlank = true;
if((e.Types & EmailTypes.personal) == EmailTypes.personal)
{
AddLabeledValue("home", e.Address);
}
if((e.Types & EmailTypes.work) == EmailTypes.work)
{
AddLabeledValue("work", e.Address);
}
if((e.Types & EmailTypes.other) == EmailTypes.other)
{
AddLabeledValue("other", e.Address);
}
}
if(addBlank)
{
AddLabeledValue(null, null);
addBlank = false;
}
foreach(IM im in c.GetInstantMessageAccounts())
{
addBlank = true;
if((im.Types & IMTypes.home) == IMTypes.home)
{
AddLabeledValue("home",
im.Address + " (" + im.Provider + ")");
}
if((im.Types & IMTypes.work) == IMTypes.work)
{
AddLabeledValue("work",
im.Address + " (" + im.Provider + ")");
}
if((im.Types & IMTypes.other) == IMTypes.other)
{
AddLabeledValue("other",
im.Address + " (" + im.Provider + ")");
}
}
if(addBlank)
{
AddLabeledValue(null, null);
addBlank = false;
}
foreach(Address addr in c.GetAddresses())
{
string addressLine = "";
//.........这里部分代码省略.........