How do I convert an NSHttpCookie to a System.Net.Cookie in MonoTouch?

后端 未结 1 730
我在风中等你
我在风中等你 2021-01-05 19:35

I have a MonoTouch iPhone app that does federated sign in via the Azure Access Control Service. The login is done via an embedded UIWebView browser. When the login is done,

相关标签:
1条回答
  • 2021-01-05 20:06

    Yes, that is how you could convert. Perhaps you should just make an extension method on NSHttpCookie? Then you could call something like:

    var c = cookie.ToCLRCookie ();
    
    0 讨论(0)
提交回复
热议问题