Files
codeql/csharp/ql/test/resources/stubs/ServiceStack.Client/5.11.0/ServiceStack.Client.cs

1925 lines
158 KiB
C#

// This file contains auto-generated code.
namespace ServiceStack
{
// Generated from `ServiceStack.AdminCreateUser` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class AdminCreateUser : ServiceStack.AdminUserBase, ServiceStack.IVerb, ServiceStack.IReturn<ServiceStack.AdminUserResponse>, ServiceStack.IReturn, ServiceStack.IPost
{
public AdminCreateUser() => throw null;
public System.Collections.Generic.List<string> Permissions { get => throw null; set => throw null; }
public System.Collections.Generic.List<string> Roles { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.AdminDeleteUser` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class AdminDeleteUser : ServiceStack.IVerb, ServiceStack.IReturn<ServiceStack.AdminDeleteUserResponse>, ServiceStack.IReturn, ServiceStack.IDelete
{
public AdminDeleteUser() => throw null;
public string Id { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.AdminDeleteUserResponse` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class AdminDeleteUserResponse : ServiceStack.IHasResponseStatus
{
public AdminDeleteUserResponse() => throw null;
public string Id { get => throw null; set => throw null; }
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.AdminGetUser` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class AdminGetUser : ServiceStack.IVerb, ServiceStack.IReturn<ServiceStack.AdminUserResponse>, ServiceStack.IReturn, ServiceStack.IGet
{
public AdminGetUser() => throw null;
public string Id { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.AdminQueryUsers` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class AdminQueryUsers : ServiceStack.IVerb, ServiceStack.IReturn<ServiceStack.AdminUsersResponse>, ServiceStack.IReturn, ServiceStack.IGet
{
public AdminQueryUsers() => throw null;
public string OrderBy { get => throw null; set => throw null; }
public string Query { get => throw null; set => throw null; }
public int? Skip { get => throw null; set => throw null; }
public int? Take { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.AdminUpdateUser` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class AdminUpdateUser : ServiceStack.AdminUserBase, ServiceStack.IVerb, ServiceStack.IReturn<ServiceStack.AdminUserResponse>, ServiceStack.IReturn, ServiceStack.IPut
{
public System.Collections.Generic.List<string> AddPermissions { get => throw null; set => throw null; }
public System.Collections.Generic.List<string> AddRoles { get => throw null; set => throw null; }
public AdminUpdateUser() => throw null;
public string Id { get => throw null; set => throw null; }
public bool? LockUser { get => throw null; set => throw null; }
public System.Collections.Generic.List<string> RemovePermissions { get => throw null; set => throw null; }
public System.Collections.Generic.List<string> RemoveRoles { get => throw null; set => throw null; }
public bool? UnlockUser { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.AdminUserBase` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public abstract class AdminUserBase : ServiceStack.IMeta
{
protected AdminUserBase() => throw null;
public string DisplayName { get => throw null; set => throw null; }
public string Email { get => throw null; set => throw null; }
public string FirstName { get => throw null; set => throw null; }
public string LastName { get => throw null; set => throw null; }
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public string Password { get => throw null; set => throw null; }
public string ProfileUrl { get => throw null; set => throw null; }
public System.Collections.Generic.Dictionary<string, string> UserAuthProperties { get => throw null; set => throw null; }
public string UserName { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.AdminUserResponse` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class AdminUserResponse : ServiceStack.IHasResponseStatus
{
public AdminUserResponse() => throw null;
public string Id { get => throw null; set => throw null; }
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; }
public System.Collections.Generic.Dictionary<string, object> Result { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.AdminUsersResponse` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class AdminUsersResponse : ServiceStack.IHasResponseStatus
{
public AdminUsersResponse() => throw null;
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; }
public System.Collections.Generic.List<System.Collections.Generic.Dictionary<string, object>> Results { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.AesUtils` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class AesUtils
{
public const int BlockSize = default;
public const int BlockSizeBytes = default;
public static void CreateCryptAuthKeysAndIv(out System.Byte[] cryptKey, out System.Byte[] authKey, out System.Byte[] iv) => throw null;
public static System.Byte[] CreateIv() => throw null;
public static System.Byte[] CreateKey() => throw null;
public static void CreateKeyAndIv(out System.Byte[] cryptKey, out System.Byte[] iv) => throw null;
public static System.Security.Cryptography.SymmetricAlgorithm CreateSymmetricAlgorithm() => throw null;
public static string Decrypt(string encryptedBase64, System.Byte[] cryptKey, System.Byte[] iv) => throw null;
public static System.Byte[] Decrypt(System.Byte[] encryptedBytes, System.Byte[] cryptKey, System.Byte[] iv) => throw null;
public static string Encrypt(string text, System.Byte[] cryptKey, System.Byte[] iv) => throw null;
public static System.Byte[] Encrypt(System.Byte[] bytesToEncrypt, System.Byte[] cryptKey, System.Byte[] iv) => throw null;
public const int KeySize = default;
public const int KeySizeBytes = default;
}
// Generated from `ServiceStack.AssignRoles` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class AssignRoles : ServiceStack.IVerb, ServiceStack.IReturn<ServiceStack.AssignRolesResponse>, ServiceStack.IReturn, ServiceStack.IPost, ServiceStack.IMeta
{
public AssignRoles() => throw null;
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public System.Collections.Generic.List<string> Permissions { get => throw null; set => throw null; }
public System.Collections.Generic.List<string> Roles { get => throw null; set => throw null; }
public string UserName { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.AssignRolesResponse` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class AssignRolesResponse : ServiceStack.IMeta, ServiceStack.IHasResponseStatus
{
public System.Collections.Generic.List<string> AllPermissions { get => throw null; set => throw null; }
public System.Collections.Generic.List<string> AllRoles { get => throw null; set => throw null; }
public AssignRolesResponse() => throw null;
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.AsyncServiceClient` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class AsyncServiceClient : ServiceStack.IHasVersion, ServiceStack.IHasSessionId, ServiceStack.IHasBearerToken
{
public bool AlwaysSendBasicAuthHeader { get => throw null; set => throw null; }
public AsyncServiceClient() => throw null;
public string BaseUri { get => throw null; set => throw null; }
public string BearerToken { get => throw null; set => throw null; }
public static int BufferSize;
public string ContentType { get => throw null; set => throw null; }
public System.Net.CookieContainer CookieContainer { get => throw null; set => throw null; }
public System.Net.ICredentials Credentials { get => throw null; set => throw null; }
public bool DisableAutoCompression { get => throw null; set => throw null; }
public static bool DisableTimer { get => throw null; set => throw null; }
public void Dispose() => throw null;
public bool EmulateHttpViaPost { get => throw null; set => throw null; }
public ServiceStack.ExceptionFilterDelegate ExceptionFilter { get => throw null; set => throw null; }
public System.Collections.Generic.Dictionary<string, string> GetCookieValues() => throw null;
public static System.Action<System.Net.HttpWebRequest> GlobalRequestFilter { get => throw null; set => throw null; }
public static System.Action<System.Net.HttpWebResponse> GlobalResponseFilter { get => throw null; set => throw null; }
public System.Collections.Specialized.NameValueCollection Headers { get => throw null; set => throw null; }
public System.Action OnAuthenticationRequired { get => throw null; set => throw null; }
public ServiceStack.ProgressDelegate OnDownloadProgress { get => throw null; set => throw null; }
public ServiceStack.ProgressDelegate OnUploadProgress { get => throw null; set => throw null; }
public string Password { get => throw null; set => throw null; }
public System.Net.IWebProxy Proxy { get => throw null; set => throw null; }
public string RefreshToken { get => throw null; set => throw null; }
public string RefreshTokenUri { get => throw null; set => throw null; }
public string RequestCompressionType { get => throw null; set => throw null; }
public System.Action<System.Net.HttpWebRequest> RequestFilter { get => throw null; set => throw null; }
public System.Action<System.Net.HttpWebResponse> ResponseFilter { get => throw null; set => throw null; }
public ServiceStack.ResultsFilterDelegate ResultsFilter { get => throw null; set => throw null; }
public ServiceStack.ResultsFilterResponseDelegate ResultsFilterResponse { get => throw null; set => throw null; }
public System.Threading.Tasks.Task<TResponse> SendAsync<TResponse>(string httpMethod, string absoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public string SessionId { get => throw null; set => throw null; }
public void SetCredentials(string userName, string password) => throw null;
public bool ShareCookiesWithBrowser { get => throw null; set => throw null; }
public bool StoreCookies { get => throw null; set => throw null; }
public ServiceStack.Web.StreamDeserializerDelegate StreamDeserializer { get => throw null; set => throw null; }
public ServiceStack.Web.StreamSerializerDelegate StreamSerializer { get => throw null; set => throw null; }
public System.TimeSpan? Timeout { get => throw null; set => throw null; }
public bool UseTokenCookie { get => throw null; set => throw null; }
public string UserAgent { get => throw null; set => throw null; }
public string UserName { get => throw null; set => throw null; }
public int Version { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.AsyncTimer` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class AsyncTimer : System.IDisposable, ServiceStack.ITimer
{
public AsyncTimer(System.Threading.Timer timer) => throw null;
public void Cancel() => throw null;
public void Dispose() => throw null;
public System.Threading.Timer Timer;
}
// Generated from `ServiceStack.Authenticate` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class Authenticate : ServiceStack.IVerb, ServiceStack.IReturn<ServiceStack.AuthenticateResponse>, ServiceStack.IReturn, ServiceStack.IPost, ServiceStack.IMeta
{
public string AccessToken { get => throw null; set => throw null; }
public string AccessTokenSecret { get => throw null; set => throw null; }
public Authenticate() => throw null;
public string ErrorView { get => throw null; set => throw null; }
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public string Password { get => throw null; set => throw null; }
public bool? RememberMe { get => throw null; set => throw null; }
public string State { get => throw null; set => throw null; }
public bool? UseTokenCookie { get => throw null; set => throw null; }
public string UserName { get => throw null; set => throw null; }
public string cnonce { get => throw null; set => throw null; }
public string nc { get => throw null; set => throw null; }
public string nonce { get => throw null; set => throw null; }
public string oauth_token { get => throw null; set => throw null; }
public string oauth_verifier { get => throw null; set => throw null; }
public string provider { get => throw null; set => throw null; }
public string qop { get => throw null; set => throw null; }
public string response { get => throw null; set => throw null; }
public string scope { get => throw null; set => throw null; }
public string uri { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.AuthenticateResponse` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class AuthenticateResponse : ServiceStack.IMeta, ServiceStack.IHasSessionId, ServiceStack.IHasBearerToken
{
public AuthenticateResponse() => throw null;
public string BearerToken { get => throw null; set => throw null; }
public string DisplayName { get => throw null; set => throw null; }
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public System.Collections.Generic.List<string> Permissions { get => throw null; set => throw null; }
public string ProfileUrl { get => throw null; set => throw null; }
public string ReferrerUrl { get => throw null; set => throw null; }
public string RefreshToken { get => throw null; set => throw null; }
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; }
public System.Collections.Generic.List<string> Roles { get => throw null; set => throw null; }
public string SessionId { get => throw null; set => throw null; }
public string UserId { get => throw null; set => throw null; }
public string UserName { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.AuthenticationException` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class AuthenticationException : System.Exception, ServiceStack.IHasStatusCode
{
public AuthenticationException(string message, System.Exception innerException) => throw null;
public AuthenticationException(string message) => throw null;
public AuthenticationException() => throw null;
public int StatusCode { get => throw null; }
}
// Generated from `ServiceStack.AuthenticationInfo` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class AuthenticationInfo
{
public AuthenticationInfo(string authHeader) => throw null;
public override string ToString() => throw null;
public string cnonce { get => throw null; set => throw null; }
public string method { get => throw null; set => throw null; }
public int nc { get => throw null; set => throw null; }
public string nonce { get => throw null; set => throw null; }
public string opaque { get => throw null; set => throw null; }
public string qop { get => throw null; set => throw null; }
public string realm { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.CachedServiceClient` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class CachedServiceClient : System.IDisposable, ServiceStack.IServiceGatewayAsync, ServiceStack.IServiceGateway, ServiceStack.IServiceClientSync, ServiceStack.IServiceClientCommon, ServiceStack.IServiceClientAsync, ServiceStack.IServiceClient, ServiceStack.IRestServiceClient, ServiceStack.IRestClientSync, ServiceStack.IRestClientAsync, ServiceStack.IRestClient, ServiceStack.IReplyClient, ServiceStack.IOneWayClient, ServiceStack.IHttpRestClientAsync, ServiceStack.IHasVersion, ServiceStack.IHasSessionId, ServiceStack.IHasBearerToken, ServiceStack.ICachedServiceClient
{
public void AddHeader(string name, string value) => throw null;
public string BearerToken { get => throw null; set => throw null; }
public int CacheCount { get => throw null; }
public System.Int64 CacheHits { get => throw null; }
public CachedServiceClient(ServiceStack.ServiceClientBase client, System.Collections.Concurrent.ConcurrentDictionary<string, ServiceStack.HttpCacheEntry> cache) => throw null;
public CachedServiceClient(ServiceStack.ServiceClientBase client) => throw null;
public System.Int64 CachesAdded { get => throw null; }
public System.Int64 CachesRemoved { get => throw null; }
public int CleanCachesWhenCountExceeds { get => throw null; set => throw null; }
public System.TimeSpan? ClearCachesOlderThan { get => throw null; set => throw null; }
public void ClearCookies() => throw null;
public System.TimeSpan? ClearExpiredCachesOlderThan { get => throw null; set => throw null; }
public void CustomMethod(string httpVerb, ServiceStack.IReturnVoid requestDto) => throw null;
public TResponse CustomMethod<TResponse>(string httpVerb, object requestDto) => throw null;
public TResponse CustomMethod<TResponse>(string httpVerb, ServiceStack.IReturn<TResponse> requestDto) => throw null;
public System.Threading.Tasks.Task<TResponse> CustomMethodAsync<TResponse>(string httpVerb, string relativeOrAbsoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task<TResponse> CustomMethodAsync<TResponse>(string httpVerb, object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task<TResponse> CustomMethodAsync<TResponse>(string httpVerb, ServiceStack.IReturn<TResponse> requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task CustomMethodAsync(string httpVerb, ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public void Delete(ServiceStack.IReturnVoid requestDto) => throw null;
public TResponse Delete<TResponse>(string relativeOrAbsoluteUrl) => throw null;
public TResponse Delete<TResponse>(object request) => throw null;
public TResponse Delete<TResponse>(ServiceStack.IReturn<TResponse> request) => throw null;
public System.Threading.Tasks.Task<TResponse> DeleteAsync<TResponse>(string relativeOrAbsoluteUrl, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task<TResponse> DeleteAsync<TResponse>(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task<TResponse> DeleteAsync<TResponse>(ServiceStack.IReturn<TResponse> requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task DeleteAsync(ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public void Dispose() => throw null;
public System.Int64 ErrorFallbackHits { get => throw null; }
public void Get(ServiceStack.IReturnVoid request) => throw null;
public TResponse Get<TResponse>(string relativeOrAbsoluteUrl) => throw null;
public TResponse Get<TResponse>(object requestDto) => throw null;
public TResponse Get<TResponse>(ServiceStack.IReturn<TResponse> requestDto) => throw null;
public System.Threading.Tasks.Task<TResponse> GetAsync<TResponse>(string relativeOrAbsoluteUrl, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task<TResponse> GetAsync<TResponse>(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task<TResponse> GetAsync<TResponse>(ServiceStack.IReturn<TResponse> requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task GetAsync(ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Collections.Generic.Dictionary<string, string> GetCookieValues() => throw null;
public System.Collections.Generic.IEnumerable<TResponse> GetLazy<TResponse>(ServiceStack.IReturn<ServiceStack.QueryResponse<TResponse>> queryDto) => throw null;
public System.Int64 NotModifiedHits { get => throw null; }
public object OnExceptionFilter(System.Net.WebException webEx, System.Net.WebResponse webRes, string requestUri, System.Type responseType) => throw null;
public void Patch(ServiceStack.IReturnVoid requestDto) => throw null;
public TResponse Patch<TResponse>(string relativeOrAbsoluteUrl, object requestDto) => throw null;
public TResponse Patch<TResponse>(object requestDto) => throw null;
public TResponse Patch<TResponse>(ServiceStack.IReturn<TResponse> requestDto) => throw null;
public System.Threading.Tasks.Task<TResponse> PatchAsync<TResponse>(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task<TResponse> PatchAsync<TResponse>(ServiceStack.IReturn<TResponse> requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task PatchAsync(ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public void Post(ServiceStack.IReturnVoid requestDto) => throw null;
public TResponse Post<TResponse>(string relativeOrAbsoluteUrl, object request) => throw null;
public TResponse Post<TResponse>(object requestDto) => throw null;
public TResponse Post<TResponse>(ServiceStack.IReturn<TResponse> requestDto) => throw null;
public System.Threading.Tasks.Task<TResponse> PostAsync<TResponse>(string relativeOrAbsoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task<TResponse> PostAsync<TResponse>(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task<TResponse> PostAsync<TResponse>(ServiceStack.IReturn<TResponse> requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task PostAsync(ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public TResponse PostFile<TResponse>(string relativeOrAbsoluteUrl, System.IO.Stream fileToUpload, string fileName, string mimeType) => throw null;
public TResponse PostFileWithRequest<TResponse>(string relativeOrAbsoluteUrl, System.IO.Stream fileToUpload, string fileName, object request, string fieldName = default(string)) => throw null;
public TResponse PostFileWithRequest<TResponse>(System.IO.Stream fileToUpload, string fileName, object request, string fieldName = default(string)) => throw null;
public TResponse PostFilesWithRequest<TResponse>(string relativeOrAbsoluteUrl, object request, System.Collections.Generic.IEnumerable<ServiceStack.UploadFile> files) => throw null;
public TResponse PostFilesWithRequest<TResponse>(object request, System.Collections.Generic.IEnumerable<ServiceStack.UploadFile> files) => throw null;
public void Publish(object requestDto) => throw null;
public void PublishAll(System.Collections.Generic.IEnumerable<object> requestDtos) => throw null;
public System.Threading.Tasks.Task PublishAllAsync(System.Collections.Generic.IEnumerable<object> requestDtos, System.Threading.CancellationToken token) => throw null;
public System.Threading.Tasks.Task PublishAsync(object requestDto, System.Threading.CancellationToken token) => throw null;
public void Put(ServiceStack.IReturnVoid requestDto) => throw null;
public TResponse Put<TResponse>(string relativeOrAbsoluteUrl, object requestDto) => throw null;
public TResponse Put<TResponse>(object requestDto) => throw null;
public TResponse Put<TResponse>(ServiceStack.IReturn<TResponse> requestDto) => throw null;
public System.Threading.Tasks.Task<TResponse> PutAsync<TResponse>(string relativeOrAbsoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task<TResponse> PutAsync<TResponse>(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task<TResponse> PutAsync<TResponse>(ServiceStack.IReturn<TResponse> requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task PutAsync(ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public int RemoveCachesOlderThan(System.TimeSpan age) => throw null;
public int RemoveExpiredCachesOlderThan(System.TimeSpan age) => throw null;
public TResponse Send<TResponse>(string httpMethod, string relativeOrAbsoluteUrl, object request) => throw null;
public TResponse Send<TResponse>(object request) => throw null;
public System.Collections.Generic.List<TResponse> SendAll<TResponse>(System.Collections.Generic.IEnumerable<object> requests) => throw null;
public System.Threading.Tasks.Task<System.Collections.Generic.List<TResponse>> SendAllAsync<TResponse>(System.Collections.Generic.IEnumerable<object> requests, System.Threading.CancellationToken token) => throw null;
public void SendAllOneWay(System.Collections.Generic.IEnumerable<object> requests) => throw null;
public System.Threading.Tasks.Task<TResponse> SendAsync<TResponse>(string httpMethod, string absoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task<TResponse> SendAsync<TResponse>(object requestDto, System.Threading.CancellationToken token) => throw null;
public void SendOneWay(string relativeOrAbsoluteUri, object requestDto) => throw null;
public void SendOneWay(object requestDto) => throw null;
public string SessionId { get => throw null; set => throw null; }
public void SetCache(System.Collections.Concurrent.ConcurrentDictionary<string, ServiceStack.HttpCacheEntry> cache) => throw null;
public void SetCookie(string name, string value, System.TimeSpan? expiresIn = default(System.TimeSpan?)) => throw null;
public void SetCredentials(string userName, string password) => throw null;
public int Version { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.CachedServiceClientExtensions` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class CachedServiceClientExtensions
{
public static ServiceStack.IServiceClient WithCache(this ServiceStack.ServiceClientBase client, System.Collections.Concurrent.ConcurrentDictionary<string, ServiceStack.HttpCacheEntry> cache) => throw null;
public static ServiceStack.IServiceClient WithCache(this ServiceStack.ServiceClientBase client) => throw null;
}
// Generated from `ServiceStack.CancelRequest` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class CancelRequest : ServiceStack.IVerb, ServiceStack.IReturn<ServiceStack.CancelRequestResponse>, ServiceStack.IReturn, ServiceStack.IPost, ServiceStack.IMeta
{
public CancelRequest() => throw null;
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public string Tag { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.CancelRequestResponse` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class CancelRequestResponse : ServiceStack.IMeta, ServiceStack.IHasResponseStatus
{
public CancelRequestResponse() => throw null;
public System.TimeSpan Elapsed { get => throw null; set => throw null; }
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; }
public string Tag { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.CheckCrudEvents` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class CheckCrudEvents : ServiceStack.IReturn<ServiceStack.CheckCrudEventsResponse>, ServiceStack.IReturn
{
public string AuthSecret { get => throw null; set => throw null; }
public CheckCrudEvents() => throw null;
public System.Collections.Generic.List<string> Ids { get => throw null; set => throw null; }
public string Model { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.CheckCrudEventsResponse` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class CheckCrudEventsResponse : ServiceStack.IHasResponseStatus
{
public CheckCrudEventsResponse() => throw null;
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; }
public System.Collections.Generic.List<string> Results { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.ClientConfig` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class ClientConfig
{
public static void ConfigureTls12() => throw null;
public static string DefaultEncodeDispositionFileName(string fileName) => throw null;
public static System.Func<string, string> EncodeDispositionFileName { get => throw null; set => throw null; }
public static bool SkipEmptyArrays { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.ClientFactory` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class ClientFactory
{
public static ServiceStack.IOneWayClient Create(string endpointUrl) => throw null;
}
// Generated from `ServiceStack.ContentFormat` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class ContentFormat
{
public static System.Collections.Generic.Dictionary<string, string> ContentTypeAliases;
public static string GetContentFormat(string contentType) => throw null;
public static string GetContentFormat(ServiceStack.Format format) => throw null;
public static ServiceStack.RequestAttributes GetEndpointAttributes(string contentType) => throw null;
public static string GetRealContentType(string contentType) => throw null;
public static ServiceStack.RequestAttributes GetRequestAttribute(string httpMethod) => throw null;
public static bool IsBinary(this string contentType) => throw null;
public static bool MatchesContentType(this string contentType, string matchesContentType) => throw null;
public static string NormalizeContentType(string contentType) => throw null;
public static string ToContentFormat(this string contentType) => throw null;
public static string ToContentType(this ServiceStack.Format formats) => throw null;
public static ServiceStack.Feature ToFeature(this string contentType) => throw null;
public const string Utf8Suffix = default;
}
// Generated from `ServiceStack.ConvertSessionToToken` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class ConvertSessionToToken : ServiceStack.IVerb, ServiceStack.IReturn<ServiceStack.ConvertSessionToTokenResponse>, ServiceStack.IReturn, ServiceStack.IPost, ServiceStack.IMeta
{
public ConvertSessionToToken() => throw null;
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public bool PreserveSession { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.ConvertSessionToTokenResponse` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class ConvertSessionToTokenResponse : ServiceStack.IMeta
{
public string AccessToken { get => throw null; set => throw null; }
public ConvertSessionToTokenResponse() => throw null;
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public string RefreshToken { get => throw null; set => throw null; }
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.CrudEvent` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class CrudEvent : ServiceStack.IMeta
{
public CrudEvent() => throw null;
public System.DateTime EventDate { get => throw null; set => throw null; }
public string EventType { get => throw null; set => throw null; }
public System.Int64 Id { get => throw null; set => throw null; }
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public string Model { get => throw null; set => throw null; }
public string ModelId { get => throw null; set => throw null; }
public int? RefId { get => throw null; set => throw null; }
public string RefIdStr { get => throw null; set => throw null; }
public string RemoteIp { get => throw null; set => throw null; }
public string RequestBody { get => throw null; set => throw null; }
public string RequestType { get => throw null; set => throw null; }
public System.Int64? RowsUpdated { get => throw null; set => throw null; }
public string Urn { get => throw null; set => throw null; }
public string UserAuthId { get => throw null; set => throw null; }
public string UserAuthName { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.CsvServiceClient` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class CsvServiceClient : ServiceStack.ServiceClientBase
{
public override string ContentType { get => throw null; }
public CsvServiceClient(string syncReplyBaseUri, string asyncOneWayBaseUri) => throw null;
public CsvServiceClient(string baseUri) => throw null;
public CsvServiceClient() => throw null;
public override T DeserializeFromStream<T>(System.IO.Stream stream) => throw null;
public override string Format { get => throw null; }
public override void SerializeToStream(ServiceStack.Web.IRequest req, object request, System.IO.Stream stream) => throw null;
public override ServiceStack.Web.StreamDeserializerDelegate StreamDeserializer { get => throw null; }
}
// Generated from `ServiceStack.DynamicRequest` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class DynamicRequest
{
public DynamicRequest() => throw null;
public System.Collections.Generic.Dictionary<string, string> Params { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.EncryptedMessage` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class EncryptedMessage : ServiceStack.IReturn<ServiceStack.EncryptedMessageResponse>, ServiceStack.IReturn
{
public string EncryptedBody { get => throw null; set => throw null; }
public EncryptedMessage() => throw null;
public string EncryptedSymmetricKey { get => throw null; set => throw null; }
public string KeyId { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.EncryptedMessageResponse` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class EncryptedMessageResponse
{
public string EncryptedBody { get => throw null; set => throw null; }
public EncryptedMessageResponse() => throw null;
}
// Generated from `ServiceStack.EncryptedServiceClient` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class EncryptedServiceClient : ServiceStack.IServiceGateway, ServiceStack.IReplyClient, ServiceStack.IHasVersion, ServiceStack.IHasSessionId, ServiceStack.IHasBearerToken, ServiceStack.IEncryptedClient
{
public string BearerToken { get => throw null; set => throw null; }
public ServiceStack.IJsonServiceClient Client { get => throw null; set => throw null; }
public ServiceStack.EncryptedMessage CreateEncryptedMessage(object request, string operationName, System.Byte[] cryptKey, System.Byte[] authKey, System.Byte[] iv, string verb = default(string)) => throw null;
public ServiceStack.WebServiceException DecryptedException(ServiceStack.WebServiceException ex, System.Byte[] cryptKey, System.Byte[] authKey) => throw null;
public EncryptedServiceClient(ServiceStack.IJsonServiceClient client, string publicKeyXml) => throw null;
public EncryptedServiceClient(ServiceStack.IJsonServiceClient client, System.Security.Cryptography.RSAParameters publicKey) => throw null;
public string KeyId { get => throw null; set => throw null; }
public System.Security.Cryptography.RSAParameters PublicKey { get => throw null; set => throw null; }
public void Publish(object request) => throw null;
public void PublishAll(System.Collections.Generic.IEnumerable<object> requests) => throw null;
public TResponse Send<TResponse>(string httpMethod, object request) => throw null;
public TResponse Send<TResponse>(string httpMethod, ServiceStack.IReturn<TResponse> request) => throw null;
public TResponse Send<TResponse>(object request) => throw null;
public System.Collections.Generic.List<TResponse> SendAll<TResponse>(System.Collections.Generic.IEnumerable<object> requests) => throw null;
public string ServerPublicKeyXml { get => throw null; set => throw null; }
public string SessionId { get => throw null; set => throw null; }
public int Version { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.ExceptionFilterDelegate` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public delegate object ExceptionFilterDelegate(System.Net.WebException webEx, System.Net.WebResponse webResponse, string requestUri, System.Type responseType);
// Generated from `ServiceStack.FileContent` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class FileContent
{
public System.Byte[] Body { get => throw null; set => throw null; }
public FileContent() => throw null;
public int Length { get => throw null; set => throw null; }
public string Name { get => throw null; set => throw null; }
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; }
public string Type { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.GetAccessToken` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class GetAccessToken : ServiceStack.IVerb, ServiceStack.IReturn<ServiceStack.GetAccessTokenResponse>, ServiceStack.IReturn, ServiceStack.IPost, ServiceStack.IMeta
{
public GetAccessToken() => throw null;
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public string RefreshToken { get => throw null; set => throw null; }
public bool? UseTokenCookie { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.GetAccessTokenResponse` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class GetAccessTokenResponse : ServiceStack.IMeta, ServiceStack.IHasResponseStatus
{
public string AccessToken { get => throw null; set => throw null; }
public GetAccessTokenResponse() => throw null;
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.GetApiKeys` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class GetApiKeys : ServiceStack.IVerb, ServiceStack.IReturn<ServiceStack.GetApiKeysResponse>, ServiceStack.IReturn, ServiceStack.IMeta, ServiceStack.IGet
{
public string Environment { get => throw null; set => throw null; }
public GetApiKeys() => throw null;
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.GetApiKeysResponse` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class GetApiKeysResponse : ServiceStack.IMeta, ServiceStack.IHasResponseStatus
{
public GetApiKeysResponse() => throw null;
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; }
public System.Collections.Generic.List<ServiceStack.UserApiKey> Results { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.GetCrudEvents` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class GetCrudEvents : ServiceStack.QueryDb<ServiceStack.CrudEvent>
{
public string AuthSecret { get => throw null; set => throw null; }
public GetCrudEvents() => throw null;
public string Model { get => throw null; set => throw null; }
public string ModelId { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.GetEventSubscribers` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class GetEventSubscribers : ServiceStack.IVerb, ServiceStack.IReturn<System.Collections.Generic.List<System.Collections.Generic.Dictionary<string, string>>>, ServiceStack.IReturn, ServiceStack.IGet
{
public string[] Channels { get => throw null; set => throw null; }
public GetEventSubscribers() => throw null;
}
// Generated from `ServiceStack.GetFile` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class GetFile : ServiceStack.IVerb, ServiceStack.IReturn<ServiceStack.FileContent>, ServiceStack.IReturn, ServiceStack.IGet
{
public GetFile() => throw null;
public string Path { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.GetNavItems` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class GetNavItems : ServiceStack.IReturn<ServiceStack.GetNavItemsResponse>, ServiceStack.IReturn
{
public GetNavItems() => throw null;
public string Name { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.GetNavItemsResponse` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class GetNavItemsResponse : ServiceStack.IMeta
{
public string BaseUrl { get => throw null; set => throw null; }
public GetNavItemsResponse() => throw null;
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<ServiceStack.NavItem>> NavItemsMap { get => throw null; set => throw null; }
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; }
public System.Collections.Generic.List<ServiceStack.NavItem> Results { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.GetPublicKey` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class GetPublicKey : ServiceStack.IReturn<string>, ServiceStack.IReturn
{
public GetPublicKey() => throw null;
}
// Generated from `ServiceStack.GetValidationRules` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class GetValidationRules : ServiceStack.IReturn<ServiceStack.GetValidationRulesResponse>, ServiceStack.IReturn
{
public string AuthSecret { get => throw null; set => throw null; }
public GetValidationRules() => throw null;
public string Type { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.GetValidationRulesResponse` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class GetValidationRulesResponse
{
public GetValidationRulesResponse() => throw null;
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; }
public System.Collections.Generic.List<ServiceStack.ValidationRule> Results { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.HashUtils` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class HashUtils
{
public static System.Security.Cryptography.HashAlgorithm GetHashAlgorithm(string hashAlgorithm) => throw null;
}
// Generated from `ServiceStack.HmacUtils` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class HmacUtils
{
public static System.Byte[] Authenticate(System.Byte[] encryptedBytes, System.Byte[] authKey, System.Byte[] iv) => throw null;
public static System.Security.Cryptography.HMAC CreateHashAlgorithm(System.Byte[] authKey) => throw null;
public static System.Byte[] DecryptAuthenticated(System.Byte[] authEncryptedBytes, System.Byte[] cryptKey) => throw null;
public const int KeySize = default;
public const int KeySizeBytes = default;
public static bool Verify(System.Byte[] authEncryptedBytes, System.Byte[] authKey) => throw null;
}
// Generated from `ServiceStack.HttpCacheEntry` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class HttpCacheEntry
{
public System.TimeSpan? Age { get => throw null; set => throw null; }
public bool CanUseCacheOnError() => throw null;
public System.Int64? ContentLength { get => throw null; set => throw null; }
public System.DateTime Created { get => throw null; set => throw null; }
public string ETag { get => throw null; set => throw null; }
public System.DateTime Expires { get => throw null; set => throw null; }
public bool HasExpired() => throw null;
public HttpCacheEntry(object response) => throw null;
public System.DateTime? LastModified { get => throw null; set => throw null; }
public System.TimeSpan MaxAge { get => throw null; set => throw null; }
public bool MustRevalidate { get => throw null; set => throw null; }
public bool NoCache { get => throw null; set => throw null; }
public object Response { get => throw null; set => throw null; }
public void SetMaxAge(System.TimeSpan maxAge) => throw null;
public bool ShouldRevalidate() => throw null;
}
// Generated from `ServiceStack.HttpExt` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class HttpExt
{
public static string GetDispositionFileName(string fileName) => throw null;
public static bool HasNonAscii(string s) => throw null;
}
// Generated from `ServiceStack.ICachedServiceClient` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public interface ICachedServiceClient : System.IDisposable, ServiceStack.IServiceGatewayAsync, ServiceStack.IServiceGateway, ServiceStack.IServiceClientSync, ServiceStack.IServiceClientCommon, ServiceStack.IServiceClientAsync, ServiceStack.IServiceClient, ServiceStack.IRestServiceClient, ServiceStack.IRestClientSync, ServiceStack.IRestClientAsync, ServiceStack.IRestClient, ServiceStack.IReplyClient, ServiceStack.IOneWayClient, ServiceStack.IHttpRestClientAsync, ServiceStack.IHasVersion, ServiceStack.IHasSessionId, ServiceStack.IHasBearerToken
{
int CacheCount { get; }
System.Int64 CacheHits { get; }
System.Int64 CachesAdded { get; }
System.Int64 CachesRemoved { get; }
System.Int64 ErrorFallbackHits { get; }
System.Int64 NotModifiedHits { get; }
int RemoveCachesOlderThan(System.TimeSpan age);
int RemoveExpiredCachesOlderThan(System.TimeSpan age);
void SetCache(System.Collections.Concurrent.ConcurrentDictionary<string, ServiceStack.HttpCacheEntry> cache);
}
// Generated from `ServiceStack.ICachedServiceClientExtensions` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class ICachedServiceClientExtensions
{
public static void ClearCache(this ServiceStack.ICachedServiceClient client) => throw null;
public static System.Collections.Generic.Dictionary<string, string> GetStats(this ServiceStack.ICachedServiceClient client) => throw null;
}
// Generated from `ServiceStack.IHasCookieContainer` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public interface IHasCookieContainer
{
System.Net.CookieContainer CookieContainer { get; }
}
// Generated from `ServiceStack.IServiceClientMeta` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public interface IServiceClientMeta
{
bool AlwaysSendBasicAuthHeader { get; }
string AsyncOneWayBaseUri { get; }
string BaseUri { get; set; }
string BearerToken { get; set; }
string Format { get; }
string Password { get; }
string RefreshToken { get; set; }
string RefreshTokenUri { get; set; }
string ResolveTypedUrl(string httpMethod, object requestDto);
string ResolveUrl(string httpMethod, string relativeOrAbsoluteUrl);
string SessionId { get; }
string SyncReplyBaseUri { get; }
string UserName { get; }
int Version { get; }
}
// Generated from `ServiceStack.ITimer` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public interface ITimer : System.IDisposable
{
void Cancel();
}
// Generated from `ServiceStack.JsonServiceClient` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class JsonServiceClient : ServiceStack.ServiceClientBase, System.IDisposable, ServiceStack.IServiceGatewayAsync, ServiceStack.IServiceGateway, ServiceStack.IServiceClientSync, ServiceStack.IServiceClientCommon, ServiceStack.IServiceClientAsync, ServiceStack.IServiceClient, ServiceStack.IRestServiceClient, ServiceStack.IRestClientSync, ServiceStack.IRestClientAsync, ServiceStack.IRestClient, ServiceStack.IReplyClient, ServiceStack.IOneWayClient, ServiceStack.IJsonServiceClient, ServiceStack.IHttpRestClientAsync, ServiceStack.IHasVersion, ServiceStack.IHasSessionId, ServiceStack.IHasBearerToken
{
public override string ContentType { get => throw null; }
public override T DeserializeFromStream<T>(System.IO.Stream stream) => throw null;
public override string Format { get => throw null; }
public JsonServiceClient(string syncReplyBaseUri, string asyncOneWayBaseUri) => throw null;
public JsonServiceClient(string baseUri) => throw null;
public JsonServiceClient() => throw null;
public override void SerializeToStream(ServiceStack.Web.IRequest req, object request, System.IO.Stream stream) => throw null;
public override ServiceStack.Web.StreamDeserializerDelegate StreamDeserializer { get => throw null; }
}
// Generated from `ServiceStack.JsvServiceClient` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class JsvServiceClient : ServiceStack.ServiceClientBase
{
public override string ContentType { get => throw null; }
public override T DeserializeFromStream<T>(System.IO.Stream stream) => throw null;
public override string Format { get => throw null; }
public JsvServiceClient(string syncReplyBaseUri, string asyncOneWayBaseUri) => throw null;
public JsvServiceClient(string baseUri) => throw null;
public JsvServiceClient() => throw null;
public override void SerializeToStream(ServiceStack.Web.IRequest req, object request, System.IO.Stream stream) => throw null;
public override ServiceStack.Web.StreamDeserializerDelegate StreamDeserializer { get => throw null; }
}
// Generated from `ServiceStack.MessageExtensions` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class MessageExtensions
{
public static ServiceStack.Messaging.IMessageProducer CreateMessageProducer(this ServiceStack.Messaging.IMessageService mqServer) => throw null;
public static ServiceStack.Messaging.IMessageQueueClient CreateMessageQueueClient(this ServiceStack.Messaging.IMessageService mqServer) => throw null;
public static System.Byte[] ToBytes<T>(this ServiceStack.Messaging.IMessage<T> message) => throw null;
public static System.Byte[] ToBytes(this ServiceStack.Messaging.IMessage message) => throw null;
public static string ToDlqQueueName(this ServiceStack.Messaging.IMessage message) => throw null;
public static string ToInQueueName<T>(this ServiceStack.Messaging.IMessage<T> message) => throw null;
public static string ToInQueueName(this ServiceStack.Messaging.IMessage message) => throw null;
public static ServiceStack.Messaging.Message<T> ToMessage<T>(this System.Byte[] bytes) => throw null;
public static ServiceStack.Messaging.IMessage ToMessage(this System.Byte[] bytes, System.Type ofType) => throw null;
public static string ToString(System.Byte[] bytes) => throw null;
}
// Generated from `ServiceStack.MetadataApp` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class MetadataApp
{
public MetadataApp() => throw null;
}
// Generated from `ServiceStack.ModifyValidationRules` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class ModifyValidationRules : ServiceStack.IReturnVoid, ServiceStack.IReturn
{
public string AuthSecret { get => throw null; set => throw null; }
public bool? ClearCache { get => throw null; set => throw null; }
public int[] DeleteRuleIds { get => throw null; set => throw null; }
public ModifyValidationRules() => throw null;
public System.Collections.Generic.List<ServiceStack.ValidationRule> SaveRules { get => throw null; set => throw null; }
public int[] SuspendRuleIds { get => throw null; set => throw null; }
public int[] UnsuspendRuleIds { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.NameValueCollectionWrapperExtensions` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class NameValueCollectionWrapperExtensions
{
public static System.Collections.Generic.Dictionary<string, string> ToDictionary(this System.Collections.Specialized.NameValueCollection nameValues) => throw null;
public static string ToFormUrlEncoded(this System.Collections.Specialized.NameValueCollection queryParams) => throw null;
public static System.Collections.Specialized.NameValueCollection ToNameValueCollection(this System.Collections.Generic.Dictionary<string, string> map) => throw null;
}
// Generated from `ServiceStack.NetStandardPclExportClient` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class NetStandardPclExportClient : ServiceStack.PclExportClient
{
public static ServiceStack.PclExportClient Configure() => throw null;
public override string GetHeader(System.Net.WebHeaderCollection headers, string name, System.Func<string, bool> valuePredicate) => throw null;
public NetStandardPclExportClient() => throw null;
public static ServiceStack.NetStandardPclExportClient Provider;
public override void SetIfModifiedSince(System.Net.HttpWebRequest webReq, System.DateTime lastModified) => throw null;
}
// Generated from `ServiceStack.NewInstanceResolver` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class NewInstanceResolver : ServiceStack.Configuration.IResolver
{
public NewInstanceResolver() => throw null;
public T TryResolve<T>() => throw null;
}
// Generated from `ServiceStack.PclExportClient` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class PclExportClient
{
public virtual void AddHeader(System.Net.WebRequest webReq, System.Collections.Specialized.NameValueCollection headers) => throw null;
public virtual void CloseReadStream(System.IO.Stream stream) => throw null;
public virtual void CloseWriteStream(System.IO.Stream stream) => throw null;
public static void Configure(ServiceStack.PclExportClient instance) => throw null;
public static bool ConfigureProvider(string typeName) => throw null;
public virtual System.Exception CreateTimeoutException(System.Exception ex, string errorMsg) => throw null;
public virtual ServiceStack.ITimer CreateTimer(System.Threading.TimerCallback cb, System.TimeSpan timeOut, object state) => throw null;
public static System.Threading.Tasks.Task<object> EmptyTask;
public virtual string GetHeader(System.Net.WebHeaderCollection headers, string name, System.Func<string, bool> valuePredicate) => throw null;
public virtual string HtmlAttributeEncode(string html) => throw null;
public virtual string HtmlDecode(string html) => throw null;
public virtual string HtmlEncode(string html) => throw null;
public static ServiceStack.PclExportClient Instance;
public virtual bool IsWebException(System.Net.WebException webEx) => throw null;
public System.Collections.Specialized.NameValueCollection NewNameValueCollection() => throw null;
public virtual System.Collections.Specialized.NameValueCollection ParseQueryString(string query) => throw null;
public PclExportClient() => throw null;
public virtual void RunOnUiThread(System.Action fn) => throw null;
public virtual void SetCookieContainer(System.Net.HttpWebRequest webRequest, ServiceStack.ServiceClientBase client) => throw null;
public virtual void SetCookieContainer(System.Net.HttpWebRequest webRequest, ServiceStack.AsyncServiceClient client) => throw null;
public virtual void SetIfModifiedSince(System.Net.HttpWebRequest webReq, System.DateTime lastModified) => throw null;
public virtual void SynchronizeCookies(ServiceStack.AsyncServiceClient client) => throw null;
public System.Threading.SynchronizationContext UiContext;
public virtual string UrlDecode(string url) => throw null;
public virtual string UrlEncode(string url) => throw null;
public virtual System.Threading.Tasks.Task WaitAsync(int waitForMs) => throw null;
}
// Generated from `ServiceStack.PlatformRsaUtils` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class PlatformRsaUtils
{
public static System.Byte[] Decrypt(this System.Security.Cryptography.RSA rsa, System.Byte[] bytes) => throw null;
public static System.Byte[] Encrypt(this System.Security.Cryptography.RSA rsa, System.Byte[] bytes) => throw null;
public static string ExportToXml(System.Security.Cryptography.RSAParameters csp, bool includePrivateParameters) => throw null;
public static System.Security.Cryptography.RSAParameters ExtractFromXml(string xml) => throw null;
public static void FromXml(this System.Security.Cryptography.RSA rsa, string xml) => throw null;
public static System.Byte[] SignData(this System.Security.Cryptography.RSA rsa, System.Byte[] bytes, string hashAlgorithm) => throw null;
public static System.Security.Cryptography.HashAlgorithmName ToHashAlgorithmName(string hashAlgorithm) => throw null;
public static string ToXml(this System.Security.Cryptography.RSA rsa, bool includePrivateParameters) => throw null;
public static bool VerifyData(this System.Security.Cryptography.RSA rsa, System.Byte[] bytes, System.Byte[] signature, string hashAlgorithm) => throw null;
}
// Generated from `ServiceStack.ProgressDelegate` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public delegate void ProgressDelegate(System.Int64 done, System.Int64 total);
// Generated from `ServiceStack.RefreshTokenException` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class RefreshTokenException : ServiceStack.WebServiceException
{
public RefreshTokenException(string message, System.Exception innerException) => throw null;
public RefreshTokenException(string message) => throw null;
public RefreshTokenException(ServiceStack.WebServiceException webEx) => throw null;
}
// Generated from `ServiceStack.RegenerateApiKeys` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class RegenerateApiKeys : ServiceStack.IVerb, ServiceStack.IReturn<ServiceStack.RegenerateApiKeysResponse>, ServiceStack.IReturn, ServiceStack.IPost, ServiceStack.IMeta
{
public string Environment { get => throw null; set => throw null; }
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public RegenerateApiKeys() => throw null;
}
// Generated from `ServiceStack.RegenerateApiKeysResponse` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class RegenerateApiKeysResponse : ServiceStack.IMeta, ServiceStack.IHasResponseStatus
{
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public RegenerateApiKeysResponse() => throw null;
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; }
public System.Collections.Generic.List<ServiceStack.UserApiKey> Results { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.Register` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class Register : ServiceStack.IVerb, ServiceStack.IReturn<ServiceStack.RegisterResponse>, ServiceStack.IReturn, ServiceStack.IPost, ServiceStack.IMeta
{
public bool? AutoLogin { get => throw null; set => throw null; }
public string ConfirmPassword { get => throw null; set => throw null; }
public string DisplayName { get => throw null; set => throw null; }
public string Email { get => throw null; set => throw null; }
public string ErrorView { get => throw null; set => throw null; }
public string FirstName { get => throw null; set => throw null; }
public string LastName { get => throw null; set => throw null; }
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public string Password { get => throw null; set => throw null; }
public Register() => throw null;
public string UserName { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.RegisterResponse` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class RegisterResponse : ServiceStack.IMeta
{
public string BearerToken { get => throw null; set => throw null; }
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public string ReferrerUrl { get => throw null; set => throw null; }
public string RefreshToken { get => throw null; set => throw null; }
public RegisterResponse() => throw null;
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; }
public string SessionId { get => throw null; set => throw null; }
public string UserId { get => throw null; set => throw null; }
public string UserName { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.ResponseStatusUtils` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class ResponseStatusUtils
{
public static ServiceStack.ResponseStatus CreateResponseStatus(string errorCode, string errorMessage, System.Collections.Generic.IEnumerable<ServiceStack.Validation.ValidationErrorField> validationErrors = default(System.Collections.Generic.IEnumerable<ServiceStack.Validation.ValidationErrorField>)) => throw null;
}
// Generated from `ServiceStack.RestRoute` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class RestRoute
{
public ServiceStack.RouteResolutionResult Apply(object request, string httpMethod) => throw null;
public const string EmptyArray = default;
public string ErrorMsg { get => throw null; set => throw null; }
public static System.Func<object, string> FormatQueryParameterValue;
public string FormatQueryParameters(object request) => throw null;
public static System.Func<object, string> FormatVariable;
public string[] HttpMethods { get => throw null; }
public bool IsValid { get => throw null; }
public string Path { get => throw null; }
public int Priority { get => throw null; }
public System.Collections.Generic.List<string> QueryStringVariables { get => throw null; }
public RestRoute(System.Type type, string path, string verbs, int priority) => throw null;
public System.Type Type { get => throw null; set => throw null; }
public System.Collections.Generic.ICollection<string> Variables { get => throw null; }
}
// Generated from `ServiceStack.ResultsFilterDelegate` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public delegate object ResultsFilterDelegate(System.Type responseType, string httpMethod, string requestUri, object request);
// Generated from `ServiceStack.ResultsFilterResponseDelegate` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public delegate void ResultsFilterResponseDelegate(System.Net.WebResponse webResponse, object response, string httpMethod, string requestUri, object request);
// Generated from `ServiceStack.RouteResolutionResult` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class RouteResolutionResult
{
public static ServiceStack.RouteResolutionResult Error(ServiceStack.RestRoute route, string errorMsg) => throw null;
public string FailReason { get => throw null; set => throw null; }
public bool Matches { get => throw null; }
public ServiceStack.RestRoute Route { get => throw null; set => throw null; }
public RouteResolutionResult() => throw null;
public static ServiceStack.RouteResolutionResult Success(ServiceStack.RestRoute route, string uri) => throw null;
public string Uri { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.RsaKeyLengths` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public enum RsaKeyLengths
{
Bit1024,
Bit2048,
Bit4096,
}
// Generated from `ServiceStack.RsaKeyPair` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class RsaKeyPair
{
public string PrivateKey { get => throw null; set => throw null; }
public string PublicKey { get => throw null; set => throw null; }
public RsaKeyPair() => throw null;
}
// Generated from `ServiceStack.RsaUtils` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class RsaUtils
{
public static System.Byte[] Authenticate(System.Byte[] dataToSign, System.Security.Cryptography.RSAParameters privateKey, string hashAlgorithm = default(string), ServiceStack.RsaKeyLengths rsaKeyLength = default(ServiceStack.RsaKeyLengths)) => throw null;
public static System.Security.Cryptography.RSAParameters CreatePrivateKeyParams(ServiceStack.RsaKeyLengths rsaKeyLength = default(ServiceStack.RsaKeyLengths)) => throw null;
public static ServiceStack.RsaKeyPair CreatePublicAndPrivateKeyPair(ServiceStack.RsaKeyLengths rsaKeyLength = default(ServiceStack.RsaKeyLengths)) => throw null;
public static string Decrypt(this string text) => throw null;
public static string Decrypt(string encryptedText, string privateKeyXml, ServiceStack.RsaKeyLengths rsaKeyLength = default(ServiceStack.RsaKeyLengths)) => throw null;
public static string Decrypt(string encryptedText, System.Security.Cryptography.RSAParameters privateKey, ServiceStack.RsaKeyLengths rsaKeyLength = default(ServiceStack.RsaKeyLengths)) => throw null;
public static System.Byte[] Decrypt(System.Byte[] encryptedBytes, string privateKeyXml, ServiceStack.RsaKeyLengths rsaKeyLength = default(ServiceStack.RsaKeyLengths)) => throw null;
public static System.Byte[] Decrypt(System.Byte[] encryptedBytes, System.Security.Cryptography.RSAParameters privateKey, ServiceStack.RsaKeyLengths rsaKeyLength = default(ServiceStack.RsaKeyLengths)) => throw null;
public static ServiceStack.RsaKeyPair DefaultKeyPair;
public static bool DoOAEPPadding;
public static string Encrypt(this string text) => throw null;
public static string Encrypt(string text, string publicKeyXml, ServiceStack.RsaKeyLengths rsaKeyLength = default(ServiceStack.RsaKeyLengths)) => throw null;
public static string Encrypt(string text, System.Security.Cryptography.RSAParameters publicKey, ServiceStack.RsaKeyLengths rsaKeyLength = default(ServiceStack.RsaKeyLengths)) => throw null;
public static System.Byte[] Encrypt(System.Byte[] bytes, string publicKeyXml, ServiceStack.RsaKeyLengths rsaKeyLength = default(ServiceStack.RsaKeyLengths)) => throw null;
public static System.Byte[] Encrypt(System.Byte[] bytes, System.Security.Cryptography.RSAParameters publicKey, ServiceStack.RsaKeyLengths rsaKeyLength = default(ServiceStack.RsaKeyLengths)) => throw null;
public static string FromPrivateRSAParameters(this System.Security.Cryptography.RSAParameters privateKey) => throw null;
public static string FromPublicRSAParameters(this System.Security.Cryptography.RSAParameters publicKey) => throw null;
public static ServiceStack.RsaKeyLengths KeyLength;
public static string ToPrivateKeyXml(this System.Security.Cryptography.RSAParameters privateKey) => throw null;
public static System.Security.Cryptography.RSAParameters ToPrivateRSAParameters(this string privateKeyXml) => throw null;
public static string ToPublicKeyXml(this System.Security.Cryptography.RSAParameters publicKey) => throw null;
public static System.Security.Cryptography.RSAParameters ToPublicRSAParameters(this string publicKeyXml) => throw null;
public static System.Security.Cryptography.RSAParameters ToPublicRsaParameters(this System.Security.Cryptography.RSAParameters privateKey) => throw null;
public static bool Verify(System.Byte[] dataToVerify, System.Byte[] signature, System.Security.Cryptography.RSAParameters publicKey, string hashAlgorithm = default(string), ServiceStack.RsaKeyLengths rsaKeyLength = default(ServiceStack.RsaKeyLengths)) => throw null;
}
// Generated from `ServiceStack.ServerEventCallback` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public delegate void ServerEventCallback(ServiceStack.ServerEventsClient source, ServiceStack.ServerEventMessage args);
// Generated from `ServiceStack.ServerEventClientExtensions` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class ServerEventClientExtensions
{
public static ServiceStack.AuthenticateResponse Authenticate(this ServiceStack.ServerEventsClient client, ServiceStack.Authenticate request) => throw null;
public static System.Threading.Tasks.Task<ServiceStack.AuthenticateResponse> AuthenticateAsync(this ServiceStack.ServerEventsClient client, ServiceStack.Authenticate request) => throw null;
public static System.Collections.Generic.List<ServiceStack.ServerEventUser> GetChannelSubscribers(this ServiceStack.ServerEventsClient client) => throw null;
public static System.Threading.Tasks.Task<System.Collections.Generic.List<ServiceStack.ServerEventUser>> GetChannelSubscribersAsync(this ServiceStack.ServerEventsClient client) => throw null;
public static T Populate<T>(this T dst, ServiceStack.ServerEventMessage src, System.Collections.Generic.Dictionary<string, string> msg) where T : ServiceStack.ServerEventMessage => throw null;
public static ServiceStack.ServerEventsClient RegisterHandlers(this ServiceStack.ServerEventsClient client, System.Collections.Generic.Dictionary<string, ServiceStack.ServerEventCallback> handlers) => throw null;
public static void SubscribeToChannels(this ServiceStack.ServerEventsClient client, params string[] channels) => throw null;
public static System.Threading.Tasks.Task SubscribeToChannelsAsync(this ServiceStack.ServerEventsClient client, params string[] channels) => throw null;
public static void UnsubscribeFromChannels(this ServiceStack.ServerEventsClient client, params string[] channels) => throw null;
public static System.Threading.Tasks.Task UnsubscribeFromChannelsAsync(this ServiceStack.ServerEventsClient client, params string[] channels) => throw null;
public static void UpdateSubscriber(this ServiceStack.ServerEventsClient client, ServiceStack.UpdateEventSubscriber request) => throw null;
public static System.Threading.Tasks.Task UpdateSubscriberAsync(this ServiceStack.ServerEventsClient client, ServiceStack.UpdateEventSubscriber request) => throw null;
}
// Generated from `ServiceStack.ServerEventCommand` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class ServerEventCommand : ServiceStack.ServerEventMessage
{
public string[] Channels { get => throw null; set => throw null; }
public System.DateTime CreatedAt { get => throw null; set => throw null; }
public string DisplayName { get => throw null; set => throw null; }
public bool IsAuthenticated { get => throw null; set => throw null; }
public string ProfileUrl { get => throw null; set => throw null; }
public ServerEventCommand() => throw null;
public string UserId { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.ServerEventConnect` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class ServerEventConnect : ServiceStack.ServerEventCommand
{
public System.Int64 HeartbeatIntervalMs { get => throw null; set => throw null; }
public string HeartbeatUrl { get => throw null; set => throw null; }
public string Id { get => throw null; set => throw null; }
public System.Int64 IdleTimeoutMs { get => throw null; set => throw null; }
public ServerEventConnect() => throw null;
public string UnRegisterUrl { get => throw null; set => throw null; }
public string UpdateSubscriberUrl { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.ServerEventHeartbeat` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class ServerEventHeartbeat : ServiceStack.ServerEventCommand
{
public ServerEventHeartbeat() => throw null;
}
// Generated from `ServiceStack.ServerEventJoin` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class ServerEventJoin : ServiceStack.ServerEventCommand
{
public ServerEventJoin() => throw null;
}
// Generated from `ServiceStack.ServerEventLeave` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class ServerEventLeave : ServiceStack.ServerEventCommand
{
public ServerEventLeave() => throw null;
}
// Generated from `ServiceStack.ServerEventMessage` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class ServerEventMessage : ServiceStack.IMeta
{
public string Channel { get => throw null; set => throw null; }
public string CssSelector { get => throw null; set => throw null; }
public string Data { get => throw null; set => throw null; }
public System.Int64 EventId { get => throw null; set => throw null; }
public string Json { get => throw null; set => throw null; }
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public string Op { get => throw null; set => throw null; }
public string Selector { get => throw null; set => throw null; }
public ServerEventMessage() => throw null;
public string Target { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.ServerEventReceiver` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class ServerEventReceiver : ServiceStack.IReceiver
{
public ServiceStack.ServerEventsClient Client { get => throw null; set => throw null; }
public static ServiceStack.Logging.ILog Log;
public virtual void NoSuchMethod(string selector, object message) => throw null;
public ServiceStack.ServerEventMessage Request { get => throw null; set => throw null; }
public ServerEventReceiver() => throw null;
}
// Generated from `ServiceStack.ServerEventUpdate` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class ServerEventUpdate : ServiceStack.ServerEventCommand
{
public ServerEventUpdate() => throw null;
}
// Generated from `ServiceStack.ServerEventUser` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class ServerEventUser : ServiceStack.IMeta
{
public string[] Channels { get => throw null; set => throw null; }
public string DisplayName { get => throw null; set => throw null; }
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public string ProfileUrl { get => throw null; set => throw null; }
public ServerEventUser() => throw null;
public string UserId { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.ServerEventsClient` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class ServerEventsClient : System.IDisposable
{
public ServiceStack.ServerEventsClient AddListener(string eventName, System.Action<ServiceStack.ServerEventMessage> handler) => throw null;
public System.Action<System.Net.WebRequest> AllRequestFilters { get => throw null; set => throw null; }
public string BaseUri { get => throw null; set => throw null; }
public static int BufferSize;
public string[] Channels { get => throw null; set => throw null; }
public System.Threading.Tasks.Task<ServiceStack.ServerEventConnect> Connect() => throw null;
public string ConnectionDisplayName { get => throw null; }
public ServiceStack.ServerEventConnect ConnectionInfo { get => throw null; set => throw null; }
public void Dispose() => throw null;
public string EventStreamPath { get => throw null; set => throw null; }
public System.Action<System.Net.WebRequest> EventStreamRequestFilter { get => throw null; set => throw null; }
public string EventStreamUri { get => throw null; set => throw null; }
public virtual string GetStatsDescription() => throw null;
public System.Collections.Concurrent.ConcurrentDictionary<string, ServiceStack.ServerEventCallback> Handlers { get => throw null; }
public bool HasListener(string eventName, System.Action<ServiceStack.ServerEventMessage> handler) => throw null;
public bool HasListeners(string eventName) => throw null;
protected void Heartbeat(object state) => throw null;
public System.Action<System.Net.WebRequest> HeartbeatRequestFilter { get => throw null; set => throw null; }
public virtual System.Threading.Tasks.Task InternalStop() => throw null;
public bool IsStopped { get => throw null; }
public System.DateTime LastPulseAt { get => throw null; set => throw null; }
public System.Collections.Concurrent.ConcurrentDictionary<string, ServiceStack.ServerEventCallback> NamedReceivers { get => throw null; }
public System.Action<ServiceStack.ServerEventMessage> OnCommand;
protected void OnCommandReceived(ServiceStack.ServerEventCommand e) => throw null;
public System.Action<ServiceStack.ServerEventConnect> OnConnect;
protected void OnConnectReceived() => throw null;
public System.Action<System.Exception> OnException;
protected void OnExceptionReceived(System.Exception ex) => throw null;
public System.Action OnHeartbeat;
protected void OnHeartbeatReceived(ServiceStack.ServerEventHeartbeat e) => throw null;
public System.Action<ServiceStack.ServerEventJoin> OnJoin;
protected void OnJoinReceived(ServiceStack.ServerEventJoin e) => throw null;
public System.Action<ServiceStack.ServerEventLeave> OnLeave;
protected void OnLeaveReceived(ServiceStack.ServerEventLeave e) => throw null;
public System.Action<ServiceStack.ServerEventMessage> OnMessage;
protected void OnMessageReceived(ServiceStack.ServerEventMessage e) => throw null;
public System.Action OnReconnect;
public System.Action<ServiceStack.ServerEventUpdate> OnUpdate;
protected void OnUpdateReceived(ServiceStack.ServerEventUpdate e) => throw null;
public void ProcessLine(string line) => throw null;
public void ProcessResponse(System.IO.Stream stream) => throw null;
public void RaiseEvent(string eventName, ServiceStack.ServerEventMessage message) => throw null;
public System.Collections.Generic.List<System.Type> ReceiverTypes { get => throw null; }
public ServiceStack.ServerEventsClient RegisterNamedReceiver<T>(string receiverName) where T : ServiceStack.IReceiver => throw null;
public ServiceStack.ServerEventsClient RegisterReceiver<T>() where T : ServiceStack.IReceiver => throw null;
public void RemoveAllListeners() => throw null;
public void RemoveAllRegistrations() => throw null;
public ServiceStack.ServerEventsClient RemoveListener(string eventName, System.Action<ServiceStack.ServerEventMessage> handler) => throw null;
public ServiceStack.ServerEventsClient RemoveListeners(string eventName) => throw null;
public System.Func<string, string> ResolveStreamUrl { get => throw null; set => throw null; }
public ServiceStack.Configuration.IResolver Resolver { get => throw null; set => throw null; }
public void Restart() => throw null;
public ServerEventsClient(string baseUri, params string[] channels) => throw null;
public ServiceStack.IServiceClient ServiceClient { get => throw null; set => throw null; }
public ServiceStack.ServerEventsClient Start() => throw null;
protected void StartNewHeartbeat() => throw null;
public string Status { get => throw null; }
public virtual System.Threading.Tasks.Task Stop() => throw null;
public bool StrictMode { get => throw null; set => throw null; }
public string SubscriptionId { get => throw null; }
public int TimesStarted { get => throw null; }
public static ServiceStack.ServerEventMessage ToTypedMessage(ServiceStack.ServerEventMessage e) => throw null;
public System.Action<System.Net.WebRequest> UnRegisterRequestFilter { get => throw null; set => throw null; }
public void Update(string[] subscribe = default(string[]), string[] unsubscribe = default(string[])) => throw null;
public System.Threading.Tasks.Task<ServiceStack.ServerEventCommand> WaitForNextCommand() => throw null;
public System.Threading.Tasks.Task<ServiceStack.ServerEventHeartbeat> WaitForNextHeartbeat() => throw null;
public System.Threading.Tasks.Task<ServiceStack.ServerEventMessage> WaitForNextMessage() => throw null;
}
// Generated from `ServiceStack.ServiceClientBase` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public abstract class ServiceClientBase : System.IDisposable, ServiceStack.Messaging.IMessageProducer, ServiceStack.IServiceGatewayAsync, ServiceStack.IServiceGateway, ServiceStack.IServiceClientSync, ServiceStack.IServiceClientMeta, ServiceStack.IServiceClientCommon, ServiceStack.IServiceClientAsync, ServiceStack.IServiceClient, ServiceStack.IRestServiceClient, ServiceStack.IRestClientSync, ServiceStack.IRestClientAsync, ServiceStack.IRestClient, ServiceStack.IReplyClient, ServiceStack.IOneWayClient, ServiceStack.IHttpRestClientAsync, ServiceStack.IHasVersion, ServiceStack.IHasSessionId, ServiceStack.IHasCookieContainer, ServiceStack.IHasBearerToken
{
public virtual string Accept { get => throw null; }
public void AddHeader(string name, string value) => throw null;
public bool AllowAutoRedirect { get => throw null; set => throw null; }
public bool AlwaysSendBasicAuthHeader { get => throw null; set => throw null; }
public string AsyncOneWayBaseUri { get => throw null; set => throw null; }
public string BaseUri { get => throw null; set => throw null; }
public string BearerToken { get => throw null; set => throw null; }
public void ClearCookies() => throw null;
public abstract string ContentType { get; }
public System.Net.CookieContainer CookieContainer { get => throw null; set => throw null; }
public System.Net.ICredentials Credentials { get => throw null; set => throw null; }
public virtual void CustomMethod(string httpVerb, ServiceStack.IReturnVoid requestDto) => throw null;
public virtual TResponse CustomMethod<TResponse>(string httpVerb, string relativeOrAbsoluteUrl, object requestDto = default(object)) => throw null;
public virtual TResponse CustomMethod<TResponse>(string httpVerb, object requestDto) => throw null;
public virtual TResponse CustomMethod<TResponse>(string httpVerb, ServiceStack.IReturn<TResponse> requestDto) => throw null;
public virtual System.Net.HttpWebResponse CustomMethod(string httpVerb, string relativeOrAbsoluteUrl, object requestDto) => throw null;
public virtual System.Net.HttpWebResponse CustomMethod(string httpVerb, object requestDto) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> CustomMethodAsync<TResponse>(string httpVerb, string relativeOrAbsoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> CustomMethodAsync<TResponse>(string httpVerb, object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> CustomMethodAsync<TResponse>(string httpVerb, ServiceStack.IReturn<TResponse> requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual System.Threading.Tasks.Task CustomMethodAsync(string httpVerb, ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public const string DefaultHttpMethod = default;
public static string DefaultUserAgent;
public virtual void Delete(ServiceStack.IReturnVoid requestDto) => throw null;
public virtual TResponse Delete<TResponse>(string relativeOrAbsoluteUrl) => throw null;
public virtual TResponse Delete<TResponse>(object requestDto) => throw null;
public virtual TResponse Delete<TResponse>(ServiceStack.IReturn<TResponse> requestDto) => throw null;
public virtual System.Net.HttpWebResponse Delete(string relativeOrAbsoluteUrl) => throw null;
public virtual System.Net.HttpWebResponse Delete(object requestDto) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> DeleteAsync<TResponse>(string relativeOrAbsoluteUrl, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> DeleteAsync<TResponse>(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> DeleteAsync<TResponse>(ServiceStack.IReturn<TResponse> requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual System.Threading.Tasks.Task DeleteAsync(ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
protected T Deserialize<T>(string text) => throw null;
public abstract T DeserializeFromStream<T>(System.IO.Stream stream);
public bool DisableAutoCompression { get => throw null; set => throw null; }
public void Dispose() => throw null;
public System.Byte[] DownloadBytes(string httpMethod, string requestUri, object request) => throw null;
public System.Threading.Tasks.Task<System.Byte[]> DownloadBytesAsync(string httpMethod, string requestUri, object request) => throw null;
public bool EmulateHttpViaPost { get => throw null; set => throw null; }
public ServiceStack.ExceptionFilterDelegate ExceptionFilter { get => throw null; set => throw null; }
public abstract string Format { get; }
public virtual void Get(ServiceStack.IReturnVoid requestDto) => throw null;
public virtual TResponse Get<TResponse>(string relativeOrAbsoluteUrl) => throw null;
public virtual TResponse Get<TResponse>(object requestDto) => throw null;
public virtual TResponse Get<TResponse>(ServiceStack.IReturn<TResponse> requestDto) => throw null;
public virtual System.Net.HttpWebResponse Get(string relativeOrAbsoluteUrl) => throw null;
public virtual System.Net.HttpWebResponse Get(object requestDto) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> GetAsync<TResponse>(string relativeOrAbsoluteUrl, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> GetAsync<TResponse>(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> GetAsync<TResponse>(ServiceStack.IReturn<TResponse> requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual System.Threading.Tasks.Task GetAsync(ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Collections.Generic.Dictionary<string, string> GetCookieValues() => throw null;
public static string GetExplicitMethod(object request) => throw null;
public virtual System.Collections.Generic.IEnumerable<TResponse> GetLazy<TResponse>(ServiceStack.IReturn<ServiceStack.QueryResponse<TResponse>> queryDto) => throw null;
protected TResponse GetResponse<TResponse>(System.Net.WebResponse webResponse) => throw null;
public static System.Action<System.Net.HttpWebRequest> GlobalRequestFilter { get => throw null; set => throw null; }
public static System.Action<System.Net.HttpWebResponse> GlobalResponseFilter { get => throw null; set => throw null; }
protected virtual bool HandleResponseException<TResponse>(System.Exception ex, object request, string requestUri, System.Func<System.Net.WebRequest> createWebRequest, System.Func<System.Net.WebRequest, System.Net.WebResponse> getResponse, out TResponse response) => throw null;
public virtual System.Net.HttpWebResponse Head(string relativeOrAbsoluteUrl) => throw null;
public virtual System.Net.HttpWebResponse Head(object requestDto) => throw null;
public virtual System.Net.HttpWebResponse Head(ServiceStack.IReturn requestDto) => throw null;
public System.Collections.Specialized.NameValueCollection Headers { get => throw null; set => throw null; }
public string HttpMethod { get => throw null; set => throw null; }
public System.Action OnAuthenticationRequired { get => throw null; set => throw null; }
public ServiceStack.ProgressDelegate OnDownloadProgress { get => throw null; set => throw null; }
public ServiceStack.ProgressDelegate OnUploadProgress { get => throw null; set => throw null; }
public string Password { get => throw null; set => throw null; }
public virtual void Patch(ServiceStack.IReturnVoid requestDto) => throw null;
public virtual TResponse Patch<TResponse>(string relativeOrAbsoluteUrl, object requestDto) => throw null;
public virtual TResponse Patch<TResponse>(object requestDto) => throw null;
public virtual TResponse Patch<TResponse>(ServiceStack.IReturn<TResponse> requestDto) => throw null;
public virtual System.Net.HttpWebResponse Patch(object requestDto) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> PatchAsync<TResponse>(string relativeOrAbsoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> PatchAsync<TResponse>(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> PatchAsync<TResponse>(ServiceStack.IReturn<TResponse> requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual System.Threading.Tasks.Task PatchAsync(ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual void Post(ServiceStack.IReturnVoid requestDto) => throw null;
public virtual TResponse Post<TResponse>(string relativeOrAbsoluteUrl, object requestDto) => throw null;
public virtual TResponse Post<TResponse>(object requestDto) => throw null;
public virtual TResponse Post<TResponse>(ServiceStack.IReturn<TResponse> requestDto) => throw null;
public virtual System.Net.HttpWebResponse Post(object requestDto) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> PostAsync<TResponse>(string relativeOrAbsoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> PostAsync<TResponse>(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> PostAsync<TResponse>(ServiceStack.IReturn<TResponse> requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual System.Threading.Tasks.Task PostAsync(ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual TResponse PostFile<TResponse>(string relativeOrAbsoluteUrl, System.IO.Stream fileToUpload, string fileName, string mimeType) => throw null;
public virtual TResponse PostFileWithRequest<TResponse>(string relativeOrAbsoluteUrl, System.IO.Stream fileToUpload, string fileName, object request, string fieldName = default(string)) => throw null;
public virtual TResponse PostFileWithRequest<TResponse>(System.IO.Stream fileToUpload, string fileName, object request, string fieldName = default(string)) => throw null;
public virtual TResponse PostFilesWithRequest<TResponse>(string relativeOrAbsoluteUrl, object request, System.Collections.Generic.IEnumerable<ServiceStack.UploadFile> files) => throw null;
public virtual TResponse PostFilesWithRequest<TResponse>(object request, System.Collections.Generic.IEnumerable<ServiceStack.UploadFile> files) => throw null;
protected System.Net.WebRequest PrepareWebRequest(string httpMethod, string requestUri, object request, System.Action<System.Net.HttpWebRequest> sendRequestAction) => throw null;
public System.Net.IWebProxy Proxy { get => throw null; set => throw null; }
public void Publish<T>(T requestDto) => throw null;
public void Publish<T>(ServiceStack.Messaging.IMessage<T> message) => throw null;
public virtual void Publish(object requestDto) => throw null;
public void PublishAll(System.Collections.Generic.IEnumerable<object> requests) => throw null;
public System.Threading.Tasks.Task PublishAllAsync(System.Collections.Generic.IEnumerable<object> requests, System.Threading.CancellationToken token) => throw null;
public System.Threading.Tasks.Task PublishAsync(object request, System.Threading.CancellationToken token) => throw null;
public virtual void Put(ServiceStack.IReturnVoid requestDto) => throw null;
public virtual TResponse Put<TResponse>(string relativeOrAbsoluteUrl, object requestDto) => throw null;
public virtual TResponse Put<TResponse>(object requestDto) => throw null;
public virtual TResponse Put<TResponse>(ServiceStack.IReturn<TResponse> requestDto) => throw null;
public virtual System.Net.HttpWebResponse Put(object requestDto) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> PutAsync<TResponse>(string relativeOrAbsoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> PutAsync<TResponse>(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> PutAsync<TResponse>(ServiceStack.IReturn<TResponse> requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual System.Threading.Tasks.Task PutAsync(ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.TimeSpan? ReadWriteTimeout { get => throw null; set => throw null; }
public string RefreshToken { get => throw null; set => throw null; }
public string RefreshTokenUri { get => throw null; set => throw null; }
public string RequestCompressionType { get => throw null; set => throw null; }
public System.Action<System.Net.HttpWebRequest> RequestFilter { get => throw null; set => throw null; }
public virtual string ResolveTypedUrl(string httpMethod, object requestDto) => throw null;
public virtual string ResolveUrl(string httpMethod, string relativeOrAbsoluteUrl) => throw null;
public System.Action<System.Net.HttpWebResponse> ResponseFilter { get => throw null; set => throw null; }
public ServiceStack.ResultsFilterDelegate ResultsFilter { get => throw null; set => throw null; }
public ServiceStack.ResultsFilterResponseDelegate ResultsFilterResponse { get => throw null; set => throw null; }
public virtual TResponse Send<TResponse>(string httpMethod, string relativeOrAbsoluteUrl, object request) => throw null;
public virtual TResponse Send<TResponse>(object request) => throw null;
public virtual System.Collections.Generic.List<TResponse> SendAll<TResponse>(System.Collections.Generic.IEnumerable<object> requests) => throw null;
public System.Threading.Tasks.Task<System.Collections.Generic.List<TResponse>> SendAllAsync<TResponse>(System.Collections.Generic.IEnumerable<object> requests, System.Threading.CancellationToken token) => throw null;
public virtual void SendAllOneWay(System.Collections.Generic.IEnumerable<object> requests) => throw null;
public virtual System.Threading.Tasks.Task<TResponse> SendAsync<TResponse>(object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public System.Threading.Tasks.Task<TResponse> SendAsync<TResponse>(string httpMethod, string absoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public virtual void SendOneWay(string relativeOrAbsoluteUrl, object request) => throw null;
public virtual void SendOneWay(string httpMethod, string relativeOrAbsoluteUrl, object requestDto) => throw null;
public virtual void SendOneWay(object request) => throw null;
protected virtual System.Net.WebRequest SendRequest(string httpMethod, string requestUri, object request) => throw null;
protected virtual void SerializeRequestToStream(object request, System.IO.Stream requestStream, bool keepOpen = default(bool)) => throw null;
public abstract void SerializeToStream(ServiceStack.Web.IRequest req, object request, System.IO.Stream stream);
protected ServiceClientBase(string syncReplyBaseUri, string asyncOneWayBaseUri) => throw null;
protected ServiceClientBase() => throw null;
public string SessionId { get => throw null; set => throw null; }
public void SetBaseUri(string baseUri) => throw null;
public void SetCookie(string name, string value, System.TimeSpan? expiresIn = default(System.TimeSpan?)) => throw null;
public void SetCredentials(string userName, string password) => throw null;
public bool ShareCookiesWithBrowser { get => throw null; set => throw null; }
public bool StoreCookies { get => throw null; set => throw null; }
public abstract ServiceStack.Web.StreamDeserializerDelegate StreamDeserializer { get; }
public string SyncReplyBaseUri { get => throw null; set => throw null; }
protected void ThrowResponseTypeException<TResponse>(object request, System.Exception ex, string requestUri) => throw null;
public void ThrowWebServiceException<TResponse>(System.Exception ex, string requestUri) => throw null;
public System.TimeSpan? Timeout { get => throw null; set => throw null; }
public virtual string ToAbsoluteUrl(string relativeOrAbsoluteUrl) => throw null;
public static string ToHttpMethod(System.Type requestType) => throw null;
public static ServiceStack.WebServiceException ToWebServiceException(System.Net.WebException webEx, System.Func<System.IO.Stream, object> parseDtoFn, string contentType) => throw null;
public ServiceStack.TypedUrlResolverDelegate TypedUrlResolver { get => throw null; set => throw null; }
public ServiceStack.UrlResolverDelegate UrlResolver { get => throw null; set => throw null; }
public bool UseTokenCookie { get => throw null; set => throw null; }
public string UserAgent { get => throw null; set => throw null; }
public string UserName { get => throw null; set => throw null; }
public int Version { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.ServiceClientExtensions` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class ServiceClientExtensions
{
public static TResponse Delete<TResponse>(this ServiceStack.IEncryptedClient client, ServiceStack.IReturn<TResponse> request) => throw null;
public static TResponse Get<TResponse>(this ServiceStack.IEncryptedClient client, ServiceStack.IReturn<TResponse> request) => throw null;
public static string GetCookieValue(this ServiceStack.AsyncServiceClient client, string name) => throw null;
public static ServiceStack.IEncryptedClient GetEncryptedClient(this ServiceStack.IJsonServiceClient client, string serverPublicKeyXml) => throw null;
public static ServiceStack.IEncryptedClient GetEncryptedClient(this ServiceStack.IJsonServiceClient client, System.Security.Cryptography.RSAParameters publicKey) => throw null;
public static string GetOptions(this ServiceStack.IServiceClient client) => throw null;
public static string GetPermanentSessionId(this ServiceStack.IServiceClient client) => throw null;
public static string GetRefreshTokenCookie(this System.Net.CookieContainer cookies, string baseUri) => throw null;
public static string GetRefreshTokenCookie(this ServiceStack.IServiceClient client) => throw null;
public static string GetRefreshTokenCookie(this ServiceStack.AsyncServiceClient client) => throw null;
public static string GetSessionId(this ServiceStack.IServiceClient client) => throw null;
public static string GetTokenCookie(this System.Net.CookieContainer cookies, string baseUri) => throw null;
public static string GetTokenCookie(this ServiceStack.IServiceClient client) => throw null;
public static string GetTokenCookie(this ServiceStack.AsyncServiceClient client) => throw null;
public static TResponse PatchBody<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, string requestBody) => throw null;
public static TResponse PatchBody<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, object requestBody) => throw null;
public static TResponse PatchBody<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, System.IO.Stream requestBody) => throw null;
public static TResponse PatchBody<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, System.Byte[] requestBody) => throw null;
public static System.Threading.Tasks.Task<TResponse> PatchBodyAsync<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, string requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.Threading.Tasks.Task<TResponse> PatchBodyAsync<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, object requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.Threading.Tasks.Task<TResponse> PatchBodyAsync<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, System.IO.Stream requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.Threading.Tasks.Task<TResponse> PatchBodyAsync<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, System.Byte[] requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static void PopulateRequestMetadata(this ServiceStack.IHasSessionId client, object request) => throw null;
public static void PopulateRequestMetadatas(this ServiceStack.IHasSessionId client, System.Collections.Generic.IEnumerable<object> requests) => throw null;
public static TResponse Post<TResponse>(this ServiceStack.IEncryptedClient client, ServiceStack.IReturn<TResponse> request) => throw null;
public static TResponse PostBody<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, string requestBody) => throw null;
public static TResponse PostBody<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, object requestBody) => throw null;
public static TResponse PostBody<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, System.IO.Stream requestBody) => throw null;
public static TResponse PostBody<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, System.Byte[] requestBody) => throw null;
public static System.Threading.Tasks.Task<TResponse> PostBodyAsync<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, string requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.Threading.Tasks.Task<TResponse> PostBodyAsync<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, object requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.Threading.Tasks.Task<TResponse> PostBodyAsync<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, System.IO.Stream requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.Threading.Tasks.Task<TResponse> PostBodyAsync<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, System.Byte[] requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static TResponse PostFile<TResponse>(this ServiceStack.IRestClient client, string relativeOrAbsoluteUrl, System.IO.FileInfo fileToUpload, string mimeType) => throw null;
public static TResponse PostFileWithRequest<TResponse>(this ServiceStack.IRestClient client, string relativeOrAbsoluteUrl, System.IO.FileInfo fileToUpload, object request, string fieldName = default(string)) => throw null;
public static TResponse PostFileWithRequest<TResponse>(this ServiceStack.IRestClient client, System.IO.FileInfo fileToUpload, object request, string fieldName = default(string)) => throw null;
public static TResponse Put<TResponse>(this ServiceStack.IEncryptedClient client, ServiceStack.IReturn<TResponse> request) => throw null;
public static TResponse PutBody<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, string requestBody) => throw null;
public static TResponse PutBody<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, object requestBody) => throw null;
public static TResponse PutBody<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, System.IO.Stream requestBody) => throw null;
public static TResponse PutBody<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, System.Byte[] requestBody) => throw null;
public static System.Threading.Tasks.Task<TResponse> PutBodyAsync<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, string requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.Threading.Tasks.Task<TResponse> PutBodyAsync<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, object requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.Threading.Tasks.Task<TResponse> PutBodyAsync<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, System.IO.Stream requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.Threading.Tasks.Task<TResponse> PutBodyAsync<TResponse>(this ServiceStack.IServiceClient client, ServiceStack.IReturn<TResponse> toRequest, System.Byte[] requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.IO.Stream ResponseStream(this System.Net.WebResponse webRes) => throw null;
public static void Send(this ServiceStack.IEncryptedClient client, ServiceStack.IReturnVoid request) => throw null;
public static void SetCookie(this System.Net.CookieContainer cookieContainer, System.Uri baseUri, string name, string value, System.DateTime? expiresAt, string path = default(string), bool? httpOnly = default(bool?), bool? secure = default(bool?)) => throw null;
public static void SetCookie(this ServiceStack.IServiceClient client, System.Uri baseUri, string name, string value, System.DateTime? expiresAt = default(System.DateTime?), string path = default(string), bool? httpOnly = default(bool?), bool? secure = default(bool?)) => throw null;
public static void SetOptions(this ServiceStack.IServiceClient client, string options) => throw null;
public static void SetPermanentSessionId(this ServiceStack.IServiceClient client, string sessionId) => throw null;
public static void SetRefreshTokenCookie(this System.Net.CookieContainer cookies, string baseUri, string token) => throw null;
public static void SetRefreshTokenCookie(this ServiceStack.IServiceClient client, string token) => throw null;
public static void SetSessionId(this ServiceStack.IServiceClient client, string sessionId) => throw null;
public static void SetTokenCookie(this System.Net.CookieContainer cookies, string baseUri, string token) => throw null;
public static void SetTokenCookie(this ServiceStack.IServiceClient client, string token) => throw null;
public static void SetUserAgent(this System.Net.HttpWebRequest req, string userAgent) => throw null;
public static System.Collections.Generic.Dictionary<string, string> ToDictionary(this System.Net.CookieContainer cookies, string baseUri) => throw null;
}
// Generated from `ServiceStack.ServiceGatewayAsyncWrappers` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class ServiceGatewayAsyncWrappers
{
public static System.Threading.Tasks.Task PublishAllAsync(this ServiceStack.IServiceGatewayAsync client, System.Collections.Generic.IEnumerable<ServiceStack.IReturnVoid> requestDtos, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.Threading.Tasks.Task PublishAllAsync(this ServiceStack.IServiceGateway client, System.Collections.Generic.IEnumerable<object> requestDtos, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.Threading.Tasks.Task PublishAsync(this ServiceStack.IServiceGateway client, object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.Threading.Tasks.Task<TResponse> Send<TResponse>(this ServiceStack.IServiceClientAsync client, ServiceStack.IReturn<TResponse> requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.Threading.Tasks.Task<System.Collections.Generic.List<TResponse>> SendAllAsync<TResponse>(this ServiceStack.IServiceGateway client, System.Collections.Generic.IEnumerable<ServiceStack.IReturn<TResponse>> requestDtos, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.Threading.Tasks.Task<System.Collections.Generic.List<TResponse>> SendAllAsync<TResponse>(this ServiceStack.IServiceClientAsync client, System.Collections.Generic.List<ServiceStack.IReturn<TResponse>> requestDtos, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.Threading.Tasks.Task<System.Collections.Generic.List<TResponse>> SendAllAsync<TResponse>(this ServiceStack.IServiceClientAsync client, ServiceStack.IReturn<TResponse>[] requestDtos, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.Threading.Tasks.Task<TResponse> SendAsync<TResponse>(this ServiceStack.IServiceGateway client, object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.Threading.Tasks.Task<TResponse> SendAsync<TResponse>(this ServiceStack.IServiceGateway client, ServiceStack.IReturn<TResponse> requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
public static System.Threading.Tasks.Task SendAsync(this ServiceStack.IServiceGateway client, ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
}
// Generated from `ServiceStack.ServiceGatewayExtensions` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class ServiceGatewayExtensions
{
public static System.Type GetResponseType(this ServiceStack.IServiceGateway client, object request) => throw null;
public static void Send(this ServiceStack.IServiceGateway client, ServiceStack.IReturnVoid request) => throw null;
public static object Send(this ServiceStack.IServiceGateway client, System.Type responseType, object request) => throw null;
public static TResponse Send<TResponse>(this ServiceStack.IServiceGateway client, ServiceStack.IReturn<TResponse> request) => throw null;
public static System.Collections.Generic.List<TResponse> SendAll<TResponse>(this ServiceStack.IServiceGateway client, System.Collections.Generic.IEnumerable<ServiceStack.IReturn<TResponse>> request) => throw null;
public static System.Threading.Tasks.Task<object> SendAsync(this ServiceStack.IServiceGateway client, System.Type responseType, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null;
}
// Generated from `ServiceStack.SingletonInstanceResolver` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class SingletonInstanceResolver : ServiceStack.Configuration.IResolver
{
public SingletonInstanceResolver() => throw null;
public T TryResolve<T>() => throw null;
}
// Generated from `ServiceStack.StreamExt` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class StreamExt
{
public static System.Byte[] Compress(this string text, string compressionType) => throw null;
public static System.Byte[] CompressBytes(this System.Byte[] bytes, string compressionType) => throw null;
public static System.IO.Stream CompressStream(this System.IO.Stream stream, string compressionType) => throw null;
public static string Decompress(this System.Byte[] gzBuffer, string compressionType) => throw null;
public static System.IO.Stream Decompress(this System.IO.Stream gzStream, string compressionType) => throw null;
public static System.Byte[] DecompressBytes(this System.Byte[] gzBuffer, string compressionType) => throw null;
public static System.Byte[] Deflate(this string text) => throw null;
public static ServiceStack.Caching.IDeflateProvider DeflateProvider;
public static string GUnzip(this System.Byte[] gzBuffer) => throw null;
public static System.Byte[] GZip(this string text) => throw null;
public static ServiceStack.Caching.IGZipProvider GZipProvider;
public static string Inflate(this System.Byte[] gzBuffer) => throw null;
public static System.Byte[] ToBytes(this System.IO.Stream stream) => throw null;
public static string ToUtf8String(this System.IO.Stream stream) => throw null;
public static void Write(this System.IO.Stream stream, string text) => throw null;
}
// Generated from `ServiceStack.StreamFiles` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class StreamFiles : ServiceStack.IReturn<ServiceStack.FileContent>, ServiceStack.IReturn
{
public System.Collections.Generic.List<string> Paths { get => throw null; set => throw null; }
public StreamFiles() => throw null;
}
// Generated from `ServiceStack.StreamServerEvents` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class StreamServerEvents : ServiceStack.IReturn<ServiceStack.StreamServerEventsResponse>, ServiceStack.IReturn
{
public string[] Channels { get => throw null; set => throw null; }
public StreamServerEvents() => throw null;
}
// Generated from `ServiceStack.StreamServerEventsResponse` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class StreamServerEventsResponse
{
public string Channel { get => throw null; set => throw null; }
public string[] Channels { get => throw null; set => throw null; }
public System.Int64 CreatedAt { get => throw null; set => throw null; }
public string CssSelector { get => throw null; set => throw null; }
public string Data { get => throw null; set => throw null; }
public string DisplayName { get => throw null; set => throw null; }
public System.Int64 EventId { get => throw null; set => throw null; }
public System.Int64 HeartbeatIntervalMs { get => throw null; set => throw null; }
public string HeartbeatUrl { get => throw null; set => throw null; }
public string Id { get => throw null; set => throw null; }
public System.Int64 IdleTimeoutMs { get => throw null; set => throw null; }
public bool IsAuthenticated { get => throw null; set => throw null; }
public string Json { get => throw null; set => throw null; }
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public string Op { get => throw null; set => throw null; }
public string ProfileUrl { get => throw null; set => throw null; }
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; }
public string Selector { get => throw null; set => throw null; }
public StreamServerEventsResponse() => throw null;
public string Target { get => throw null; set => throw null; }
public string UnRegisterUrl { get => throw null; set => throw null; }
public string UpdateSubscriberUrl { get => throw null; set => throw null; }
public string UserId { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.TokenException` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class TokenException : ServiceStack.AuthenticationException
{
public TokenException(string message) => throw null;
}
// Generated from `ServiceStack.TypedUrlResolverDelegate` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public delegate string TypedUrlResolverDelegate(ServiceStack.IServiceClientMeta client, string httpMethod, object requestDto);
// Generated from `ServiceStack.UnAssignRoles` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class UnAssignRoles : ServiceStack.IVerb, ServiceStack.IReturn<ServiceStack.UnAssignRolesResponse>, ServiceStack.IReturn, ServiceStack.IPost, ServiceStack.IMeta
{
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public System.Collections.Generic.List<string> Permissions { get => throw null; set => throw null; }
public System.Collections.Generic.List<string> Roles { get => throw null; set => throw null; }
public UnAssignRoles() => throw null;
public string UserName { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.UnAssignRolesResponse` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class UnAssignRolesResponse : ServiceStack.IMeta, ServiceStack.IHasResponseStatus
{
public System.Collections.Generic.List<string> AllPermissions { get => throw null; set => throw null; }
public System.Collections.Generic.List<string> AllRoles { get => throw null; set => throw null; }
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; }
public UnAssignRolesResponse() => throw null;
}
// Generated from `ServiceStack.UpdateEventSubscriber` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class UpdateEventSubscriber : ServiceStack.IVerb, ServiceStack.IReturn<ServiceStack.UpdateEventSubscriberResponse>, ServiceStack.IReturn, ServiceStack.IPost
{
public string Id { get => throw null; set => throw null; }
public string[] SubscribeChannels { get => throw null; set => throw null; }
public string[] UnsubscribeChannels { get => throw null; set => throw null; }
public UpdateEventSubscriber() => throw null;
}
// Generated from `ServiceStack.UpdateEventSubscriberResponse` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class UpdateEventSubscriberResponse
{
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; }
public UpdateEventSubscriberResponse() => throw null;
}
// Generated from `ServiceStack.UrlExtensions` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class UrlExtensions
{
public static string AsHttps(this string absoluteUrl) => throw null;
public static string ExpandGenericTypeName(System.Type type) => throw null;
public static string ExpandTypeName(this System.Type type) => throw null;
public static string GetFullyQualifiedName(this System.Type type) => throw null;
public static string GetMetadataPropertyType(this System.Type type) => throw null;
public static string GetOperationName(this System.Type type) => throw null;
public static System.Collections.Generic.Dictionary<string, System.Type> GetQueryPropertyTypes(this System.Type requestType) => throw null;
public static string ToDeleteUrl(this object requestDto) => throw null;
public static string ToGetUrl(this object requestDto) => throw null;
public static string ToOneWayUrl(this object requestDto, string format = default(string)) => throw null;
public static string ToOneWayUrlOnly(this object requestDto, string format = default(string)) => throw null;
public static string ToPostUrl(this object requestDto) => throw null;
public static string ToPutUrl(this object requestDto) => throw null;
public static string ToRelativeUri(this object requestDto, string httpMethod, string formatFallbackToPredefinedRoute = default(string)) => throw null;
public static string ToRelativeUri(this ServiceStack.IReturn requestDto, string httpMethod, string formatFallbackToPredefinedRoute = default(string)) => throw null;
public static string ToReplyUrl(this object requestDto, string format = default(string)) => throw null;
public static string ToReplyUrlOnly(this object requestDto, string format = default(string)) => throw null;
public static string ToUrl(this object requestDto, string httpMethod = default(string), string formatFallbackToPredefinedRoute = default(string)) => throw null;
public static string ToUrl(this ServiceStack.IReturn requestDto, string httpMethod, string formatFallbackToPredefinedRoute = default(string)) => throw null;
}
// Generated from `ServiceStack.UrlResolverDelegate` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public delegate string UrlResolverDelegate(ServiceStack.IServiceClientMeta client, string httpMethod, string relativeOrAbsoluteUrl);
// Generated from `ServiceStack.UserApiKey` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class UserApiKey : ServiceStack.IMeta
{
public System.DateTime? ExpiryDate { get => throw null; set => throw null; }
public string Key { get => throw null; set => throw null; }
public string KeyType { get => throw null; set => throw null; }
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public UserApiKey() => throw null;
}
// Generated from `ServiceStack.WebRequestUtils` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public static class WebRequestUtils
{
public static void AddApiKeyAuth(this System.Net.WebRequest client, string apiKey) => throw null;
public static void AddBasicAuth(this System.Net.WebRequest client, string userName, string password) => throw null;
public static void AddBearerToken(this System.Net.WebRequest client, string bearerToken) => throw null;
public static string CalculateMD5Hash(string input) => throw null;
public static System.Type GetErrorResponseDtoType<TResponse>(object request) => throw null;
public static System.Type GetErrorResponseDtoType(object request) => throw null;
public static System.Type GetErrorResponseDtoType(System.Type requestType) => throw null;
public static string GetResponseDtoName(System.Type requestType) => throw null;
public static ServiceStack.ResponseStatus GetResponseStatus(this object response) => throw null;
public static System.Net.HttpWebRequest InitWebRequest(string url, string method = default(string), System.Collections.Generic.Dictionary<string, string> headers = default(System.Collections.Generic.Dictionary<string, string>)) => throw null;
public const string ResponseDtoSuffix = default;
}
// Generated from `ServiceStack.WebServiceException` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class WebServiceException : System.Exception, ServiceStack.Model.IResponseStatusConvertible, ServiceStack.IHasStatusDescription, ServiceStack.IHasStatusCode
{
public string ErrorCode { get => throw null; }
public string ErrorMessage { get => throw null; }
public System.Collections.Generic.List<ServiceStack.ResponseError> GetFieldErrors() => throw null;
public bool IsAny400() => throw null;
public bool IsAny500() => throw null;
public override string Message { get => throw null; }
public string ResponseBody { get => throw null; set => throw null; }
public object ResponseDto { get => throw null; set => throw null; }
public System.Net.WebHeaderCollection ResponseHeaders { get => throw null; set => throw null; }
public ServiceStack.ResponseStatus ResponseStatus { get => throw null; }
public string ServerStackTrace { get => throw null; }
public object State { get => throw null; set => throw null; }
public int StatusCode { get => throw null; set => throw null; }
public string StatusDescription { get => throw null; set => throw null; }
public ServiceStack.ResponseStatus ToResponseStatus() => throw null;
public override string ToString() => throw null;
public WebServiceException(string message, System.Exception innerException) => throw null;
public WebServiceException(string message) => throw null;
public WebServiceException() => throw null;
public static ServiceStack.Logging.ILog log;
}
// Generated from `ServiceStack.XmlServiceClient` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class XmlServiceClient : ServiceStack.ServiceClientBase
{
public override string ContentType { get => throw null; }
public override T DeserializeFromStream<T>(System.IO.Stream stream) => throw null;
public override string Format { get => throw null; }
public override void SerializeToStream(ServiceStack.Web.IRequest req, object request, System.IO.Stream stream) => throw null;
public override ServiceStack.Web.StreamDeserializerDelegate StreamDeserializer { get => throw null; }
public XmlServiceClient(string syncReplyBaseUri, string asyncOneWayBaseUri) => throw null;
public XmlServiceClient(string baseUri) => throw null;
public XmlServiceClient() => throw null;
}
namespace Messaging
{
// Generated from `ServiceStack.Messaging.InMemoryMessageQueueClient` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class InMemoryMessageQueueClient : System.IDisposable, ServiceStack.Messaging.IMessageQueueClient, ServiceStack.Messaging.IMessageProducer, ServiceStack.IOneWayClient
{
public void Ack(ServiceStack.Messaging.IMessage message) => throw null;
public ServiceStack.Messaging.IMessage<T> CreateMessage<T>(object mqResponse) => throw null;
public void Dispose() => throw null;
public ServiceStack.Messaging.IMessage<T> Get<T>(string queueName, System.TimeSpan? timeOut = default(System.TimeSpan?)) => throw null;
public ServiceStack.Messaging.IMessage<T> GetAsync<T>(string queueName) => throw null;
public string GetTempQueueName() => throw null;
public InMemoryMessageQueueClient(ServiceStack.Messaging.MessageQueueClientFactory factory) => throw null;
public void Nak(ServiceStack.Messaging.IMessage message, bool requeue, System.Exception exception = default(System.Exception)) => throw null;
public void Notify(string queueName, ServiceStack.Messaging.IMessage message) => throw null;
public void Publish<T>(T messageBody) => throw null;
public void Publish<T>(ServiceStack.Messaging.IMessage<T> message) => throw null;
public void Publish(string queueName, ServiceStack.Messaging.IMessage message) => throw null;
public void SendAllOneWay(System.Collections.Generic.IEnumerable<object> requests) => throw null;
public void SendOneWay(string queueName, object requestDto) => throw null;
public void SendOneWay(object requestDto) => throw null;
}
// Generated from `ServiceStack.Messaging.MessageQueueClientFactory` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class MessageQueueClientFactory : System.IDisposable, ServiceStack.Messaging.IMessageQueueClientFactory
{
public ServiceStack.Messaging.IMessageQueueClient CreateMessageQueueClient() => throw null;
public void Dispose() => throw null;
public System.Byte[] GetMessageAsync(string queueName) => throw null;
public MessageQueueClientFactory() => throw null;
public event System.EventHandler<System.EventArgs> MessageReceived;
public void PublishMessage<T>(string queueName, ServiceStack.Messaging.IMessage<T> message) => throw null;
public void PublishMessage(string queueName, System.Byte[] messageBytes) => throw null;
}
// Generated from `ServiceStack.Messaging.RedisMessageFactory` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class RedisMessageFactory : System.IDisposable, ServiceStack.Messaging.IMessageQueueClientFactory, ServiceStack.Messaging.IMessageFactory
{
public ServiceStack.Messaging.IMessageProducer CreateMessageProducer() => throw null;
public ServiceStack.Messaging.IMessageQueueClient CreateMessageQueueClient() => throw null;
public void Dispose() => throw null;
public RedisMessageFactory(ServiceStack.Redis.IRedisClientsManager clientsManager) => throw null;
}
// Generated from `ServiceStack.Messaging.RedisMessageProducer` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class RedisMessageProducer : System.IDisposable, ServiceStack.Messaging.IMessageProducer, ServiceStack.IOneWayClient
{
public void Dispose() => throw null;
public void Publish<T>(T messageBody) => throw null;
public void Publish<T>(ServiceStack.Messaging.IMessage<T> message) => throw null;
public void Publish(string queueName, ServiceStack.Messaging.IMessage message) => throw null;
public ServiceStack.Redis.IRedisNativeClient ReadWriteClient { get => throw null; }
public RedisMessageProducer(ServiceStack.Redis.IRedisClientsManager clientsManager, System.Action onPublishedCallback) => throw null;
public RedisMessageProducer(ServiceStack.Redis.IRedisClientsManager clientsManager) => throw null;
public void SendAllOneWay(System.Collections.Generic.IEnumerable<object> requests) => throw null;
public void SendOneWay(string queueName, object requestDto) => throw null;
public void SendOneWay(object requestDto) => throw null;
}
// Generated from `ServiceStack.Messaging.RedisMessageQueueClient` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class RedisMessageQueueClient : System.IDisposable, ServiceStack.Messaging.IMessageQueueClient, ServiceStack.Messaging.IMessageProducer, ServiceStack.IOneWayClient
{
public void Ack(ServiceStack.Messaging.IMessage message) => throw null;
public ServiceStack.Messaging.IMessage<T> CreateMessage<T>(object mqResponse) => throw null;
public void Dispose() => throw null;
public ServiceStack.Messaging.IMessage<T> Get<T>(string queueName, System.TimeSpan? timeOut = default(System.TimeSpan?)) => throw null;
public ServiceStack.Messaging.IMessage<T> GetAsync<T>(string queueName) => throw null;
public string GetTempQueueName() => throw null;
public int MaxSuccessQueueSize { get => throw null; set => throw null; }
public void Nak(ServiceStack.Messaging.IMessage message, bool requeue, System.Exception exception = default(System.Exception)) => throw null;
public void Notify(string queueName, ServiceStack.Messaging.IMessage message) => throw null;
public void Publish<T>(T messageBody) => throw null;
public void Publish<T>(ServiceStack.Messaging.IMessage<T> message) => throw null;
public void Publish(string queueName, ServiceStack.Messaging.IMessage message) => throw null;
public ServiceStack.Redis.IRedisNativeClient ReadOnlyClient { get => throw null; }
public ServiceStack.Redis.IRedisNativeClient ReadWriteClient { get => throw null; }
public RedisMessageQueueClient(ServiceStack.Redis.IRedisClientsManager clientsManager, System.Action onPublishedCallback) => throw null;
public RedisMessageQueueClient(ServiceStack.Redis.IRedisClientsManager clientsManager) => throw null;
public void SendAllOneWay(System.Collections.Generic.IEnumerable<object> requests) => throw null;
public void SendOneWay(string queueName, object requestDto) => throw null;
public void SendOneWay(object requestDto) => throw null;
}
// Generated from `ServiceStack.Messaging.RedisMessageQueueClientFactory` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class RedisMessageQueueClientFactory : System.IDisposable, ServiceStack.Messaging.IMessageQueueClientFactory
{
public ServiceStack.Messaging.IMessageQueueClient CreateMessageQueueClient() => throw null;
public void Dispose() => throw null;
public RedisMessageQueueClientFactory(ServiceStack.Redis.IRedisClientsManager clientsManager, System.Action onPublishedCallback) => throw null;
}
}
namespace Pcl
{
// Generated from `ServiceStack.Pcl.HttpUtility` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class HttpUtility
{
public HttpUtility() => throw null;
public static System.Collections.Specialized.NameValueCollection ParseQueryString(string query, System.Text.Encoding encoding) => throw null;
public static System.Collections.Specialized.NameValueCollection ParseQueryString(string query) => throw null;
}
}
namespace Serialization
{
// Generated from `ServiceStack.Serialization.DataContractSerializer` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class DataContractSerializer : ServiceStack.Text.IStringSerializer
{
public System.Byte[] Compress<XmlDto>(XmlDto from) => throw null;
public void CompressToStream<XmlDto>(XmlDto from, System.IO.Stream stream) => throw null;
public DataContractSerializer(System.Xml.XmlDictionaryReaderQuotas quotas = default(System.Xml.XmlDictionaryReaderQuotas)) => throw null;
public object DeserializeFromStream(System.Type type, System.IO.Stream stream) => throw null;
public T DeserializeFromStream<T>(System.IO.Stream stream) => throw null;
public object DeserializeFromString(string xml, System.Type type) => throw null;
public T DeserializeFromString<T>(string xml) => throw null;
public static ServiceStack.Serialization.DataContractSerializer Instance;
public string Parse<XmlDto>(XmlDto from, bool indentXml) => throw null;
public void SerializeToStream(object obj, System.IO.Stream stream) => throw null;
public string SerializeToString<XmlDto>(XmlDto from) => throw null;
}
// Generated from `ServiceStack.Serialization.IStringStreamSerializer` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public interface IStringStreamSerializer
{
object DeserializeFromStream(System.Type type, System.IO.Stream stream);
T DeserializeFromStream<T>(System.IO.Stream stream);
void SerializeToStream<T>(T obj, System.IO.Stream stream);
}
// Generated from `ServiceStack.Serialization.JsonDataContractSerializer` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class JsonDataContractSerializer : ServiceStack.Text.IStringSerializer
{
public static object BclDeserializeFromStream(System.Type type, System.IO.Stream stream) => throw null;
public static object BclDeserializeFromString(string json, System.Type returnType) => throw null;
public static void BclSerializeToStream<T>(T obj, System.IO.Stream stream) => throw null;
public static string BclSerializeToString<T>(T obj) => throw null;
public object DeserializeFromStream(System.Type type, System.IO.Stream stream) => throw null;
public T DeserializeFromStream<T>(System.IO.Stream stream) => throw null;
public object DeserializeFromString(string json, System.Type returnType) => throw null;
public T DeserializeFromString<T>(string json) => throw null;
public static ServiceStack.Serialization.JsonDataContractSerializer Instance;
public JsonDataContractSerializer() => throw null;
public void SerializeToStream<T>(T obj, System.IO.Stream stream) => throw null;
public string SerializeToString<T>(T obj) => throw null;
public ServiceStack.Text.IStringSerializer TextSerializer { get => throw null; set => throw null; }
public bool UseBcl { get => throw null; set => throw null; }
public static void UseSerializer(ServiceStack.Text.IStringSerializer textSerializer) => throw null;
}
// Generated from `ServiceStack.Serialization.KeyValueDataContractDeserializer` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class KeyValueDataContractDeserializer
{
public static ServiceStack.Serialization.KeyValueDataContractDeserializer Instance;
public KeyValueDataContractDeserializer() => throw null;
public object Parse(System.Collections.Specialized.NameValueCollection nameValues, System.Type returnType) => throw null;
public object Parse(System.Collections.Generic.IDictionary<string, string> keyValuePairs, System.Type returnType) => throw null;
public To Parse<To>(System.Collections.Generic.IDictionary<string, string> keyValuePairs) => throw null;
public object Populate(object instance, System.Collections.Specialized.NameValueCollection nameValues, System.Type returnType) => throw null;
}
// Generated from `ServiceStack.Serialization.RequestBindingError` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class RequestBindingError
{
public string ErrorMessage { get => throw null; set => throw null; }
public string PropertyName { get => throw null; set => throw null; }
public System.Type PropertyType { get => throw null; set => throw null; }
public string PropertyValueString { get => throw null; set => throw null; }
public RequestBindingError() => throw null;
}
// Generated from `ServiceStack.Serialization.StringMapTypeDeserializer` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class StringMapTypeDeserializer
{
public object CreateFromMap(System.Collections.Specialized.NameValueCollection nameValues) => throw null;
public object CreateFromMap(System.Collections.Generic.IDictionary<string, string> keyValuePairs) => throw null;
public ServiceStack.Text.Common.ParseStringDelegate GetParseFn(System.Type propertyType) => throw null;
public object PopulateFromMap(object instance, System.Collections.Specialized.NameValueCollection nameValues, System.Collections.Generic.List<string> ignoredWarningsOnPropertyNames = default(System.Collections.Generic.List<string>)) => throw null;
public object PopulateFromMap(object instance, System.Collections.Generic.IDictionary<string, string> keyValuePairs, System.Collections.Generic.List<string> ignoredWarningsOnPropertyNames = default(System.Collections.Generic.List<string>)) => throw null;
public StringMapTypeDeserializer(System.Type type) => throw null;
}
// Generated from `ServiceStack.Serialization.XmlSerializableSerializer` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class XmlSerializableSerializer : ServiceStack.Text.IStringSerializer
{
public object DeserializeFromStream(System.Type type, System.IO.Stream stream) => throw null;
public object DeserializeFromString(string xml, System.Type type) => throw null;
public To DeserializeFromString<To>(string xml) => throw null;
public static ServiceStack.Serialization.XmlSerializableSerializer Instance;
public To Parse<To>(System.IO.TextReader from) => throw null;
public To Parse<To>(System.IO.Stream from) => throw null;
public void SerializeToStream(object obj, System.IO.Stream stream) => throw null;
public string SerializeToString<XmlDto>(XmlDto from) => throw null;
public XmlSerializableSerializer() => throw null;
public static System.Xml.XmlWriterSettings XmlWriterSettings { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.Serialization.XmlSerializerWrapper` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class XmlSerializerWrapper : System.Runtime.Serialization.XmlObjectSerializer
{
public static string GetNamespace(System.Type type) => throw null;
public override bool IsStartObject(System.Xml.XmlDictionaryReader reader) => throw null;
public override object ReadObject(System.Xml.XmlDictionaryReader reader, bool verifyObjectName) => throw null;
public override object ReadObject(System.Xml.XmlDictionaryReader reader) => throw null;
public override void WriteEndObject(System.Xml.XmlDictionaryWriter writer) => throw null;
public override void WriteObject(System.Xml.XmlDictionaryWriter writer, object graph) => throw null;
public override void WriteObjectContent(System.Xml.XmlDictionaryWriter writer, object graph) => throw null;
public override void WriteStartObject(System.Xml.XmlDictionaryWriter writer, object graph) => throw null;
public XmlSerializerWrapper(System.Type type, string name, string ns) => throw null;
public XmlSerializerWrapper(System.Type type) => throw null;
}
}
namespace Support
{
// Generated from `ServiceStack.Support.NetDeflateProvider` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class NetDeflateProvider : ServiceStack.Caching.IDeflateProvider
{
public System.Byte[] Deflate(string text) => throw null;
public System.Byte[] Deflate(System.Byte[] bytes) => throw null;
public System.IO.Stream DeflateStream(System.IO.Stream outputStream) => throw null;
public string Inflate(System.Byte[] gzBuffer) => throw null;
public System.Byte[] InflateBytes(System.Byte[] gzBuffer) => throw null;
public System.IO.Stream InflateStream(System.IO.Stream inputStream) => throw null;
public NetDeflateProvider() => throw null;
}
// Generated from `ServiceStack.Support.NetGZipProvider` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class NetGZipProvider : ServiceStack.Caching.IGZipProvider
{
public string GUnzip(System.Byte[] gzBuffer) => throw null;
public System.Byte[] GUnzipBytes(System.Byte[] gzBuffer) => throw null;
public System.IO.Stream GUnzipStream(System.IO.Stream gzStream) => throw null;
public System.Byte[] GZip(string text) => throw null;
public System.Byte[] GZip(System.Byte[] buffer) => throw null;
public System.IO.Stream GZipStream(System.IO.Stream outputStream) => throw null;
public NetGZipProvider() => throw null;
}
}
namespace Validation
{
// Generated from `ServiceStack.Validation.ValidationError` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class ValidationError : System.ArgumentException, ServiceStack.Model.IResponseStatusConvertible
{
public static ServiceStack.Validation.ValidationError CreateException(string errorCode, string errorMessage, string fieldName) => throw null;
public static ServiceStack.Validation.ValidationError CreateException(string errorCode, string errorMessage) => throw null;
public static ServiceStack.Validation.ValidationError CreateException(string errorCode) => throw null;
public static ServiceStack.Validation.ValidationError CreateException(System.Enum errorCode, string errorMessage, string fieldName) => throw null;
public static ServiceStack.Validation.ValidationError CreateException(System.Enum errorCode, string errorMessage) => throw null;
public static ServiceStack.Validation.ValidationError CreateException(System.Enum errorCode) => throw null;
public static ServiceStack.Validation.ValidationError CreateException(ServiceStack.Validation.ValidationErrorField error) => throw null;
public string ErrorCode { get => throw null; }
public string ErrorMessage { get => throw null; }
public override string Message { get => throw null; }
public static void ThrowIfNotValid(ServiceStack.Validation.ValidationErrorResult validationResult) => throw null;
public ServiceStack.ResponseStatus ToResponseStatus() => throw null;
public string ToXml() => throw null;
public ValidationError(string errorCode, string errorMessage) => throw null;
public ValidationError(string errorCode) => throw null;
public ValidationError(ServiceStack.Validation.ValidationErrorResult validationResult) => throw null;
public ValidationError(ServiceStack.Validation.ValidationErrorField validationError) => throw null;
public System.Collections.Generic.IList<ServiceStack.Validation.ValidationErrorField> Violations { get => throw null; set => throw null; }
}
// Generated from `ServiceStack.Validation.ValidationErrorField` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class ValidationErrorField : ServiceStack.IMeta
{
public object AttemptedValue { get => throw null; set => throw null; }
public string ErrorCode { get => throw null; set => throw null; }
public string ErrorMessage { get => throw null; set => throw null; }
public string FieldName { get => throw null; set => throw null; }
public System.Collections.Generic.Dictionary<string, string> Meta { get => throw null; set => throw null; }
public ValidationErrorField(string errorCode, string fieldName, string errorMessage, object attemptedValue) => throw null;
public ValidationErrorField(string errorCode, string fieldName, string errorMessage) => throw null;
public ValidationErrorField(string errorCode, string fieldName) => throw null;
public ValidationErrorField(string errorCode) => throw null;
public ValidationErrorField(System.Enum errorCode, string fieldName, string errorMessage) => throw null;
public ValidationErrorField(System.Enum errorCode, string fieldName) => throw null;
public ValidationErrorField(System.Enum errorCode) => throw null;
}
// Generated from `ServiceStack.Validation.ValidationErrorResult` in `ServiceStack.Client, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null`
public class ValidationErrorResult
{
public string ErrorCode { get => throw null; set => throw null; }
public string ErrorMessage { get => throw null; set => throw null; }
public System.Collections.Generic.IList<ServiceStack.Validation.ValidationErrorField> Errors { get => throw null; set => throw null; }
public virtual bool IsValid { get => throw null; }
public void Merge(ServiceStack.Validation.ValidationErrorResult result) => throw null;
public virtual string Message { get => throw null; }
public static ServiceStack.Validation.ValidationErrorResult Success { get => throw null; }
public string SuccessCode { get => throw null; set => throw null; }
public string SuccessMessage { get => throw null; set => throw null; }
public ValidationErrorResult(System.Collections.Generic.IList<ServiceStack.Validation.ValidationErrorField> errors, string successCode, string errorCode) => throw null;
public ValidationErrorResult(System.Collections.Generic.IList<ServiceStack.Validation.ValidationErrorField> errors) => throw null;
public ValidationErrorResult() => throw null;
}
}
}