You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using ModernHttpClient with Refit on iOS, Android and Windows, to implement an API that requires cookies.
The NativeMessageHandler facade is perfectly usable on Windows (as long as you don't need throwOnCaptiveNetwork, RegisterForProgress, etc). NativeCookieHandler, OTOH, is useless.
Something like #175 would fix this, but it was rejected. I don't think creating a new "platform" is necessary (if that's why it was rejected).
Would a PR implementing this under the Portable project be considered? So instead of facades, you'd have a minimally useful (portable) implementation of NativeCookieHandler (and, eventually, some of the additional NativeMessageHandler features).
The text was updated successfully, but these errors were encountered:
I'm using ModernHttpClient with Refit on iOS, Android and Windows, to implement an API that requires cookies.
The
NativeMessageHandler
facade is perfectly usable on Windows (as long as you don't needthrowOnCaptiveNetwork
,RegisterForProgress
, etc).NativeCookieHandler
, OTOH, is useless.Right now, I have to do this to set a cookie:
Something like #175 would fix this, but it was rejected. I don't think creating a new "platform" is necessary (if that's why it was rejected).
Would a PR implementing this under the Portable project be considered? So instead of facades, you'd have a minimally useful (portable) implementation of
NativeCookieHandler
(and, eventually, some of the additionalNativeMessageHandler
features).The text was updated successfully, but these errors were encountered: