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
Some types which are generally restricted to the main thread have methods which can be called from other threads.
Examples:
Control.Invoke
Control.BeginInvoke
Control.InvokeRequired
Currently exclusions to the main thread requirement only apply to types, so these members can't be conditionally excluded.
π It should be possible to exclude properties either by the property name or the name of the implementing method. This is helpful in situations where the getter can be called from any thread but the setter cannot.