我正在使用 Microsoft Exchange Web 服务 (EWS) 托管 API 1.2 使用 C3 从 Exchange 邮箱访问数据。返回的对象的某些属性很难访问,因为它们是自定义属性。
为了简化对这些属性的访问,我(作为一个例子)编写了一个名为 Contact2 的类,它扩展了 EWS 提供给我的 Contact 类。
调用返回 Contact 对象的函数时,如何将其“升级”为 Contact2?
这是我写的 Contact2 类:
namespace ExchangeContacts
{
class Contact2 : Microsoft.Exchange.WebServices.Data.Contact
{
public ExchangeService ex = new ExchangeService();
public Dictionary<string, ExtendedPropertyDefinition> propDefs = new Dictionary<string, ExtendedPropertyDefinition>();
public PropertySet myPropSet = new PropertySet();
public Contact2(ExchangeService service)
: base(service)
{
propDefs.Add("MarketingGuid", new ExtendedPropertyDefinition(new Guid("3694fe54-daf0-49bf-9e37-734cfb8521e1"), "MarketingGuid", MapiPropertyType.String));
myPropSet = new PropertySet(BasePropertySet.FirstClassProperties) { propDefs["MarketingGuid"] };
ex = service;
}
new public void Load()
{
base.Load(myPropSet);
}
new public void Load(PropertySet propertySet)
{
propertySet.Add(propDefs["MarketingGuid"]);
base.Load(propertySet);
}
public string MarketingGuid
{
get
{
string g;
if (TryGetProperty(propDefs["MarketingGuid"], out g))
return g;
else
return "";
}
set
{
SetExtendedProperty(propDefs["MarketingGuid"], value);
}
}
}
}