Esempio n. 1
0
 internal static ApiLogEntry GetApiLogEntry(string requestUrl, HttpMethod method, WebHeaderCollection headers)
 {
     return(ApiLogMiddleWare.GetApiLogEntry(requestUrl, method, LoggerService.SerializeHeaders(headers)));
 }
Esempio n. 2
0
 internal static ApiLogEntry GetApiLogEntry(string requestUrl, HttpMethod method, List <KeyValuePair <string, string> > headers)
 {
     return(ApiLogMiddleWare.GetApiLogEntry(requestUrl, method, LoggerService.SerializeHeaders(headers)));
 }
Esempio n. 3
0
 internal static ApiLogEntry GetApiLogEntry(string requestUrl, HttpMethod method)
 {
     return(ApiLogMiddleWare.GetApiLogEntry(requestUrl, method, string.Empty));
 }