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