// 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.IReturn, ServiceStack.IPost { public AdminCreateUser() => throw null; public System.Collections.Generic.List Permissions { get => throw null; set => throw null; } public System.Collections.Generic.List 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.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.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.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.IReturn, ServiceStack.IPut { public System.Collections.Generic.List AddPermissions { get => throw null; set => throw null; } public System.Collections.Generic.List 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 RemovePermissions { get => throw null; set => throw null; } public System.Collections.Generic.List 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 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 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 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> 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.IReturn, ServiceStack.IPost, ServiceStack.IMeta { public AssignRoles() => throw null; public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } public System.Collections.Generic.List Permissions { get => throw null; set => throw null; } public System.Collections.Generic.List 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 AllPermissions { get => throw null; set => throw null; } public System.Collections.Generic.List AllRoles { get => throw null; set => throw null; } public AssignRolesResponse() => throw null; public System.Collections.Generic.Dictionary 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 GetCookieValues() => throw null; public static System.Action GlobalRequestFilter { get => throw null; set => throw null; } public static System.Action 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 RequestFilter { get => throw null; set => throw null; } public System.Action 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 SendAsync(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.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 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 Meta { get => throw null; set => throw null; } public System.Collections.Generic.List 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 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 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(string httpVerb, object requestDto) => throw null; public TResponse CustomMethod(string httpVerb, ServiceStack.IReturn requestDto) => throw null; public System.Threading.Tasks.Task CustomMethodAsync(string httpVerb, string relativeOrAbsoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task CustomMethodAsync(string httpVerb, object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task CustomMethodAsync(string httpVerb, ServiceStack.IReturn 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(string relativeOrAbsoluteUrl) => throw null; public TResponse Delete(object request) => throw null; public TResponse Delete(ServiceStack.IReturn request) => throw null; public System.Threading.Tasks.Task DeleteAsync(string relativeOrAbsoluteUrl, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task DeleteAsync(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task DeleteAsync(ServiceStack.IReturn 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(string relativeOrAbsoluteUrl) => throw null; public TResponse Get(object requestDto) => throw null; public TResponse Get(ServiceStack.IReturn requestDto) => throw null; public System.Threading.Tasks.Task GetAsync(string relativeOrAbsoluteUrl, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task GetAsync(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task GetAsync(ServiceStack.IReturn 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 GetCookieValues() => throw null; public System.Collections.Generic.IEnumerable GetLazy(ServiceStack.IReturn> 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(string relativeOrAbsoluteUrl, object requestDto) => throw null; public TResponse Patch(object requestDto) => throw null; public TResponse Patch(ServiceStack.IReturn requestDto) => throw null; public System.Threading.Tasks.Task PatchAsync(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task PatchAsync(ServiceStack.IReturn 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(string relativeOrAbsoluteUrl, object request) => throw null; public TResponse Post(object requestDto) => throw null; public TResponse Post(ServiceStack.IReturn requestDto) => throw null; public System.Threading.Tasks.Task PostAsync(string relativeOrAbsoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task PostAsync(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task PostAsync(ServiceStack.IReturn 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(string relativeOrAbsoluteUrl, System.IO.Stream fileToUpload, string fileName, string mimeType) => throw null; public TResponse PostFileWithRequest(string relativeOrAbsoluteUrl, System.IO.Stream fileToUpload, string fileName, object request, string fieldName = default(string)) => throw null; public TResponse PostFileWithRequest(System.IO.Stream fileToUpload, string fileName, object request, string fieldName = default(string)) => throw null; public TResponse PostFilesWithRequest(string relativeOrAbsoluteUrl, object request, System.Collections.Generic.IEnumerable files) => throw null; public TResponse PostFilesWithRequest(object request, System.Collections.Generic.IEnumerable files) => throw null; public void Publish(object requestDto) => throw null; public void PublishAll(System.Collections.Generic.IEnumerable requestDtos) => throw null; public System.Threading.Tasks.Task PublishAllAsync(System.Collections.Generic.IEnumerable 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(string relativeOrAbsoluteUrl, object requestDto) => throw null; public TResponse Put(object requestDto) => throw null; public TResponse Put(ServiceStack.IReturn requestDto) => throw null; public System.Threading.Tasks.Task PutAsync(string relativeOrAbsoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task PutAsync(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task PutAsync(ServiceStack.IReturn 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(string httpMethod, string relativeOrAbsoluteUrl, object request) => throw null; public TResponse Send(object request) => throw null; public System.Collections.Generic.List SendAll(System.Collections.Generic.IEnumerable requests) => throw null; public System.Threading.Tasks.Task> SendAllAsync(System.Collections.Generic.IEnumerable requests, System.Threading.CancellationToken token) => throw null; public void SendAllOneWay(System.Collections.Generic.IEnumerable requests) => throw null; public System.Threading.Tasks.Task SendAsync(string httpMethod, string absoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task SendAsync(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 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 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.IReturn, ServiceStack.IPost, ServiceStack.IMeta { public CancelRequest() => throw null; public System.Collections.Generic.Dictionary 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 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.IReturn { public string AuthSecret { get => throw null; set => throw null; } public CheckCrudEvents() => throw null; public System.Collections.Generic.List 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 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 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 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.IReturn, ServiceStack.IPost, ServiceStack.IMeta { public ConvertSessionToToken() => throw null; public System.Collections.Generic.Dictionary 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 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 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(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 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.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 requests) => throw null; public TResponse Send(string httpMethod, object request) => throw null; public TResponse Send(string httpMethod, ServiceStack.IReturn request) => throw null; public TResponse Send(object request) => throw null; public System.Collections.Generic.List SendAll(System.Collections.Generic.IEnumerable 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.IReturn, ServiceStack.IPost, ServiceStack.IMeta { public GetAccessToken() => throw null; public System.Collections.Generic.Dictionary 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 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.IReturn, ServiceStack.IMeta, ServiceStack.IGet { public string Environment { get => throw null; set => throw null; } public GetApiKeys() => throw null; public System.Collections.Generic.Dictionary 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 Meta { get => throw null; set => throw null; } public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; } public System.Collections.Generic.List 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 { 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>>, 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.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.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 Meta { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary> NavItemsMap { get => throw null; set => throw null; } public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; } public System.Collections.Generic.List 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, 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.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 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 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 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(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(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(this ServiceStack.Messaging.IMessage 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(this ServiceStack.Messaging.IMessage message) => throw null; public static string ToInQueueName(this ServiceStack.Messaging.IMessage message) => throw null; public static ServiceStack.Messaging.Message ToMessage(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 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 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 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 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() => 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 EmptyTask; public virtual string GetHeader(System.Net.WebHeaderCollection headers, string name, System.Func 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.IReturn, ServiceStack.IPost, ServiceStack.IMeta { public string Environment { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary 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 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 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.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 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 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 validationErrors = default(System.Collections.Generic.IEnumerable)) => 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 FormatQueryParameterValue; public string FormatQueryParameters(object request) => throw null; public static System.Func 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 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 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 AuthenticateAsync(this ServiceStack.ServerEventsClient client, ServiceStack.Authenticate request) => throw null; public static System.Collections.Generic.List GetChannelSubscribers(this ServiceStack.ServerEventsClient client) => throw null; public static System.Threading.Tasks.Task> GetChannelSubscribersAsync(this ServiceStack.ServerEventsClient client) => throw null; public static T Populate(this T dst, ServiceStack.ServerEventMessage src, System.Collections.Generic.Dictionary msg) where T : ServiceStack.ServerEventMessage => throw null; public static ServiceStack.ServerEventsClient RegisterHandlers(this ServiceStack.ServerEventsClient client, System.Collections.Generic.Dictionary 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 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 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 handler) => throw null; public System.Action 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 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 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 Handlers { get => throw null; } public bool HasListener(string eventName, System.Action handler) => throw null; public bool HasListeners(string eventName) => throw null; protected void Heartbeat(object state) => throw null; public System.Action 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 NamedReceivers { get => throw null; } public System.Action OnCommand; protected void OnCommandReceived(ServiceStack.ServerEventCommand e) => throw null; public System.Action OnConnect; protected void OnConnectReceived() => throw null; public System.Action OnException; protected void OnExceptionReceived(System.Exception ex) => throw null; public System.Action OnHeartbeat; protected void OnHeartbeatReceived(ServiceStack.ServerEventHeartbeat e) => throw null; public System.Action OnJoin; protected void OnJoinReceived(ServiceStack.ServerEventJoin e) => throw null; public System.Action OnLeave; protected void OnLeaveReceived(ServiceStack.ServerEventLeave e) => throw null; public System.Action OnMessage; protected void OnMessageReceived(ServiceStack.ServerEventMessage e) => throw null; public System.Action OnReconnect; public System.Action 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 ReceiverTypes { get => throw null; } public ServiceStack.ServerEventsClient RegisterNamedReceiver(string receiverName) where T : ServiceStack.IReceiver => throw null; public ServiceStack.ServerEventsClient RegisterReceiver() where T : ServiceStack.IReceiver => throw null; public void RemoveAllListeners() => throw null; public void RemoveAllRegistrations() => throw null; public ServiceStack.ServerEventsClient RemoveListener(string eventName, System.Action handler) => throw null; public ServiceStack.ServerEventsClient RemoveListeners(string eventName) => throw null; public System.Func 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 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 WaitForNextCommand() => throw null; public System.Threading.Tasks.Task WaitForNextHeartbeat() => throw null; public System.Threading.Tasks.Task 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(string httpVerb, string relativeOrAbsoluteUrl, object requestDto = default(object)) => throw null; public virtual TResponse CustomMethod(string httpVerb, object requestDto) => throw null; public virtual TResponse CustomMethod(string httpVerb, ServiceStack.IReturn 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 CustomMethodAsync(string httpVerb, string relativeOrAbsoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public virtual System.Threading.Tasks.Task CustomMethodAsync(string httpVerb, object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public virtual System.Threading.Tasks.Task CustomMethodAsync(string httpVerb, ServiceStack.IReturn 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(string relativeOrAbsoluteUrl) => throw null; public virtual TResponse Delete(object requestDto) => throw null; public virtual TResponse Delete(ServiceStack.IReturn 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 DeleteAsync(string relativeOrAbsoluteUrl, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public virtual System.Threading.Tasks.Task DeleteAsync(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public virtual System.Threading.Tasks.Task DeleteAsync(ServiceStack.IReturn 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(string text) => throw null; public abstract T DeserializeFromStream(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 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(string relativeOrAbsoluteUrl) => throw null; public virtual TResponse Get(object requestDto) => throw null; public virtual TResponse Get(ServiceStack.IReturn 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 GetAsync(string relativeOrAbsoluteUrl, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public virtual System.Threading.Tasks.Task GetAsync(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public virtual System.Threading.Tasks.Task GetAsync(ServiceStack.IReturn 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 GetCookieValues() => throw null; public static string GetExplicitMethod(object request) => throw null; public virtual System.Collections.Generic.IEnumerable GetLazy(ServiceStack.IReturn> queryDto) => throw null; protected TResponse GetResponse(System.Net.WebResponse webResponse) => throw null; public static System.Action GlobalRequestFilter { get => throw null; set => throw null; } public static System.Action GlobalResponseFilter { get => throw null; set => throw null; } protected virtual bool HandleResponseException(System.Exception ex, object request, string requestUri, System.Func createWebRequest, System.Func 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(string relativeOrAbsoluteUrl, object requestDto) => throw null; public virtual TResponse Patch(object requestDto) => throw null; public virtual TResponse Patch(ServiceStack.IReturn requestDto) => throw null; public virtual System.Net.HttpWebResponse Patch(object requestDto) => throw null; public virtual System.Threading.Tasks.Task PatchAsync(string relativeOrAbsoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public virtual System.Threading.Tasks.Task PatchAsync(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public virtual System.Threading.Tasks.Task PatchAsync(ServiceStack.IReturn 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(string relativeOrAbsoluteUrl, object requestDto) => throw null; public virtual TResponse Post(object requestDto) => throw null; public virtual TResponse Post(ServiceStack.IReturn requestDto) => throw null; public virtual System.Net.HttpWebResponse Post(object requestDto) => throw null; public virtual System.Threading.Tasks.Task PostAsync(string relativeOrAbsoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public virtual System.Threading.Tasks.Task PostAsync(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public virtual System.Threading.Tasks.Task PostAsync(ServiceStack.IReturn 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(string relativeOrAbsoluteUrl, System.IO.Stream fileToUpload, string fileName, string mimeType) => throw null; public virtual TResponse PostFileWithRequest(string relativeOrAbsoluteUrl, System.IO.Stream fileToUpload, string fileName, object request, string fieldName = default(string)) => throw null; public virtual TResponse PostFileWithRequest(System.IO.Stream fileToUpload, string fileName, object request, string fieldName = default(string)) => throw null; public virtual TResponse PostFilesWithRequest(string relativeOrAbsoluteUrl, object request, System.Collections.Generic.IEnumerable files) => throw null; public virtual TResponse PostFilesWithRequest(object request, System.Collections.Generic.IEnumerable files) => throw null; protected System.Net.WebRequest PrepareWebRequest(string httpMethod, string requestUri, object request, System.Action sendRequestAction) => throw null; public System.Net.IWebProxy Proxy { get => throw null; set => throw null; } public void Publish(T requestDto) => throw null; public void Publish(ServiceStack.Messaging.IMessage message) => throw null; public virtual void Publish(object requestDto) => throw null; public void PublishAll(System.Collections.Generic.IEnumerable requests) => throw null; public System.Threading.Tasks.Task PublishAllAsync(System.Collections.Generic.IEnumerable 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(string relativeOrAbsoluteUrl, object requestDto) => throw null; public virtual TResponse Put(object requestDto) => throw null; public virtual TResponse Put(ServiceStack.IReturn requestDto) => throw null; public virtual System.Net.HttpWebResponse Put(object requestDto) => throw null; public virtual System.Threading.Tasks.Task PutAsync(string relativeOrAbsoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public virtual System.Threading.Tasks.Task PutAsync(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public virtual System.Threading.Tasks.Task PutAsync(ServiceStack.IReturn 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 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 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(string httpMethod, string relativeOrAbsoluteUrl, object request) => throw null; public virtual TResponse Send(object request) => throw null; public virtual System.Collections.Generic.List SendAll(System.Collections.Generic.IEnumerable requests) => throw null; public System.Threading.Tasks.Task> SendAllAsync(System.Collections.Generic.IEnumerable requests, System.Threading.CancellationToken token) => throw null; public virtual void SendAllOneWay(System.Collections.Generic.IEnumerable requests) => throw null; public virtual System.Threading.Tasks.Task SendAsync(object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task SendAsync(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(object request, System.Exception ex, string requestUri) => throw null; public void ThrowWebServiceException(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 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(this ServiceStack.IEncryptedClient client, ServiceStack.IReturn request) => throw null; public static TResponse Get(this ServiceStack.IEncryptedClient client, ServiceStack.IReturn 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(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, string requestBody) => throw null; public static TResponse PatchBody(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, object requestBody) => throw null; public static TResponse PatchBody(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, System.IO.Stream requestBody) => throw null; public static TResponse PatchBody(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, System.Byte[] requestBody) => throw null; public static System.Threading.Tasks.Task PatchBodyAsync(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, string requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static System.Threading.Tasks.Task PatchBodyAsync(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, object requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static System.Threading.Tasks.Task PatchBodyAsync(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, System.IO.Stream requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static System.Threading.Tasks.Task PatchBodyAsync(this ServiceStack.IServiceClient client, ServiceStack.IReturn 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 requests) => throw null; public static TResponse Post(this ServiceStack.IEncryptedClient client, ServiceStack.IReturn request) => throw null; public static TResponse PostBody(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, string requestBody) => throw null; public static TResponse PostBody(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, object requestBody) => throw null; public static TResponse PostBody(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, System.IO.Stream requestBody) => throw null; public static TResponse PostBody(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, System.Byte[] requestBody) => throw null; public static System.Threading.Tasks.Task PostBodyAsync(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, string requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static System.Threading.Tasks.Task PostBodyAsync(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, object requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static System.Threading.Tasks.Task PostBodyAsync(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, System.IO.Stream requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static System.Threading.Tasks.Task PostBodyAsync(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, System.Byte[] requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static TResponse PostFile(this ServiceStack.IRestClient client, string relativeOrAbsoluteUrl, System.IO.FileInfo fileToUpload, string mimeType) => throw null; public static TResponse PostFileWithRequest(this ServiceStack.IRestClient client, string relativeOrAbsoluteUrl, System.IO.FileInfo fileToUpload, object request, string fieldName = default(string)) => throw null; public static TResponse PostFileWithRequest(this ServiceStack.IRestClient client, System.IO.FileInfo fileToUpload, object request, string fieldName = default(string)) => throw null; public static TResponse Put(this ServiceStack.IEncryptedClient client, ServiceStack.IReturn request) => throw null; public static TResponse PutBody(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, string requestBody) => throw null; public static TResponse PutBody(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, object requestBody) => throw null; public static TResponse PutBody(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, System.IO.Stream requestBody) => throw null; public static TResponse PutBody(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, System.Byte[] requestBody) => throw null; public static System.Threading.Tasks.Task PutBodyAsync(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, string requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static System.Threading.Tasks.Task PutBodyAsync(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, object requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static System.Threading.Tasks.Task PutBodyAsync(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, System.IO.Stream requestBody, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static System.Threading.Tasks.Task PutBodyAsync(this ServiceStack.IServiceClient client, ServiceStack.IReturn 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 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 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 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 Send(this ServiceStack.IServiceClientAsync client, ServiceStack.IReturn requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static System.Threading.Tasks.Task> SendAllAsync(this ServiceStack.IServiceGateway client, System.Collections.Generic.IEnumerable> requestDtos, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static System.Threading.Tasks.Task> SendAllAsync(this ServiceStack.IServiceClientAsync client, System.Collections.Generic.List> requestDtos, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static System.Threading.Tasks.Task> SendAllAsync(this ServiceStack.IServiceClientAsync client, ServiceStack.IReturn[] requestDtos, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static System.Threading.Tasks.Task SendAsync(this ServiceStack.IServiceGateway client, object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static System.Threading.Tasks.Task SendAsync(this ServiceStack.IServiceGateway client, ServiceStack.IReturn 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(this ServiceStack.IServiceGateway client, ServiceStack.IReturn request) => throw null; public static System.Collections.Generic.List SendAll(this ServiceStack.IServiceGateway client, System.Collections.Generic.IEnumerable> request) => throw null; public static System.Threading.Tasks.Task 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() => 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.IReturn { public System.Collections.Generic.List 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.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 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.IReturn, ServiceStack.IPost, ServiceStack.IMeta { public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } public System.Collections.Generic.List Permissions { get => throw null; set => throw null; } public System.Collections.Generic.List 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 AllPermissions { get => throw null; set => throw null; } public System.Collections.Generic.List AllRoles { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary 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.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 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 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(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 headers = default(System.Collections.Generic.Dictionary)) => 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 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(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 CreateMessage(object mqResponse) => throw null; public void Dispose() => throw null; public ServiceStack.Messaging.IMessage Get(string queueName, System.TimeSpan? timeOut = default(System.TimeSpan?)) => throw null; public ServiceStack.Messaging.IMessage GetAsync(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 messageBody) => throw null; public void Publish(ServiceStack.Messaging.IMessage message) => throw null; public void Publish(string queueName, ServiceStack.Messaging.IMessage message) => throw null; public void SendAllOneWay(System.Collections.Generic.IEnumerable 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 MessageReceived; public void PublishMessage(string queueName, ServiceStack.Messaging.IMessage 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 messageBody) => throw null; public void Publish(ServiceStack.Messaging.IMessage 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 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 CreateMessage(object mqResponse) => throw null; public void Dispose() => throw null; public ServiceStack.Messaging.IMessage Get(string queueName, System.TimeSpan? timeOut = default(System.TimeSpan?)) => throw null; public ServiceStack.Messaging.IMessage GetAsync(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 messageBody) => throw null; public void Publish(ServiceStack.Messaging.IMessage 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 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 from) => throw null; public void CompressToStream(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(System.IO.Stream stream) => throw null; public object DeserializeFromString(string xml, System.Type type) => throw null; public T DeserializeFromString(string xml) => throw null; public static ServiceStack.Serialization.DataContractSerializer Instance; public string Parse(XmlDto from, bool indentXml) => throw null; public void SerializeToStream(object obj, System.IO.Stream stream) => throw null; public string SerializeToString(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(System.IO.Stream stream); void SerializeToStream(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 obj, System.IO.Stream stream) => throw null; public static string BclSerializeToString(T obj) => throw null; public object DeserializeFromStream(System.Type type, System.IO.Stream stream) => throw null; public T DeserializeFromStream(System.IO.Stream stream) => throw null; public object DeserializeFromString(string json, System.Type returnType) => throw null; public T DeserializeFromString(string json) => throw null; public static ServiceStack.Serialization.JsonDataContractSerializer Instance; public JsonDataContractSerializer() => throw null; public void SerializeToStream(T obj, System.IO.Stream stream) => throw null; public string SerializeToString(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 keyValuePairs, System.Type returnType) => throw null; public To Parse(System.Collections.Generic.IDictionary 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 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 ignoredWarningsOnPropertyNames = default(System.Collections.Generic.List)) => throw null; public object PopulateFromMap(object instance, System.Collections.Generic.IDictionary keyValuePairs, System.Collections.Generic.List ignoredWarningsOnPropertyNames = default(System.Collections.Generic.List)) => 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(string xml) => throw null; public static ServiceStack.Serialization.XmlSerializableSerializer Instance; public To Parse(System.IO.TextReader from) => throw null; public To Parse(System.IO.Stream from) => throw null; public void SerializeToStream(object obj, System.IO.Stream stream) => throw null; public string SerializeToString(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 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 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 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 errors, string successCode, string errorCode) => throw null; public ValidationErrorResult(System.Collections.Generic.IList errors) => throw null; public ValidationErrorResult() => throw null; } } }