v0.0.4
Pre-release
Pre-release
Features:
- You can now define request headers when creating a web source
- You can now intercept web requests before they are sent, by making use of
SetGlobalRequestIntercept
and/orSetSpecificWebRequestIntercept<T>
methods on the context. Each takes anAction<HttpWebRequest>
that can perform any work on the request before it is made. The former applies to all requests, while the latter applies to the specific method or property returningIEnumerable<T>
. The specific intercept is run after the global intercept, so can override any changes made by the global intercept. There are alsoRemoveGlobalRequestIntercept
,RemoveSpecificWebRequestIntercept<T>
andRemoveAllSpecificWebRequestIntercepts
methods for managing intercepts at run-time.
Bugfixes / Stability:
- Fixed a regression in class disambiguation code would cause the context code to be generated incorrectly.