runtime.csharp.IRT.Transport.Client.AsyncHttpTransport.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;
using System.IO;
using System.Net;
using System.Text;
using System.Collections.Specialized;
using IRT.Marshaller;
namespace IRT.Transport.Client {
public class AsyncHttpTransport: AsyncHttpTransportGeneric {
public AsyncHttpTransport(string endpoint, IJsonMarshaller marshaller, int timeout = 60):
base(endpoint, marshaller, timeout) {}
}
}