xmlns 到 sharepoint api 对象
是否可以将以下字符串转换为 Sharepoint API 对象,例如 SPUser 或 SPUserValueField? (不解析它)
"<my:Person xmlns:my=\"http://schemas.microsoft.com/office/infopath/2003/myXSD\"><my:DisplayName>devadmin</my:DisplayName><my:AccountId>GLINTT\\devadmin</my:AccountId><my:AccountType>User</my:AccountType></my:Person>"
谢谢, 大卫·埃斯蒂夫斯
Is it possible to convert the following string to a Sharepoint API object like SPUser or SPUserValueField? (without parsing it)
"<my:Person xmlns:my=\"http://schemas.microsoft.com/office/infopath/2003/myXSD\"><my:DisplayName>devadmin</my:DisplayName><my:AccountId>GLINTT\\devadmin</my:AccountId><my:AccountType>User</my:AccountType></my:Person>"
Thanks,
David Esteves
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,
Microsoft.Office.Workflow.Utility
程序集具有Contact.ToContacts
,它将把 Person XML 反序列化为Contact
实例数组。http://msdn.microsoft.com/en-us/library/ms553588
-奥辛
Yes, the
Microsoft.Office.Workflow.Utility
assembly hasContact.ToContacts
which will deserialize Person XML into an array ofContact
instances.http://msdn.microsoft.com/en-us/library/ms553588
-Oisin
解决了:)
(只是一个例子)
以下函数从 person 检索 SPUser:
Solved :)
(Just an example)
The following function retrieves the SPUser from person: