runtime.csharp.IRT.Logger.TransportLogger.cs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of idealingua-v1-runtime-rpc-c-sharp_2.13 Show documentation
Show all versions of idealingua-v1-runtime-rpc-c-sharp_2.13 Show documentation
idealingua-v1-runtime-rpc-c-sharp
The newest version!
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);
}
}