使用 .NET 3.5 API 访问 Facebook C# SDK 结果对象?
请考虑 .NET 3.5 中的以下内容(使用 Bin\Net35\Facebook*.dll 程序集):
using Facebook;
var app = new FacebookApp();
var result = app.Get("me");
// want to access result properties with no dynamic
...在缺少 C# 4.0 dynamic
关键字的情况下,这仅提供通用对象 成员。
我应该如何最好地访问此结果对象的 facebook 属性?
facebook C# SDK 中是否有帮助程序或实用程序方法或更强大的类型,或者我应该使用标准 .NET 反射技术?
Consider the following in .NET 3.5 (using the Bin\Net35\Facebook*.dll assemblies):
using Facebook;
var app = new FacebookApp();
var result = app.Get("me");
// want to access result properties with no dynamic
... in the absence of the C# 4.0 dynamic
keyword this provides only generic object
members.
How best should I access the facebook properties of this result object?
Are there helper or utility methods or stronger types in the facebook C# SDK, or should I use standard .NET reflection techniques?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
此代码示例显示了 3.5 的用法,无需 C#
动态
关键字:This code sample shows 3.5 usage, without needing the C#
dynamic
keyword:您还可以围绕 IDictionary 创建一个外观对象,如下所述 这里。
You can also create a facade object around the IDictionary, as explained here.