1

我正在使用 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);
            }
        }

    }
}
4

3 回答 3

3

您需要在接受 Contact 对象的 Contact2 中定义显式静态方法或构造函数。IE

public static Contact2 FromContact(Contact cnt)
{
    return new Contact2(cnt.x, cnt.y, ...)
}

如果你真的想要,你可以定义一个隐式或显式转换。通常不鼓励这样做,因为它会引起混淆,因此在执行此操作之前请阅读显式和隐式转换。我不会告诉你它是如何完成的:P

于 2012-05-30T16:02:29.667 回答
1

您不能神奇地将现有Contact实例转换为另一个类,即使该其他类继承了Contact.

您需要修改创建 的代码Contact来创建 a Contact2,或者编写自己的函数来创建Contact2包装现有Contact实例的 a 。

于 2012-05-30T16:02:52.493 回答
0

您可以为 Contact 添加运算符重载,然后您将不需要静态方法或至少必须将它们公开..

这有点难以完全正确...请参阅我如何覆盖基类的 == 运算符,因此调用了覆盖

于 2012-05-30T16:04:41.587 回答