Enum ConfigurableMessageHandler.LogEventType
Specifies the type(s) of request/response events to log.
Namespace: Google.Apis.Http
Assembly: Google.Apis.Core.dll
Syntax
[Flags]
public enum LogEventType
  Fields
| Name | Description | 
|---|---|
| None | Log no request/response information.  | 
      
| RequestBody | Log the request body. The body is assumed to be ASCII, and non-printable charaters are replaced by '.'. Warning: This causes the body content to be buffered in memory, so use with care for large requests.  | 
      
| RequestHeaders | Log the request headers.  | 
      
| RequestUri | Log the request URI.  | 
      
| ResponseAbnormal | Log abnormal response messages.  | 
      
| ResponseBody | Log the response body. The body is assumed to be ASCII, and non-printable characters are replaced by '.'. Warning: This causes the body content to be buffered in memory, so use with care for large responses.  | 
      
| ResponseHeaders | Log the response headers.  | 
      
| ResponseStatus | Log the response status.  |