All Downloads are FREE. Search and download functionalities are using the official Maven repository.

runtime.csharp.IRT.Logger.TransportLogger.cs Maven / Gradle / Ivy

using System.Collections.Generic;

namespace IRT
{
    public interface ITransportLogger : ILogger
    {
        void LogRequest(string method, string url, string data, Dictionary headers);

        void LogResponse(string method, string url, string response, long resultCode,
            Dictionary headers);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy