无法从'System.Xml.XmlNode'转换为'Google.GData.Client.IExtensionElementFactory

时间:2010-10-31 15:14:49

标签: c# gdata-api

我正在尝试使用GData邀请访客使用Google日历。我找到了

http://www.mail-archive.com/google-calendar-help-dataapi@googlegroups.com/msg01759.html

但是就行了:

entry.ExtensionElements.Add(fragment.FirstChild);

我收到编译错误说:

Error 3 Argument 1: cannot convert from 'System.Xml.XmlNode' to 'Google.GData.Client.IExtensionElementFactory' 

我错过了什么?

1 个答案:

答案 0 :(得分:1)

我自己解决了这个问题:

entry.ExtensionElements.Add(new XmlExtension(fragment.FirstChild));