This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| internal class WcfErrorResponseData | |
| { | |
| public WcfErrorResponseData(HttpStatusCode status) : this(status, string.Empty, new KeyValuePair<string, string>[0]){ } | |
| public WcfErrorResponseData(HttpStatusCode status, string body) : this(status, body, new KeyValuePair<string, string>[0]) { } | |
| public WcfErrorResponseData(HttpStatusCode status, string body, params KeyValuePair<string, string>[] headers) | |
| { | |
| StatusCode = status; | |
| Body = body; | |
| Headers = headers; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <system.serviceModel> | |
| <behaviors> | |
| <serviceBehaviors> | |
| <behavior> | |
| <!-- snip --> | |
| <bearerTokenRequired/> | |
| </behavior> | |
| </serviceBehaviors> | |
| </behaviors> | |
| <extensions> |
NewerOlder