// This file contains auto-generated code. namespace ServiceStack { // Generated from `ServiceStack.AdminCreateUser` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AdminCreateUser : ServiceStack.AdminUserBase, ServiceStack.IPost, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AdminDeleteUser : ServiceStack.IDelete, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { public AdminDeleteUser() => throw null; public string Id { get => throw null; set => throw null; } } // Generated from `ServiceStack.AdminDeleteUserResponse` in `ServiceStack.Client, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AdminGetUser : ServiceStack.IGet, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { public AdminGetUser() => throw null; public string Id { get => throw null; set => throw null; } } // Generated from `ServiceStack.AdminQueryUsers` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AdminQueryUsers : ServiceStack.IGet, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AdminUpdateUser : ServiceStack.AdminUserBase, ServiceStack.IPut, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { 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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AdminUserResponse : ServiceStack.IHasResponseStatus { public AdminUserResponse() => throw null; public System.Collections.Generic.List> Details { get => throw null; set => 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.AdminUsersInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AdminUsersInfo : ServiceStack.IMeta { public string AccessRole { get => throw null; set => throw null; } public AdminUsersInfo() => throw null; 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 ServiceStack.ApiCss Css { get => throw null; set => throw null; } public System.Collections.Generic.List Enabled { get => throw null; set => throw null; } public System.Collections.Generic.List FormLayout { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } public System.Collections.Generic.List QueryMediaRules { get => throw null; set => throw null; } public System.Collections.Generic.List QueryUserAuthProperties { get => throw null; set => throw null; } public ServiceStack.MetadataType UserAuth { get => throw null; set => throw null; } } // Generated from `ServiceStack.AdminUsersResponse` in `ServiceStack.Client, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class AesUtils { public const int BlockSize = default; public const int BlockSizeBytes = default; public static string CreateBase64Key() => throw null; 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 System.Byte[] Decrypt(System.Byte[] encryptedBytes, System.Byte[] cryptKey, System.Byte[] iv) => throw null; public static string Decrypt(string encryptedBase64, 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 static string Encrypt(string text, System.Byte[] cryptKey, System.Byte[] iv) => throw null; public const int KeySize = default; public const int KeySizeBytes = default; } // Generated from `ServiceStack.ApiCss` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ApiCss { public ApiCss() => throw null; public string Field { get => throw null; set => throw null; } public string Fieldset { get => throw null; set => throw null; } public string Form { get => throw null; set => throw null; } } // Generated from `ServiceStack.ApiFormat` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ApiFormat { public ApiFormat() => throw null; public bool AssumeUtc { get => throw null; set => throw null; } public ServiceStack.FormatInfo Date { get => throw null; set => throw null; } public string Locale { get => throw null; set => throw null; } public ServiceStack.FormatInfo Number { get => throw null; set => throw null; } } // Generated from `ServiceStack.ApiResult` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class ApiResult { public static ServiceStack.ApiResult Create(TResponse response) => throw null; public static ServiceStack.ApiResult CreateError(System.Exception ex) => throw null; public static ServiceStack.ApiResult CreateError(ServiceStack.ResponseStatus errorStatus) => throw null; public static ServiceStack.ApiResult CreateError(string message, string errorCode = default(string)) => throw null; public static ServiceStack.ApiResult CreateError(System.Exception ex) => throw null; public static ServiceStack.ApiResult CreateError(ServiceStack.ResponseStatus errorStatus) => throw null; public static ServiceStack.ApiResult CreateError(string message, string errorCode = default(string)) => throw null; public static ServiceStack.ApiResult CreateFieldError(string fieldName, string message, string errorCode = default(string)) => throw null; public static ServiceStack.ApiResult CreateFieldError(string fieldName, string message, string errorCode = default(string)) => throw null; public const string FieldErrorCode = default; } // Generated from `ServiceStack.ApiResult<>` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ApiResult : ServiceStack.IHasErrorStatus { public void AddFieldError(string fieldName, string message, string errorCode = default(string)) => throw null; public ApiResult() => throw null; public ApiResult(ServiceStack.ResponseStatus errorStatus) => throw null; public ApiResult(TResponse response) => throw null; public void ClearErrors() => throw null; public bool Completed { get => throw null; } public ServiceStack.ResponseStatus Error { get => throw null; set => throw null; } public string ErrorMessage { get => throw null; } public string ErrorSummary { get => throw null; } public ServiceStack.ResponseError[] Errors { get => throw null; } public bool Failed { get => throw null; } public ServiceStack.ResponseError FieldError(string fieldName) => throw null; public string FieldErrorMessage(string fieldName) => throw null; public bool HasFieldError(string fieldName) => throw null; public bool IsLoading { get => throw null; set => throw null; } public TResponse Response { get => throw null; } public void SetError(string errorMessage, string errorCode = default(string)) => throw null; public string StackTrace { get => throw null; set => throw null; } public bool Succeeded { get => throw null; } } // Generated from `ServiceStack.ApiResultUtils` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class ApiResultUtils { public static ServiceStack.ApiResult Api(this ServiceStack.IServiceClient client, ServiceStack.IReturnVoid request) => throw null; public static ServiceStack.ApiResult Api(this ServiceStack.IServiceClient client, ServiceStack.IReturn request) => throw null; public static System.Threading.Tasks.Task> ApiAsync(this ServiceStack.IServiceClient client, ServiceStack.IReturnVoid request) => throw null; public static System.Threading.Tasks.Task> ApiAsync(this ServiceStack.IServiceClient client, ServiceStack.IReturn request) => throw null; public static void ThrowIfError(this ServiceStack.ApiResult api) => throw null; public static ServiceStack.ApiResult ToApiResult(this System.Exception ex) => throw null; public static ServiceStack.ApiResult ToApiResult(this System.Exception ex) => throw null; public static ServiceStack.AuthenticateResponse ToAuthenticateResponse(this ServiceStack.RegisterResponse from) => throw null; } // Generated from `ServiceStack.ApiUiInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ApiUiInfo : ServiceStack.IMeta { public ApiUiInfo() => throw null; public ServiceStack.ApiCss ExplorerCss { get => throw null; set => throw null; } public System.Collections.Generic.List FormLayout { get => throw null; set => throw null; } public ServiceStack.ApiCss LocodeCss { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } } // Generated from `ServiceStack.AppInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AppInfo : ServiceStack.IMeta { public AppInfo() => throw null; public string BackgroundColor { get => throw null; set => throw null; } public string BackgroundImageUrl { get => throw null; set => throw null; } public string BaseUrl { get => throw null; set => throw null; } public string BrandImageUrl { get => throw null; set => throw null; } public string BrandUrl { get => throw null; set => throw null; } public string IconUrl { get => throw null; set => throw null; } public string JsTextCase { get => throw null; set => throw null; } public string LinkColor { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } public string ServiceDescription { get => throw null; set => throw null; } public string ServiceIconUrl { get => throw null; set => throw null; } public string ServiceName { get => throw null; set => throw null; } public string ServiceStackVersion { get => throw null; } public string TextColor { get => throw null; set => throw null; } } // Generated from `ServiceStack.AppMetadata` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AppMetadata : ServiceStack.IMeta { public ServiceStack.MetadataTypes Api { get => throw null; set => throw null; } public ServiceStack.AppInfo App { get => throw null; set => throw null; } public AppMetadata() => throw null; public ServiceStack.AppMetadataCache Cache { get => throw null; set => throw null; } public ServiceStack.ConfigInfo Config { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary ContentTypeFormats { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary CustomPlugins { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary HttpHandlers { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } public ServiceStack.PluginInfo Plugins { get => throw null; set => throw null; } public ServiceStack.UiInfo Ui { get => throw null; set => throw null; } } // Generated from `ServiceStack.AppMetadataCache` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AppMetadataCache { public AppMetadataCache(System.Collections.Generic.Dictionary operationsMap, System.Collections.Generic.Dictionary typesMap) => throw null; public System.Collections.Generic.Dictionary OperationsMap { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary TypesMap { get => throw null; set => throw null; } } // Generated from `ServiceStack.AppMetadataUtils` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class AppMetadataUtils { public static void EachOperation(this ServiceStack.AppMetadata app, System.Action configure) => throw null; public static void EachOperation(this ServiceStack.AppMetadata app, System.Action configure, System.Predicate where) => throw null; public static void EachProperty(this ServiceStack.MetadataType type, System.Func where, System.Action configure) => throw null; public static void EachType(this ServiceStack.AppMetadata app, System.Action configure) => throw null; public static void EachType(this ServiceStack.AppMetadata app, System.Action configure, System.Predicate where) => throw null; public static System.Threading.Tasks.Task GetAppMetadataAsync(this string baseUrl) => throw null; public static ServiceStack.AppMetadataCache GetCache(this ServiceStack.AppMetadata app) => throw null; public static ServiceStack.MetadataOperationType GetOperation(this ServiceStack.AppMetadata app, string name) => throw null; public static ServiceStack.MetadataType GetType(this ServiceStack.AppMetadata app, System.Type type) => throw null; public static ServiceStack.MetadataType GetType(this ServiceStack.AppMetadata app, string name) => throw null; public static ServiceStack.MetadataType GetType(this ServiceStack.AppMetadata app, string @namespace, string name) => throw null; public static bool IsSystemType(this ServiceStack.MetadataPropertyType prop) => throw null; public static ServiceStack.MetadataPropertyType Property(this ServiceStack.MetadataType type, string name) => throw null; public static void Property(this ServiceStack.MetadataType type, string name, System.Action configure) => throw null; public static void RemoveProperty(this ServiceStack.MetadataType type, System.Predicate where) => throw null; public static void RemoveProperty(this ServiceStack.MetadataType type, string name) => throw null; public static ServiceStack.MetadataPropertyType ReorderProperty(this ServiceStack.MetadataType type, string name, int index) => throw null; public static ServiceStack.MetadataPropertyType ReorderProperty(this ServiceStack.MetadataType type, string name, string before = default(string), string after = default(string)) => throw null; public static ServiceStack.MetadataPropertyType RequiredProperty(this ServiceStack.MetadataType type, string name) => throw null; public static ServiceStack.FieldCss ToCss(this ServiceStack.FieldCssAttribute attr) => throw null; public static ServiceStack.FormatInfo ToFormat(this ServiceStack.FormatAttribute attr) => throw null; public static ServiceStack.FormatInfo ToFormat(this ServiceStack.Intl attr) => throw null; public static ServiceStack.InputInfo ToInput(this ServiceStack.InputAttributeBase input, System.Action configure = default(System.Action)) => throw null; } // Generated from `ServiceStack.AppTags` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AppTags { public AppTags() => throw null; public string Default { get => throw null; set => throw null; } public string Other { get => throw null; set => throw null; } } // Generated from `ServiceStack.AssignRoles` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AssignRoles : ServiceStack.IMeta, ServiceStack.IPost, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AssignRolesResponse : ServiceStack.IHasResponseStatus, ServiceStack.IMeta { 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AsyncServiceClient : ServiceStack.IHasBearerToken, ServiceStack.IHasSessionId, ServiceStack.IHasVersion { 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 bool EnableAutoRefreshToken { 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.Net.Http.HttpClient HttpClient { get => throw null; set => throw null; } public System.Text.StringBuilder HttpLog { get => throw null; set => throw null; } public System.Action HttpLogFilter { 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 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AsyncTimer : ServiceStack.ITimer, System.IDisposable { 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.AuthInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AuthInfo : ServiceStack.IMeta { public AuthInfo() => throw null; public System.Collections.Generic.List AuthProviders { get => throw null; set => throw null; } public bool? HasAuthRepository { get => throw null; set => throw null; } public bool? HasAuthSecret { get => throw null; set => throw null; } public string HtmlRedirect { get => throw null; set => throw null; } public bool? IncludesOAuthTokens { get => throw null; set => throw null; } public bool? IncludesRoles { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary> RoleLinks { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary ServiceRoutes { get => throw null; set => throw null; } } // Generated from `ServiceStack.Authenticate` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class Authenticate : ServiceStack.IMeta, ServiceStack.IPost, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { public string AccessToken { get => throw null; set => throw null; } public string AccessTokenSecret { get => throw null; set => throw null; } public Authenticate() => throw null; public Authenticate(string provider) => 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 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AuthenticateResponse : ServiceStack.IHasBearerToken, ServiceStack.IHasRefreshToken, ServiceStack.IHasResponseStatus, ServiceStack.IHasSessionId, ServiceStack.IMeta { 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AuthenticationException : System.Exception, ServiceStack.IHasStatusCode { public AuthenticationException() => throw null; public AuthenticationException(string message) => throw null; public AuthenticationException(string message, System.Exception innerException) => throw null; public int StatusCode { get => throw null; } } // Generated from `ServiceStack.AuthenticationInfo` in `ServiceStack.Client, Version=6.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.AutoQueryConvention` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AutoQueryConvention { public AutoQueryConvention() => throw null; public string Name { get => throw null; set => throw null; } public string Types { get => throw null; set => throw null; } public string Value { get => throw null; set => throw null; } public string ValueType { get => throw null; set => throw null; } } // Generated from `ServiceStack.AutoQueryInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class AutoQueryInfo : ServiceStack.IMeta { public string AccessRole { get => throw null; set => throw null; } public bool? Async { get => throw null; set => throw null; } public AutoQueryInfo() => throw null; public bool? AutoQueryViewer { get => throw null; set => throw null; } public bool? CrudEvents { get => throw null; set => throw null; } public bool? CrudEventsServices { get => throw null; set => throw null; } public int? MaxLimit { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } public string NamedConnection { get => throw null; set => throw null; } public bool? OrderByPrimaryKey { get => throw null; set => throw null; } public bool? RawSqlFilters { get => throw null; set => throw null; } public bool? UntypedQueries { get => throw null; set => throw null; } public System.Collections.Generic.List ViewerConventions { get => throw null; set => throw null; } } // Generated from `ServiceStack.BrotliCompressor` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class BrotliCompressor : ServiceStack.Caching.IStreamCompressor { public BrotliCompressor() => throw null; public System.Byte[] Compress(System.Byte[] buffer) => throw null; public System.IO.Stream Compress(System.IO.Stream outputStream, bool leaveOpen = default(bool)) => throw null; public System.Byte[] Compress(string text, System.Text.Encoding encoding = default(System.Text.Encoding)) => throw null; public string Decompress(System.Byte[] zipBuffer, System.Text.Encoding encoding = default(System.Text.Encoding)) => throw null; public System.IO.Stream Decompress(System.IO.Stream gzStream, bool leaveOpen = default(bool)) => throw null; public System.Byte[] DecompressBytes(System.Byte[] zipBuffer) => throw null; public string Encoding { get => throw null; } public static ServiceStack.BrotliCompressor Instance { get => throw null; } } // Generated from `ServiceStack.CachedServiceClient` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class CachedServiceClient : ServiceStack.ICachedServiceClient, ServiceStack.IHasBearerToken, ServiceStack.IHasSessionId, ServiceStack.IHasVersion, ServiceStack.IHttpRestClientAsync, ServiceStack.IOneWayClient, ServiceStack.IReplyClient, ServiceStack.IRestClient, ServiceStack.IRestClientAsync, ServiceStack.IRestClientSync, ServiceStack.IRestServiceClient, ServiceStack.IServiceClient, ServiceStack.IServiceClientAsync, ServiceStack.IServiceClientCommon, ServiceStack.IServiceClientSync, ServiceStack.IServiceGateway, ServiceStack.IServiceGatewayAsync, System.IDisposable { 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) => throw null; public CachedServiceClient(ServiceStack.ServiceClientBase client, System.Collections.Concurrent.ConcurrentDictionary cache) => 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, ServiceStack.IReturn requestDto) => throw null; public TResponse CustomMethod(string httpVerb, object requestDto) => throw null; public System.Threading.Tasks.Task CustomMethodAsync(string httpVerb, ServiceStack.IReturnVoid 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, object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => 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 void Delete(ServiceStack.IReturnVoid requestDto) => throw null; public TResponse Delete(ServiceStack.IReturn request) => throw null; public TResponse Delete(object request) => throw null; public TResponse Delete(string relativeOrAbsoluteUrl) => throw null; public System.Threading.Tasks.Task DeleteAsync(ServiceStack.IReturnVoid 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(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task DeleteAsync(string relativeOrAbsoluteUrl, 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(ServiceStack.IReturn requestDto) => throw null; public TResponse Get(object requestDto) => throw null; public TResponse Get(string relativeOrAbsoluteUrl) => throw null; public System.Threading.Tasks.Task GetAsync(ServiceStack.IReturnVoid 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(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task GetAsync(string relativeOrAbsoluteUrl, 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(ServiceStack.IReturn requestDto) => throw null; public TResponse Patch(object requestDto) => throw null; public TResponse Patch(string relativeOrAbsoluteUrl, object requestDto) => throw null; public System.Threading.Tasks.Task PatchAsync(ServiceStack.IReturnVoid 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(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public void Post(ServiceStack.IReturnVoid requestDto) => throw null; public TResponse Post(ServiceStack.IReturn requestDto) => throw null; public TResponse Post(object requestDto) => throw null; public TResponse Post(string relativeOrAbsoluteUrl, object request) => throw null; public System.Threading.Tasks.Task PostAsync(ServiceStack.IReturnVoid 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(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task PostAsync(string relativeOrAbsoluteUrl, object request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public TResponse PostFile(string relativeOrAbsoluteUrl, System.IO.Stream fileToUpload, string fileName, string mimeType, 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 PostFileWithRequest(string relativeOrAbsoluteUrl, System.IO.Stream fileToUpload, string fileName, object request, string fieldName = default(string)) => throw null; public TResponse PostFilesWithRequest(object request, System.Collections.Generic.IEnumerable files) => throw null; public TResponse PostFilesWithRequest(string relativeOrAbsoluteUrl, 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(ServiceStack.IReturn requestDto) => throw null; public TResponse Put(object requestDto) => throw null; public TResponse Put(string relativeOrAbsoluteUrl, object requestDto) => throw null; public System.Threading.Tasks.Task PutAsync(ServiceStack.IReturnVoid 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(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task PutAsync(string relativeOrAbsoluteUrl, object request, 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(object request) => throw null; public TResponse Send(string httpMethod, string relativeOrAbsoluteUrl, 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(object requestDto, System.Threading.CancellationToken token) => 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 void SendOneWay(object requestDto) => throw null; public void SendOneWay(string relativeOrAbsoluteUri, 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class CachedServiceClientExtensions { public static ServiceStack.IServiceClient WithCache(this ServiceStack.ServiceClientBase client) => throw null; public static ServiceStack.IServiceClient WithCache(this ServiceStack.ServiceClientBase client, System.Collections.Concurrent.ConcurrentDictionary cache) => throw null; } // Generated from `ServiceStack.CancelRequest` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class CancelRequest : ServiceStack.IMeta, ServiceStack.IPost, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class CancelRequestResponse : ServiceStack.IHasResponseStatus, ServiceStack.IMeta { 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=6.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=6.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=6.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.ClientDiagnosticUtils` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class ClientDiagnosticUtils { public static void InitMessage(this System.Diagnostics.DiagnosticListener listener, ServiceStack.Messaging.IMessage msg) => throw null; } // Generated from `ServiceStack.ClientDiagnostics` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class ClientDiagnostics { public static void WriteRequestAfter(this System.Diagnostics.DiagnosticListener listener, System.Guid operationId, System.Net.Http.HttpRequestMessage httpReq, object response, string operation = default(string)) => throw null; public static System.Guid WriteRequestBefore(this System.Diagnostics.DiagnosticListener listener, System.Net.Http.HttpRequestMessage httpReq, object request, System.Type responseType, string operation = default(string)) => throw null; public static void WriteRequestError(this System.Diagnostics.DiagnosticListener listener, System.Guid operationId, System.Net.Http.HttpRequestMessage httpReq, System.Exception ex, string operation = default(string)) => throw null; } // Generated from `ServiceStack.ClientFactory` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class ClientFactory { public static ServiceStack.IOneWayClient Create(string endpointUrl) => throw null; } // Generated from `ServiceStack.ConfigInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ConfigInfo : ServiceStack.IMeta { public ConfigInfo() => throw null; public bool? DebugMode { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } } // Generated from `ServiceStack.ContentFormat` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class ContentFormat { public static System.Collections.Generic.Dictionary ContentTypeAliases; public static string GetContentFormat(ServiceStack.Format format) => throw null; public static string GetContentFormat(string contentType) => 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ConvertSessionToToken : ServiceStack.IMeta, ServiceStack.IPost, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { 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=6.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=6.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.CssUtils` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class CssUtils { // Generated from `ServiceStack.CssUtils+Bootstrap` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class Bootstrap { public static string InputClass(ServiceStack.ResponseStatus status, string fieldName, string valid = default(string), string invalid = default(string)) => throw null; public static string InputClass(ServiceStack.ApiResult apiResult, string fieldName, string valid = default(string), string invalid = default(string)) => throw null; } // Generated from `ServiceStack.CssUtils+Tailwind` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class Tailwind { public static string InputClass(ServiceStack.ResponseStatus status, string fieldName, string valid = default(string), string invalid = default(string)) => throw null; public static string InputClass(ServiceStack.ApiResult apiResult, string fieldName, string valid = default(string), string invalid = default(string)) => throw null; } public static string Active(bool condition) => throw null; public static string ClassNames(params string[] classes) => throw null; public static string Selected(bool condition) => throw null; } // Generated from `ServiceStack.CsvServiceClient` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class CsvServiceClient : ServiceStack.ServiceClientBase { public override string ContentType { get => throw null; } public CsvServiceClient() => throw null; public CsvServiceClient(string baseUri) => throw null; public CsvServiceClient(string syncReplyBaseUri, string asyncOneWayBaseUri) => 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.CustomPluginInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class CustomPluginInfo : ServiceStack.IMeta { public string AccessRole { get => throw null; set => throw null; } public CustomPluginInfo() => throw null; public System.Collections.Generic.List Enabled { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary ServiceRoutes { get => throw null; set => throw null; } } // Generated from `ServiceStack.DeflateCompressor` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class DeflateCompressor : ServiceStack.Caching.IStreamCompressor { public System.Byte[] Compress(System.Byte[] bytes) => throw null; public System.IO.Stream Compress(System.IO.Stream outputStream, bool leaveOpen = default(bool)) => throw null; public System.Byte[] Compress(string text, System.Text.Encoding encoding = default(System.Text.Encoding)) => throw null; public string Decompress(System.Byte[] zipBuffer, System.Text.Encoding encoding = default(System.Text.Encoding)) => throw null; public System.IO.Stream Decompress(System.IO.Stream zipBuffer, bool leaveOpen = default(bool)) => throw null; public System.Byte[] DecompressBytes(System.Byte[] zipBuffer) => throw null; public DeflateCompressor() => throw null; public string Encoding { get => throw null; } public static ServiceStack.DeflateCompressor Instance { get => throw null; } } // Generated from `ServiceStack.DeleteFileUpload` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class DeleteFileUpload : ServiceStack.IDelete, ServiceStack.IHasBearerToken, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { public string BearerToken { get => throw null; set => throw null; } public DeleteFileUpload() => throw null; public string Name { get => throw null; set => throw null; } public string Path { get => throw null; set => throw null; } } // Generated from `ServiceStack.DeleteFileUploadResponse` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class DeleteFileUploadResponse { public DeleteFileUploadResponse() => throw null; public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; } public bool Result { get => throw null; set => throw null; } } // Generated from `ServiceStack.DynamicRequest` in `ServiceStack.Client, Version=6.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=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class EncryptedServiceClient : ServiceStack.IEncryptedClient, ServiceStack.IHasBearerToken, ServiceStack.IHasSessionId, ServiceStack.IHasVersion, ServiceStack.IReplyClient, ServiceStack.IServiceGateway { 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, System.Security.Cryptography.RSAParameters publicKey) => throw null; public EncryptedServiceClient(ServiceStack.IJsonServiceClient client, string publicKeyXml) => 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(object request) => throw null; public TResponse Send(string httpMethod, ServiceStack.IReturn request) => throw null; public TResponse Send(string httpMethod, 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.ErrorUtils` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class ErrorUtils { public static ServiceStack.ResponseStatus AddFieldError(this ServiceStack.ResponseStatus status, string fieldName, string errorMessage, string errorCode = default(string)) => throw null; public static ServiceStack.ResponseStatus AsResponseStatus(this System.Exception ex) => throw null; public static ServiceStack.ResponseStatus CreateError(System.Exception ex) => throw null; public static ServiceStack.ResponseStatus CreateError(string message, string errorCode = default(string)) => throw null; public static ServiceStack.ResponseStatus CreateFieldError(string fieldName, string errorMessage, string errorCode = default(string)) => throw null; public static ServiceStack.ResponseError FieldError(this ServiceStack.ResponseStatus status, string fieldName) => throw null; public const string FieldErrorCode = default; public static string FieldErrorMessage(this ServiceStack.ResponseStatus status, string fieldName) => throw null; public static bool HasErrorField(this ServiceStack.ResponseStatus status, string fieldName) => throw null; public static bool IsError(this ServiceStack.ResponseStatus status) => throw null; public static bool IsSuccess(this ServiceStack.ResponseStatus status) => throw null; public static bool ShowSummary(this ServiceStack.ResponseStatus status, params string[] exceptFields) => throw null; public static string SummaryMessage(this ServiceStack.ResponseStatus status, params string[] exceptFields) => throw null; } // Generated from `ServiceStack.ExceptionFilterDelegate` in `ServiceStack.Client, Version=6.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.ExceptionFilterHttpDelegate` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public delegate object ExceptionFilterHttpDelegate(System.Net.Http.HttpResponseMessage webResponse, string requestUri, System.Type responseType); // Generated from `ServiceStack.ExplorerUi` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ExplorerUi { public ServiceStack.ApiCss Css { get => throw null; set => throw null; } public ExplorerUi() => throw null; public ServiceStack.AppTags Tags { get => throw null; set => throw null; } } // Generated from `ServiceStack.FieldCss` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class FieldCss { public string Field { get => throw null; set => throw null; } public FieldCss() => throw null; public string Input { get => throw null; set => throw null; } public string Label { get => throw null; set => throw null; } } // Generated from `ServiceStack.FileContent` in `ServiceStack.Client, Version=6.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.FilesUploadInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class FilesUploadInfo : ServiceStack.IMeta { public string BasePath { get => throw null; set => throw null; } public FilesUploadInfo() => throw null; public System.Collections.Generic.List Locations { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } } // Generated from `ServiceStack.FilesUploadLocation` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class FilesUploadLocation { public System.Collections.Generic.HashSet AllowExtensions { get => throw null; set => throw null; } public string AllowOperations { get => throw null; set => throw null; } public FilesUploadLocation() => throw null; public System.Int64? MaxFileBytes { get => throw null; set => throw null; } public int? MaxFileCount { get => throw null; set => throw null; } public System.Int64? MinFileBytes { get => throw null; set => throw null; } public string Name { get => throw null; set => throw null; } public string ReadAccessRole { get => throw null; set => throw null; } public string WriteAccessRole { get => throw null; set => throw null; } } // Generated from `ServiceStack.FormatInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class FormatInfo { public FormatInfo() => throw null; public string Locale { get => throw null; set => throw null; } public string Method { get => throw null; set => throw null; } public string Options { get => throw null; set => throw null; } } // Generated from `ServiceStack.GZipCompressor` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class GZipCompressor : ServiceStack.Caching.IStreamCompressor { public System.Byte[] Compress(System.Byte[] buffer) => throw null; public System.IO.Stream Compress(System.IO.Stream outputStream, bool leaveOpen = default(bool)) => throw null; public System.Byte[] Compress(string text, System.Text.Encoding encoding = default(System.Text.Encoding)) => throw null; public string Decompress(System.Byte[] gzBuffer, System.Text.Encoding encoding = default(System.Text.Encoding)) => throw null; public System.IO.Stream Decompress(System.IO.Stream gzStream, bool leaveOpen = default(bool)) => throw null; public System.Byte[] DecompressBytes(System.Byte[] gzBuffer) => throw null; public string Encoding { get => throw null; } public GZipCompressor() => throw null; public static ServiceStack.GZipCompressor Instance { get => throw null; } } // Generated from `ServiceStack.GetAccessToken` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class GetAccessToken : ServiceStack.IMeta, ServiceStack.IPost, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { 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; } } // Generated from `ServiceStack.GetAccessTokenResponse` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class GetAccessTokenResponse : ServiceStack.IHasResponseStatus, ServiceStack.IMeta { 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class GetApiKeys : ServiceStack.IGet, ServiceStack.IMeta, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class GetApiKeysResponse : ServiceStack.IHasResponseStatus, ServiceStack.IMeta { 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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class GetEventSubscribers : ServiceStack.IGet, ServiceStack.IReturn, ServiceStack.IReturn>>, ServiceStack.IVerb { public string[] Channels { get => throw null; set => throw null; } public GetEventSubscribers() => throw null; } // Generated from `ServiceStack.GetFile` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class GetFile : ServiceStack.IGet, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { public GetFile() => throw null; public string Path { get => throw null; set => throw null; } } // Generated from `ServiceStack.GetFileUpload` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class GetFileUpload : ServiceStack.IGet, ServiceStack.IHasBearerToken, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { public bool? Attachment { get => throw null; set => throw null; } public string BearerToken { get => throw null; set => throw null; } public GetFileUpload() => throw null; public string Name { get => throw null; set => throw null; } public string Path { get => throw null; set => throw null; } } // Generated from `ServiceStack.GetNavItems` in `ServiceStack.Client, Version=6.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=6.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=6.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=6.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=6.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=6.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=6.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=6.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.HttpClientDiagnosticEvent` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class HttpClientDiagnosticEvent : ServiceStack.DiagnosticEvent { public HttpClientDiagnosticEvent() => throw null; public System.Net.Http.HttpRequestMessage HttpRequest { get => throw null; set => throw null; } public System.Net.Http.HttpResponseMessage HttpResponse { get => throw null; set => throw null; } public object Request { get => throw null; set => throw null; } public object Response { get => throw null; set => throw null; } public System.Type ResponseType { get => throw null; set => throw null; } public override string Source { get => throw null; } } // Generated from `ServiceStack.HttpExt` in `ServiceStack.Client, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public interface ICachedServiceClient : ServiceStack.IHasBearerToken, ServiceStack.IHasSessionId, ServiceStack.IHasVersion, ServiceStack.IHttpRestClientAsync, ServiceStack.IOneWayClient, ServiceStack.IReplyClient, ServiceStack.IRestClient, ServiceStack.IRestClientAsync, ServiceStack.IRestClientSync, ServiceStack.IRestServiceClient, ServiceStack.IServiceClient, ServiceStack.IServiceClientAsync, ServiceStack.IServiceClientCommon, ServiceStack.IServiceClientSync, ServiceStack.IServiceGateway, ServiceStack.IServiceGatewayAsync, System.IDisposable { 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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public interface IHasCookieContainer { System.Net.CookieContainer CookieContainer { get; } } // Generated from `ServiceStack.IHasJsonApiClient` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public interface IHasJsonApiClient { ServiceStack.JsonApiClient Client { get; } } // Generated from `ServiceStack.IServiceClientMeta` in `ServiceStack.Client, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public interface ITimer : System.IDisposable { void Cancel(); } // Generated from `ServiceStack.ImageInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ImageInfo { public string Alt { get => throw null; set => throw null; } public string Cls { get => throw null; set => throw null; } public ImageInfo() => throw null; public string Svg { get => throw null; set => throw null; } public string Uri { get => throw null; set => throw null; } } // Generated from `ServiceStack.InputInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class InputInfo : ServiceStack.IMeta { public string Accept { get => throw null; set => throw null; } public System.Collections.Generic.KeyValuePair[] AllowableEntries { get => throw null; set => throw null; } public string[] AllowableValues { get => throw null; set => throw null; } public string Autocomplete { get => throw null; set => throw null; } public string Autofocus { get => throw null; set => throw null; } public string Capture { get => throw null; set => throw null; } public ServiceStack.FieldCss Css { get => throw null; set => throw null; } public bool? Disabled { get => throw null; set => throw null; } public string Help { get => throw null; set => throw null; } public string Id { get => throw null; set => throw null; } public bool? Ignore { get => throw null; set => throw null; } public InputInfo() => throw null; public InputInfo(string id) => throw null; public InputInfo(string id, string type) => throw null; public string Label { get => throw null; set => throw null; } public string Max { get => throw null; set => throw null; } public int? MaxLength { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } public string Min { get => throw null; set => throw null; } public int? MinLength { get => throw null; set => throw null; } public bool? Multiple { get => throw null; set => throw null; } public string Name { get => throw null; set => throw null; } public string Options { get => throw null; set => throw null; } public string Pattern { get => throw null; set => throw null; } public string Placeholder { get => throw null; set => throw null; } public bool? ReadOnly { get => throw null; set => throw null; } public bool? Required { get => throw null; set => throw null; } public string Size { get => throw null; set => throw null; } public int? Step { get => throw null; set => throw null; } public string Title { get => throw null; set => throw null; } public string Type { get => throw null; set => throw null; } public string Value { get => throw null; set => throw null; } } // Generated from `ServiceStack.JsonApiClient` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class JsonApiClient : ServiceStack.IHasBearerToken, ServiceStack.IHasCookieContainer, ServiceStack.IHasSessionId, ServiceStack.IHasVersion, ServiceStack.IHttpRestClientAsync, ServiceStack.IJsonServiceClient, ServiceStack.IOneWayClient, ServiceStack.IReplyClient, ServiceStack.IRestClient, ServiceStack.IRestClientAsync, ServiceStack.IRestClientSync, ServiceStack.IRestServiceClient, ServiceStack.IServiceClient, ServiceStack.IServiceClientAsync, ServiceStack.IServiceClientCommon, ServiceStack.IServiceClientMeta, ServiceStack.IServiceClientSync, ServiceStack.IServiceGateway, ServiceStack.IServiceGatewayAsync, System.IDisposable { public void AddHeader(string name, string value) => throw null; public bool AlwaysSendBasicAuthHeader { get => throw null; set => throw null; } public ServiceStack.ApiResult ApiForm(ServiceStack.IReturn request, System.Net.Http.MultipartFormDataContent body) => throw null; public ServiceStack.ApiResult ApiForm(string relativeOrAbsoluteUrl, System.Net.Http.MultipartFormDataContent request) => throw null; public System.Threading.Tasks.Task> ApiFormAsync(ServiceStack.IReturn request, System.Net.Http.MultipartFormDataContent body, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task> ApiFormAsync(string relativeOrAbsoluteUrl, System.Net.Http.MultipartFormDataContent request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public string AsyncOneWayBaseUri { get => throw null; set => throw null; } public string BasePath { 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 CancelAsync() => throw null; public void ClearCookies() => throw null; public string ContentType; public System.Net.CookieContainer CookieContainer { get => throw null; set => throw null; } public System.Net.ICredentials Credentials { get => throw null; set => throw null; } public void CustomMethod(string httpVerb, ServiceStack.IReturnVoid requestDto) => throw null; public TResponse CustomMethod(string httpVerb, ServiceStack.IReturn requestDto) => throw null; public TResponse CustomMethod(string httpVerb, object requestDto) => throw null; public TResponse CustomMethod(string httpVerb, string relativeOrAbsoluteUrl, object request) => throw null; public System.Threading.Tasks.Task CustomMethodAsync(string httpVerb, ServiceStack.IReturnVoid 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, object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => 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 static string DefaultBasePath { get => throw null; set => throw null; } public const string DefaultHttpMethod = default; public static string DefaultUserAgent; public void Delete(ServiceStack.IReturnVoid requestDto) => throw null; public TResponse Delete(ServiceStack.IReturn requestDto) => throw null; public TResponse Delete(object requestDto) => throw null; public TResponse Delete(string relativeOrAbsoluteUrl) => throw null; public System.Threading.Tasks.Task DeleteAsync(ServiceStack.IReturnVoid requestDto) => throw null; public System.Threading.Tasks.Task DeleteAsync(ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token) => throw null; public System.Threading.Tasks.Task DeleteAsync(ServiceStack.IReturn requestDto) => throw null; public System.Threading.Tasks.Task DeleteAsync(ServiceStack.IReturn requestDto, System.Threading.CancellationToken token) => throw null; public System.Threading.Tasks.Task DeleteAsync(object requestDto) => throw null; public System.Threading.Tasks.Task DeleteAsync(object requestDto, System.Threading.CancellationToken token) => throw null; public System.Threading.Tasks.Task DeleteAsync(string relativeOrAbsoluteUrl) => throw null; public System.Threading.Tasks.Task DeleteAsync(string relativeOrAbsoluteUrl, System.Threading.CancellationToken token) => throw null; public void Dispose() => throw null; public bool EnableAutoRefreshToken { get => throw null; set => throw null; } public ServiceStack.ExceptionFilterHttpDelegate ExceptionFilter { get => throw null; set => throw null; } public string Format { get => throw null; set => throw null; } public void Get(ServiceStack.IReturnVoid requestDto) => throw null; public TResponse Get(ServiceStack.IReturn requestDto) => throw null; public TResponse Get(object requestDto) => throw null; public TResponse Get(string relativeOrAbsoluteUrl) => throw null; public System.Threading.Tasks.Task GetAsync(ServiceStack.IReturnVoid requestDto) => throw null; public System.Threading.Tasks.Task GetAsync(ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token) => throw null; public System.Threading.Tasks.Task GetAsync(ServiceStack.IReturn requestDto) => throw null; public System.Threading.Tasks.Task GetAsync(ServiceStack.IReturn requestDto, System.Threading.CancellationToken token) => throw null; public System.Threading.Tasks.Task GetAsync(object requestDto) => throw null; public System.Threading.Tasks.Task GetAsync(object requestDto, System.Threading.CancellationToken token) => throw null; public System.Threading.Tasks.Task GetAsync(string relativeOrAbsoluteUrl) => throw null; public System.Threading.Tasks.Task GetAsync(string relativeOrAbsoluteUrl, System.Threading.CancellationToken token) => throw null; public System.Collections.Generic.Dictionary GetCookieValues() => throw null; public System.Net.Http.HttpClient GetHttpClient() => throw null; public string GetHttpMethod(object request) => throw null; public virtual System.Collections.Generic.IEnumerable GetLazy(ServiceStack.IReturn> queryDto) => throw null; public static System.Byte[] GetResponseBytes(object response) => throw null; public static System.Func GlobalHttpMessageHandlerFactory { get => throw null; set => 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.Net.Http.HttpClient HttpClient { get => throw null; set => throw null; } public System.Net.Http.HttpMessageHandler HttpMessageHandler { get => throw null; set => throw null; } public JsonApiClient(System.Net.Http.HttpClient httpClient) => throw null; public JsonApiClient(string baseUri) => throw null; public string Password { get => throw null; set => throw null; } public void Patch(ServiceStack.IReturnVoid requestDto) => throw null; public TResponse Patch(ServiceStack.IReturn requestDto) => throw null; public TResponse Patch(object requestDto) => throw null; public TResponse Patch(string relativeOrAbsoluteUrl, object request) => throw null; public System.Threading.Tasks.Task PatchAsync(ServiceStack.IReturnVoid requestDto) => throw null; public System.Threading.Tasks.Task PatchAsync(ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token) => throw null; public System.Threading.Tasks.Task PatchAsync(ServiceStack.IReturn requestDto) => throw null; public System.Threading.Tasks.Task PatchAsync(ServiceStack.IReturn requestDto, System.Threading.CancellationToken token) => throw null; public System.Threading.Tasks.Task PatchAsync(object requestDto) => throw null; public System.Threading.Tasks.Task PatchAsync(object requestDto, System.Threading.CancellationToken token) => throw null; public System.Threading.Tasks.Task PatchAsync(string relativeOrAbsoluteUrl, object request) => throw null; public System.Threading.Tasks.Task PatchAsync(string relativeOrAbsoluteUrl, object request, System.Threading.CancellationToken token) => throw null; public void Post(ServiceStack.IReturnVoid requestDto) => throw null; public TResponse Post(ServiceStack.IReturn requestDto) => throw null; public TResponse Post(object requestDto) => throw null; public TResponse Post(string relativeOrAbsoluteUrl, object request) => throw null; public System.Threading.Tasks.Task PostAsync(ServiceStack.IReturnVoid requestDto) => throw null; public System.Threading.Tasks.Task PostAsync(ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token) => throw null; public System.Threading.Tasks.Task PostAsync(ServiceStack.IReturn requestDto) => throw null; public System.Threading.Tasks.Task PostAsync(ServiceStack.IReturn requestDto, System.Threading.CancellationToken token) => throw null; public System.Threading.Tasks.Task PostAsync(object requestDto) => throw null; public System.Threading.Tasks.Task PostAsync(object requestDto, System.Threading.CancellationToken token) => throw null; public System.Threading.Tasks.Task PostAsync(string relativeOrAbsoluteUrl, object request) => throw null; public System.Threading.Tasks.Task PostAsync(string relativeOrAbsoluteUrl, object request, System.Threading.CancellationToken token) => throw null; public virtual TResponse PostFile(string relativeOrAbsoluteUrl, System.IO.Stream fileToUpload, string fileName, string mimeType = default(string), string fieldName = default(string)) => throw null; public virtual System.Threading.Tasks.Task PostFileAsync(string relativeOrAbsoluteUrl, System.IO.Stream fileToUpload, string fileName, string mimeType = default(string), string fieldName = default(string), System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public TResponse PostFileWithRequest(System.IO.Stream fileToUpload, string fileName, object request, string fieldName = default(string)) => throw null; public TResponse PostFileWithRequest(string relativeOrAbsoluteUrl, System.IO.Stream fileToUpload, string fileName, object request, string fieldName = default(string)) => throw null; public System.Threading.Tasks.Task PostFileWithRequestAsync(System.IO.Stream fileToUpload, string fileName, object request, string fieldName = default(string), System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public virtual System.Threading.Tasks.Task PostFileWithRequestAsync(string relativeOrAbsoluteUrl, System.IO.Stream fileToUpload, string fileName, object request, string fieldName = default(string), System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public TResponse PostFilesWithRequest(object request, System.Collections.Generic.IEnumerable files) => throw null; public TResponse PostFilesWithRequest(string relativeOrAbsoluteUrl, object request, System.Collections.Generic.IEnumerable files) => throw null; public virtual TResponse PostFilesWithRequest(string requestUri, object request, ServiceStack.UploadFile[] files) => throw null; public System.Threading.Tasks.Task PostFilesWithRequestAsync(object request, System.Collections.Generic.IEnumerable files, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Threading.Tasks.Task PostFilesWithRequestAsync(string relativeOrAbsoluteUrl, object request, System.Collections.Generic.IEnumerable files, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public virtual System.Threading.Tasks.Task PostFilesWithRequestAsync(string requestUri, object request, ServiceStack.UploadFile[] files, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public virtual void Publish(object request) => 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 virtual System.Threading.Tasks.Task PublishAsync(object request, System.Threading.CancellationToken token) => throw null; public void Put(ServiceStack.IReturnVoid requestDto) => throw null; public TResponse Put(ServiceStack.IReturn requestDto) => throw null; public TResponse Put(object requestDto) => throw null; public TResponse Put(string relativeOrAbsoluteUrl, object request) => throw null; public System.Threading.Tasks.Task PutAsync(ServiceStack.IReturnVoid requestDto) => throw null; public System.Threading.Tasks.Task PutAsync(ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token) => throw null; public System.Threading.Tasks.Task PutAsync(ServiceStack.IReturn requestDto) => throw null; public System.Threading.Tasks.Task PutAsync(ServiceStack.IReturn requestDto, System.Threading.CancellationToken token) => throw null; public System.Threading.Tasks.Task PutAsync(object requestDto) => throw null; public System.Threading.Tasks.Task PutAsync(object requestDto, System.Threading.CancellationToken token) => throw null; public System.Threading.Tasks.Task PutAsync(string relativeOrAbsoluteUrl, object request) => throw null; public System.Threading.Tasks.Task PutAsync(string relativeOrAbsoluteUrl, object request, System.Threading.CancellationToken token) => throw null; public virtual TResponse PutFile(string relativeOrAbsoluteUrl, System.IO.Stream fileToUpload, string fileName, string mimeType = default(string), string fieldName = default(string)) => 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; } protected T ResultFilter(T response, System.Net.Http.HttpResponseMessage httpRes, string httpMethod, string requestUri, object request) where T : class => throw null; public ServiceStack.ResultsFilterHttpDelegate ResultsFilter { get => throw null; set => throw null; } public ServiceStack.ResultsFilterHttpResponseDelegate ResultsFilterResponse { get => throw null; set => throw null; } public virtual TResponse Send(object request) => throw null; public TResponse Send(string httpMethod, string absoluteUrl, object request) => throw null; public TResponse Send(string httpMethod, string absoluteUrl, object request, object dto) => throw null; public System.Collections.Generic.List SendAll(System.Collections.Generic.IEnumerable requests) => throw null; public virtual 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 virtual System.Threading.Tasks.Task SendAsync(object request) => throw null; public virtual System.Threading.Tasks.Task SendAsync(object request, System.Threading.CancellationToken token) => 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(string httpMethod, string absoluteUrl, object request, object dto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public TResponse SendForm(string httpMethod, string relativeOrAbsoluteUrl, System.Net.Http.MultipartFormDataContent request) => throw null; public System.Threading.Tasks.Task SendFormAsync(string httpMethod, string relativeOrAbsoluteUrl, System.Net.Http.MultipartFormDataContent request, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public void SendOneWay(object request) => throw null; public void SendOneWay(string relativeOrAbsoluteUrl, object request) => throw null; public string SessionId { get => throw null; set => throw null; } public ServiceStack.JsonApiClient 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 string SyncReplyBaseUri { get => throw null; set => throw null; } public void ThrowWebServiceException(System.Net.Http.HttpResponseMessage httpRes, object request, string requestUri, object response) => throw null; public virtual string ToAbsoluteUrl(string relativeOrAbsoluteUrl) => throw null; public static ServiceStack.WebServiceException ToWebServiceException(System.Net.Http.HttpResponseMessage httpRes, object response, System.Func parseDtoFn) => throw null; public ServiceStack.TypedUrlResolverDelegate TypedUrlResolver { get => throw null; set => throw null; } public ServiceStack.UrlResolverDelegate UrlResolver { get => throw null; set => throw null; } public string UseBasePath { set => throw null; } public bool UseCookies { 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.JsonApiClientUtils` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class JsonApiClientUtils { public static void AddApiKeyAuth(this System.Net.Http.HttpRequestMessage request, string apiKey) => throw null; public static void AddBasicAuth(this System.Net.Http.HttpRequestMessage request, string userName, string password) => throw null; public static void AddBearerToken(this System.Net.Http.HttpRequestMessage request, string bearerToken) => throw null; public static System.Net.Http.MultipartFormDataContent AddCsvParam(this System.Net.Http.MultipartFormDataContent content, string key, T value) => throw null; public static System.Net.Http.MultipartFormDataContent AddFile(this System.Net.Http.MultipartFormDataContent content, string fieldName, System.IO.FileInfo file, string mimeType = default(string)) => throw null; public static System.Net.Http.MultipartFormDataContent AddFile(this System.Net.Http.MultipartFormDataContent content, string fieldName, ServiceStack.IO.IVirtualFile file, string mimeType = default(string)) => throw null; public static System.Net.Http.MultipartFormDataContent AddFile(this System.Net.Http.MultipartFormDataContent content, string fieldName, string fileName, System.ReadOnlyMemory fileContents, string mimeType = default(string)) => throw null; public static System.Net.Http.MultipartFormDataContent AddFile(this System.Net.Http.MultipartFormDataContent content, string fieldName, string fileName, System.IO.Stream fileContents, string mimeType = default(string)) => throw null; public static System.Threading.Tasks.Task AddFileAsync(this System.Net.Http.MultipartFormDataContent content, string fieldName, System.IO.FileInfo file, string mimeType = default(string)) => throw null; public static System.Net.Http.HttpContent AddFileInfo(this System.Net.Http.HttpContent content, string fieldName, string fileName, string mimeType = default(string)) => throw null; public static Microsoft.Extensions.DependencyInjection.IHttpClientBuilder AddJsonApiClient(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, string baseUrl) => throw null; public static System.Net.Http.MultipartFormDataContent AddJsonParam(this System.Net.Http.MultipartFormDataContent content, string key, T value) => throw null; public static System.Net.Http.MultipartFormDataContent AddJsvParam(this System.Net.Http.MultipartFormDataContent content, string key, T value) => throw null; public static System.Net.Http.MultipartFormDataContent AddParam(this System.Net.Http.MultipartFormDataContent content, string key, object value) => throw null; public static System.Net.Http.MultipartFormDataContent AddParam(this System.Net.Http.MultipartFormDataContent content, string key, string value) => throw null; public static System.Net.Http.MultipartFormDataContent AddParams(this System.Net.Http.MultipartFormDataContent content, System.Collections.Generic.Dictionary map) => throw null; public static System.Net.Http.MultipartFormDataContent AddParams(this System.Net.Http.MultipartFormDataContent content, System.Collections.IDictionary map) => throw null; public static System.Net.Http.MultipartFormDataContent AddParams(this System.Net.Http.MultipartFormDataContent content, T dto) => throw null; public static System.Threading.Tasks.Task> ApiAppMetadataAsync(this ServiceStack.IHasJsonApiClient instance, bool reload = default(bool)) => throw null; public static System.Threading.Tasks.Task> ApiAsync(this ServiceStack.IHasJsonApiClient instance, ServiceStack.IReturnVoid request) => throw null; public static System.Threading.Tasks.Task> ApiAsync(this ServiceStack.IHasJsonApiClient instance, ServiceStack.IReturn request) => throw null; public static System.Threading.Tasks.Task> ApiCacheAsync(this ServiceStack.IHasJsonApiClient instance, ServiceStack.IReturn requestDto) => throw null; public static string GetContentType(this System.Net.Http.HttpResponseMessage httpRes) => throw null; public static System.Byte[] ReadAsByteArray(this System.Net.Http.HttpContent content) => throw null; public static System.ReadOnlyMemory ReadAsMemoryBytes(this System.Net.Http.HttpContent content) => throw null; public static string ReadAsString(this System.Net.Http.HttpContent content) => throw null; public static System.Threading.Tasks.Task SendAsync(this ServiceStack.IHasJsonApiClient instance, ServiceStack.IReturn request) => throw null; public static System.Collections.Generic.Dictionary ToDictionary(this System.Net.Http.Headers.HttpResponseHeaders headers) => throw null; public static System.Net.Http.HttpContent ToHttpContent(this ServiceStack.IO.IVirtualFile file) => throw null; public static System.Net.WebHeaderCollection ToWebHeaderCollection(this System.Net.Http.Headers.HttpResponseHeaders headers) => throw null; } // Generated from `ServiceStack.JsonServiceClient` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class JsonServiceClient : ServiceStack.ServiceClientBase, ServiceStack.IHasBearerToken, ServiceStack.IHasSessionId, ServiceStack.IHasVersion, ServiceStack.IHttpRestClientAsync, ServiceStack.IJsonServiceClient, ServiceStack.IOneWayClient, ServiceStack.IReplyClient, ServiceStack.IRestClient, ServiceStack.IRestClientAsync, ServiceStack.IRestClientSync, ServiceStack.IRestServiceClient, ServiceStack.IServiceClient, ServiceStack.IServiceClientAsync, ServiceStack.IServiceClientCommon, ServiceStack.IServiceClientSync, ServiceStack.IServiceGateway, ServiceStack.IServiceGatewayAsync, System.IDisposable { 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() => throw null; public JsonServiceClient(string baseUri) => throw null; public JsonServiceClient(string syncReplyBaseUri, string asyncOneWayBaseUri) => 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=6.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() => throw null; public JsvServiceClient(string baseUri) => throw null; public JsvServiceClient(string syncReplyBaseUri, string asyncOneWayBaseUri) => 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.LinkInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class LinkInfo { public string Hide { get => throw null; set => throw null; } public string Href { get => throw null; set => throw null; } public ServiceStack.ImageInfo Icon { get => throw null; set => throw null; } public string Id { get => throw null; set => throw null; } public string Label { get => throw null; set => throw null; } public LinkInfo() => throw null; public string Show { get => throw null; set => throw null; } } // Generated from `ServiceStack.LocodeUi` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class LocodeUi { public ServiceStack.ApiCss Css { get => throw null; set => throw null; } public LocodeUi() => throw null; public int MaxFieldLength { get => throw null; set => throw null; } public int MaxNestedFieldLength { get => throw null; set => throw null; } public int MaxNestedFields { get => throw null; set => throw null; } public ServiceStack.AppTags Tags { get => throw null; set => throw null; } } // Generated from `ServiceStack.MediaRule` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class MediaRule : ServiceStack.IMeta { public string[] ApplyTo { get => throw null; set => throw null; } public MediaRule() => throw null; public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } public string Rule { get => throw null; set => throw null; } public string Size { get => throw null; set => throw null; } } // Generated from `ServiceStack.MessageExtensions` in `ServiceStack.Client, Version=6.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.IMessage ToMessage(this System.Byte[] bytes, System.Type ofType) => throw null; public static ServiceStack.Messaging.Message ToMessage(this System.Byte[] bytes) => throw null; public static string ToString(System.Byte[] bytes) => throw null; } // Generated from `ServiceStack.MetaAuthProvider` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class MetaAuthProvider : ServiceStack.IMeta { public System.Collections.Generic.List FormLayout { get => throw null; set => throw null; } public ServiceStack.ImageInfo Icon { get => throw null; set => throw null; } public string Label { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } public MetaAuthProvider() => throw null; public string Name { get => throw null; set => throw null; } public ServiceStack.NavItem NavItem { get => throw null; set => throw null; } public string Type { get => throw null; set => throw null; } } // Generated from `ServiceStack.MetadataApp` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class MetadataApp : ServiceStack.IReturn, ServiceStack.IReturn { public System.Collections.Generic.List IncludeTypes { get => throw null; set => throw null; } public MetadataApp() => throw null; public string View { get => throw null; set => throw null; } } // Generated from `ServiceStack.MetadataAttribute` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class MetadataAttribute { public System.Collections.Generic.List Args { get => throw null; set => throw null; } public System.Attribute Attribute { get => throw null; set => throw null; } public System.Collections.Generic.List ConstructorArgs { get => throw null; set => throw null; } public MetadataAttribute() => throw null; public string Name { get => throw null; set => throw null; } } // Generated from `ServiceStack.MetadataDataContract` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class MetadataDataContract { public MetadataDataContract() => throw null; public string Name { get => throw null; set => throw null; } public string Namespace { get => throw null; set => throw null; } } // Generated from `ServiceStack.MetadataDataMember` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class MetadataDataMember { public bool? EmitDefaultValue { get => throw null; set => throw null; } public bool? IsRequired { get => throw null; set => throw null; } public MetadataDataMember() => throw null; public string Name { get => throw null; set => throw null; } public int? Order { get => throw null; set => throw null; } } // Generated from `ServiceStack.MetadataOperationType` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class MetadataOperationType { public System.Collections.Generic.List Actions { get => throw null; set => throw null; } public ServiceStack.MetadataTypeName DataModel { get => throw null; set => throw null; } public MetadataOperationType() => throw null; public string Method { get => throw null; set => throw null; } public ServiceStack.MetadataType Request { get => throw null; set => throw null; } public System.Collections.Generic.List RequiredPermissions { get => throw null; set => throw null; } public System.Collections.Generic.List RequiredRoles { get => throw null; set => throw null; } public System.Collections.Generic.List RequiresAnyPermission { get => throw null; set => throw null; } public System.Collections.Generic.List RequiresAnyRole { get => throw null; set => throw null; } public bool? RequiresAuth { get => throw null; set => throw null; } public ServiceStack.MetadataType Response { get => throw null; set => throw null; } public ServiceStack.MetadataTypeName ReturnType { get => throw null; set => throw null; } public bool? ReturnsVoid { get => throw null; set => throw null; } public System.Collections.Generic.List Routes { get => throw null; set => throw null; } public System.Collections.Generic.List Tags { get => throw null; set => throw null; } public ServiceStack.ApiUiInfo Ui { get => throw null; set => throw null; } public ServiceStack.MetadataTypeName ViewModel { get => throw null; set => throw null; } } // Generated from `ServiceStack.MetadataPropertyType` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class MetadataPropertyType { public int? AllowableMax { get => throw null; set => throw null; } public int? AllowableMin { get => throw null; set => throw null; } public string[] AllowableValues { get => throw null; set => throw null; } public System.Collections.Generic.List Attributes { get => throw null; set => throw null; } public ServiceStack.MetadataDataMember DataMember { get => throw null; set => throw null; } public string Description { get => throw null; set => throw null; } public string DisplayType { get => throw null; set => throw null; } public ServiceStack.FormatInfo Format { get => throw null; set => throw null; } public string[] GenericArgs { get => throw null; set => throw null; } public ServiceStack.InputInfo Input { get => throw null; set => throw null; } public bool? IsEnum { get => throw null; set => throw null; } public bool? IsPrimaryKey { get => throw null; set => throw null; } public bool? IsRequired { get => throw null; set => throw null; } public bool? IsValueType { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Items { get => throw null; set => throw null; } public MetadataPropertyType() => throw null; public string Name { get => throw null; set => throw null; } public string Namespace { get => throw null; set => throw null; } public string ParamType { get => throw null; set => throw null; } public System.Reflection.PropertyInfo PropertyInfo { get => throw null; set => throw null; } public System.Type PropertyType { get => throw null; set => throw null; } public bool? ReadOnly { get => throw null; set => throw null; } public ServiceStack.RefInfo Ref { get => throw null; set => throw null; } public string Type { get => throw null; set => throw null; } public string Value { get => throw null; set => throw null; } } // Generated from `ServiceStack.MetadataRoute` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class MetadataRoute { public MetadataRoute() => throw null; public string Notes { get => throw null; set => throw null; } public string Path { get => throw null; set => throw null; } public ServiceStack.RouteAttribute RouteAttribute { get => throw null; set => throw null; } public string Summary { get => throw null; set => throw null; } public string Verbs { get => throw null; set => throw null; } } // Generated from `ServiceStack.MetadataType` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class MetadataType : ServiceStack.IMeta { public System.Collections.Generic.List Attributes { get => throw null; set => throw null; } public ServiceStack.MetadataDataContract DataContract { get => throw null; set => throw null; } public string Description { get => throw null; set => throw null; } public string DisplayType { get => throw null; set => throw null; } public System.Collections.Generic.List EnumDescriptions { get => throw null; set => throw null; } public System.Collections.Generic.List EnumMemberValues { get => throw null; set => throw null; } public System.Collections.Generic.List EnumNames { get => throw null; set => throw null; } public System.Collections.Generic.List EnumValues { get => throw null; set => throw null; } protected bool Equals(ServiceStack.MetadataType other) => throw null; public override bool Equals(object obj) => throw null; public string[] GenericArgs { get => throw null; set => throw null; } public string GetFullName() => throw null; public override int GetHashCode() => throw null; public ServiceStack.ImageInfo Icon { get => throw null; set => throw null; } public ServiceStack.MetadataTypeName[] Implements { get => throw null; set => throw null; } public ServiceStack.MetadataTypeName Inherits { get => throw null; set => throw null; } public System.Collections.Generic.List InnerTypes { get => throw null; set => throw null; } public bool? IsAbstract { get => throw null; set => throw null; } public bool IsClass { get => throw null; } public bool? IsEnum { get => throw null; set => throw null; } public bool? IsEnumInt { get => throw null; set => throw null; } public bool? IsInterface { get => throw null; set => throw null; } public bool? IsNested { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Items { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } public MetadataType() => throw null; public string Name { get => throw null; set => throw null; } public string Namespace { get => throw null; set => throw null; } public string Notes { get => throw null; set => throw null; } public System.Collections.Generic.List Properties { get => throw null; set => throw null; } public ServiceStack.MetadataOperationType RequestType { get => throw null; set => throw null; } public System.Type Type { get => throw null; set => throw null; } } // Generated from `ServiceStack.MetadataTypeExtensions` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class MetadataTypeExtensions { public static System.Collections.Generic.List GetOperationsByTags(this ServiceStack.MetadataTypes types, string[] tags) => throw null; public static System.Collections.Generic.List GetRoutes(this System.Collections.Generic.List operations, ServiceStack.MetadataType type) => throw null; public static System.Collections.Generic.List GetRoutes(this System.Collections.Generic.List operations, string typeName) => throw null; public static bool ImplementsAny(this ServiceStack.MetadataType type, System.Collections.Generic.HashSet typeNames) => throw null; public static bool ImplementsAny(this ServiceStack.MetadataType type, params string[] typeNames) => throw null; public static bool InheritsAny(this ServiceStack.MetadataType type, System.Collections.Generic.HashSet typeNames) => throw null; public static bool InheritsAny(this ServiceStack.MetadataType type, params string[] typeNames) => throw null; public static bool IsSystemOrServiceStackType(this ServiceStack.MetadataTypeName metaRef) => throw null; public static bool ReferencesAny(this ServiceStack.MetadataOperationType op, params string[] typeNames) => throw null; public static string ToScriptSignature(this ServiceStack.ScriptMethodType method) => throw null; } // Generated from `ServiceStack.MetadataTypeName` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class MetadataTypeName { public string[] GenericArgs { get => throw null; set => throw null; } public MetadataTypeName() => throw null; public string Name { get => throw null; set => throw null; } public string Namespace { get => throw null; set => throw null; } public System.Type Type { get => throw null; set => throw null; } } // Generated from `ServiceStack.MetadataTypes` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class MetadataTypes { public ServiceStack.MetadataTypesConfig Config { get => throw null; set => throw null; } public MetadataTypes() => throw null; public System.Collections.Generic.List Namespaces { get => throw null; set => throw null; } public System.Collections.Generic.List Operations { get => throw null; set => throw null; } public System.Collections.Generic.List Types { get => throw null; set => throw null; } } // Generated from `ServiceStack.MetadataTypesConfig` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class MetadataTypesConfig { public bool AddDataContractAttributes { get => throw null; set => throw null; } public string AddDefaultXmlNamespace { get => throw null; set => throw null; } public bool AddDescriptionAsComments { get => throw null; set => throw null; } public bool AddGeneratedCodeAttributes { get => throw null; set => throw null; } public int? AddImplicitVersion { get => throw null; set => throw null; } public bool AddIndexesToDataMembers { get => throw null; set => throw null; } public bool AddModelExtensions { get => throw null; set => throw null; } public System.Collections.Generic.List AddNamespaces { get => throw null; set => throw null; } public bool AddPropertyAccessors { get => throw null; set => throw null; } public bool AddResponseStatus { get => throw null; set => throw null; } public bool AddReturnMarker { get => throw null; set => throw null; } public bool AddServiceStackTypes { get => throw null; set => throw null; } public string BaseClass { get => throw null; set => throw null; } public string BaseUrl { get => throw null; set => throw null; } public string DataClass { get => throw null; set => throw null; } public string DataClassJson { get => throw null; set => throw null; } public System.Collections.Generic.List DefaultImports { get => throw null; set => throw null; } public System.Collections.Generic.List DefaultNamespaces { get => throw null; set => throw null; } public bool ExcludeGenericBaseTypes { get => throw null; set => throw null; } public bool ExcludeImplementedInterfaces { get => throw null; set => throw null; } public bool ExcludeNamespace { get => throw null; set => throw null; } public System.Collections.Generic.List ExcludeTypes { get => throw null; set => throw null; } public bool ExportAsTypes { get => throw null; set => throw null; } public System.Collections.Generic.HashSet ExportAttributes { get => throw null; set => throw null; } public System.Collections.Generic.HashSet ExportTypes { get => throw null; set => throw null; } public bool ExportValueTypes { get => throw null; set => throw null; } public string GlobalNamespace { get => throw null; set => throw null; } public System.Collections.Generic.HashSet IgnoreTypes { get => throw null; set => throw null; } public System.Collections.Generic.List IgnoreTypesInNamespaces { get => throw null; set => throw null; } public System.Collections.Generic.List IncludeTypes { get => throw null; set => throw null; } public bool InitializeCollections { get => throw null; set => throw null; } public bool MakeDataContractsExtensible { get => throw null; set => throw null; } public bool MakeInternal { get => throw null; set => throw null; } public bool MakePartial { get => throw null; set => throw null; } public bool MakePropertiesOptional { get => throw null; set => throw null; } public bool MakeVirtual { get => throw null; set => throw null; } public MetadataTypesConfig(string baseUrl = default(string), bool makePartial = default(bool), bool makeVirtual = default(bool), bool addReturnMarker = default(bool), bool convertDescriptionToComments = default(bool), bool addDataContractAttributes = default(bool), bool addIndexesToDataMembers = default(bool), bool addGeneratedCodeAttributes = default(bool), string addDefaultXmlNamespace = default(string), string baseClass = default(string), string package = default(string), bool addResponseStatus = default(bool), bool addServiceStackTypes = default(bool), bool addModelExtensions = default(bool), bool addPropertyAccessors = default(bool), bool excludeGenericBaseTypes = default(bool), bool settersReturnThis = default(bool), bool makePropertiesOptional = default(bool), bool makeDataContractsExtensible = default(bool), bool initializeCollections = default(bool), int? addImplicitVersion = default(int?)) => throw null; public string Package { get => throw null; set => throw null; } public bool SettersReturnThis { get => throw null; set => throw null; } public System.Collections.Generic.List TreatTypesAsStrings { get => throw null; set => throw null; } public string UsePath { get => throw null; set => throw null; } } // Generated from `ServiceStack.ModifyValidationRules` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ModifyValidationRules : ServiceStack.IReturn, ServiceStack.IReturnVoid { 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=6.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=6.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=6.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=6.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.AsyncServiceClient client) => throw null; public virtual void SetCookieContainer(System.Net.HttpWebRequest webRequest, ServiceStack.ServiceClientBase 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=6.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.PluginInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class PluginInfo : ServiceStack.IMeta { public ServiceStack.AdminUsersInfo AdminUsers { get => throw null; set => throw null; } public ServiceStack.AuthInfo Auth { get => throw null; set => throw null; } public ServiceStack.AutoQueryInfo AutoQuery { get => throw null; set => throw null; } public ServiceStack.FilesUploadInfo FilesUpload { get => throw null; set => throw null; } public System.Collections.Generic.List Loaded { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } public PluginInfo() => throw null; public ServiceStack.ProfilingInfo Profiling { get => throw null; set => throw null; } public ServiceStack.RequestLogsInfo RequestLogs { get => throw null; set => throw null; } public ServiceStack.SharpPagesInfo SharpPages { get => throw null; set => throw null; } public ServiceStack.ValidationInfo Validation { get => throw null; set => throw null; } } // Generated from `ServiceStack.ProfilingInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ProfilingInfo : ServiceStack.IMeta { public string AccessRole { get => throw null; set => throw null; } public int DefaultLimit { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } public ProfilingInfo() => throw null; public System.Collections.Generic.List SummaryFields { get => throw null; set => throw null; } public string TagLabel { get => throw null; set => throw null; } } // Generated from `ServiceStack.ProgressDelegate` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public delegate void ProgressDelegate(System.Int64 done, System.Int64 total); // Generated from `ServiceStack.RefInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class RefInfo { public string Model { get => throw null; set => throw null; } public string RefId { get => throw null; set => throw null; } public RefInfo() => throw null; public string RefLabel { get => throw null; set => throw null; } public string SelfId { get => throw null; set => throw null; } } // Generated from `ServiceStack.RefreshTokenException` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class RefreshTokenException : ServiceStack.WebServiceException { public RefreshTokenException(ServiceStack.WebServiceException webEx) => throw null; public RefreshTokenException(string message) => throw null; public RefreshTokenException(string message, System.Exception innerException) => throw null; } // Generated from `ServiceStack.RegenerateApiKeys` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class RegenerateApiKeys : ServiceStack.IMeta, ServiceStack.IPost, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class RegenerateApiKeysResponse : ServiceStack.IHasResponseStatus, ServiceStack.IMeta { 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class Register : ServiceStack.IMeta, ServiceStack.IPost, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class RegisterResponse : ServiceStack.IHasBearerToken, ServiceStack.IHasRefreshToken, ServiceStack.IHasResponseStatus, ServiceStack.IHasSessionId, ServiceStack.IMeta { public string BearerToken { 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 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 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.ReplaceFileUpload` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ReplaceFileUpload : ServiceStack.IHasBearerToken, ServiceStack.IPut, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { public string BearerToken { get => throw null; set => throw null; } public string Name { get => throw null; set => throw null; } public string Path { get => throw null; set => throw null; } public ReplaceFileUpload() => throw null; } // Generated from `ServiceStack.ReplaceFileUploadResponse` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ReplaceFileUploadResponse { public ReplaceFileUploadResponse() => throw null; public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; } } // Generated from `ServiceStack.RequestLogsInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class RequestLogsInfo : ServiceStack.IMeta { public string AccessRole { get => throw null; set => throw null; } public int DefaultLimit { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } public string RequestLogger { get => throw null; set => throw null; } public RequestLogsInfo() => throw null; public string[] RequiredRoles { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary ServiceRoutes { get => throw null; set => throw null; } } // Generated from `ServiceStack.ResponseStatusUtils` in `ServiceStack.Client, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public delegate object ResultsFilterDelegate(System.Type responseType, string httpMethod, string requestUri, object request); // Generated from `ServiceStack.ResultsFilterHttpDelegate` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public delegate object ResultsFilterHttpDelegate(System.Type responseType, string httpMethod, string requestUri, object request); // Generated from `ServiceStack.ResultsFilterHttpResponseDelegate` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public delegate void ResultsFilterHttpResponseDelegate(System.Net.Http.HttpResponseMessage webResponse, object response, string httpMethod, string requestUri, object request); // Generated from `ServiceStack.ResultsFilterResponseDelegate` in `ServiceStack.Client, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public enum RsaKeyLengths { Bit1024, Bit2048, Bit4096, } // Generated from `ServiceStack.RsaKeyPair` in `ServiceStack.Client, Version=6.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=6.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 System.Byte[] Decrypt(System.Byte[] encryptedBytes, 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 string Decrypt(this string text) => throw null; public static string Decrypt(string encryptedText, System.Security.Cryptography.RSAParameters privateKey, ServiceStack.RsaKeyLengths rsaKeyLength = default(ServiceStack.RsaKeyLengths)) => throw null; public static string Decrypt(string encryptedText, string privateKeyXml, ServiceStack.RsaKeyLengths rsaKeyLength = default(ServiceStack.RsaKeyLengths)) => throw null; public static ServiceStack.RsaKeyPair DefaultKeyPair; public static bool DoOAEPPadding; public static System.Byte[] Encrypt(System.Byte[] bytes, 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 string Encrypt(this string text) => throw null; public static string Encrypt(string text, System.Security.Cryptography.RSAParameters publicKey, ServiceStack.RsaKeyLengths rsaKeyLength = default(ServiceStack.RsaKeyLengths)) => throw null; public static string Encrypt(string text, string publicKeyXml, 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.ScriptMethodType` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ScriptMethodType { public string Name { get => throw null; set => throw null; } public string[] ParamNames { get => throw null; set => throw null; } public string[] ParamTypes { get => throw null; set => throw null; } public string ReturnType { get => throw null; set => throw null; } public ScriptMethodType() => throw null; } // Generated from `ServiceStack.ServerEventCallback` in `ServiceStack.Client, Version=6.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=6.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=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ServerEventHeartbeat : ServiceStack.ServerEventCommand { public ServerEventHeartbeat() => throw null; } // Generated from `ServiceStack.ServerEventJoin` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ServerEventJoin : ServiceStack.ServerEventCommand { public ServerEventJoin() => throw null; } // Generated from `ServiceStack.ServerEventLeave` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ServerEventLeave : ServiceStack.ServerEventCommand { public ServerEventLeave() => throw null; } // Generated from `ServiceStack.ServerEventMessage` in `ServiceStack.Client, Version=6.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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ServerEventUpdate : ServiceStack.ServerEventCommand { public ServerEventUpdate() => throw null; } // Generated from `ServiceStack.ServerEventUser` in `ServiceStack.Client, Version=6.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=6.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 System.Func HttpClientHandlerFactory { 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public abstract class ServiceClientBase : ServiceStack.IHasBearerToken, ServiceStack.IHasCookieContainer, ServiceStack.IHasSessionId, ServiceStack.IHasVersion, ServiceStack.IHttpRestClientAsync, ServiceStack.IOneWayClient, ServiceStack.IReplyClient, ServiceStack.IRestClient, ServiceStack.IRestClientAsync, ServiceStack.IRestClientSync, ServiceStack.IRestServiceClient, ServiceStack.IServiceClient, ServiceStack.IServiceClientAsync, ServiceStack.IServiceClientCommon, ServiceStack.IServiceClientMeta, ServiceStack.IServiceClientSync, ServiceStack.IServiceGateway, ServiceStack.IServiceGatewayAsync, ServiceStack.Messaging.IMessageProducer, System.IDisposable { 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 BasePath { 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 CaptureHttp(System.Action httpFilter) => throw null; public void CaptureHttp(bool print = default(bool), bool log = default(bool), bool clear = default(bool)) => 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 System.Net.HttpWebResponse CustomMethod(string httpVerb, object requestDto) => throw null; public virtual System.Net.HttpWebResponse CustomMethod(string httpVerb, string relativeOrAbsoluteUrl, object requestDto) => throw null; public virtual TResponse CustomMethod(string httpVerb, ServiceStack.IReturn requestDto) => throw null; public virtual TResponse CustomMethod(string httpVerb, object requestDto) => throw null; public virtual TResponse CustomMethod(string httpVerb, string relativeOrAbsoluteUrl, object requestDto = default(object)) => 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 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, object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => 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 const string DefaultHttpMethod = default; public static string DefaultUserAgent; public virtual void Delete(ServiceStack.IReturnVoid requestDto) => throw null; public virtual System.Net.HttpWebResponse Delete(object requestDto) => throw null; public virtual System.Net.HttpWebResponse Delete(string relativeOrAbsoluteUrl) => throw null; public virtual TResponse Delete(ServiceStack.IReturn requestDto) => throw null; public virtual TResponse Delete(object requestDto) => throw null; public virtual TResponse Delete(string relativeOrAbsoluteUrl) => throw null; public virtual System.Threading.Tasks.Task DeleteAsync(ServiceStack.IReturnVoid 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(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public virtual System.Threading.Tasks.Task DeleteAsync(string relativeOrAbsoluteUrl, 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 bool EnableAutoRefreshToken { 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 System.Net.HttpWebResponse Get(object requestDto) => throw null; public virtual System.Net.HttpWebResponse Get(string relativeOrAbsoluteUrl) => throw null; public virtual TResponse Get(ServiceStack.IReturn requestDto) => throw null; public virtual TResponse Get(object requestDto) => throw null; public virtual TResponse Get(string relativeOrAbsoluteUrl) => throw null; public virtual System.Threading.Tasks.Task GetAsync(ServiceStack.IReturnVoid 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(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public virtual System.Threading.Tasks.Task GetAsync(string relativeOrAbsoluteUrl, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public System.Collections.Generic.Dictionary GetCookieValues() => throw null; public string GetHttpMethod(object request) => throw null; public virtual System.Collections.Generic.IEnumerable GetLazy(ServiceStack.IReturn> queryDto) => throw null; protected TResponse GetResponse(System.Net.WebResponse webRes) => 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(ServiceStack.IReturn requestDto) => throw null; public virtual System.Net.HttpWebResponse Head(object requestDto) => throw null; public virtual System.Net.HttpWebResponse Head(string relativeOrAbsoluteUrl) => throw null; public System.Collections.Specialized.NameValueCollection Headers { get => throw null; set => throw null; } public System.Net.Http.HttpClient HttpClient { get => throw null; set => throw null; } public System.Text.StringBuilder HttpLog { get => throw null; set => throw null; } public System.Action HttpLogFilter { 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 System.Net.HttpWebResponse Patch(object requestDto) => throw null; public virtual TResponse Patch(ServiceStack.IReturn requestDto) => throw null; public virtual TResponse Patch(object requestDto) => throw null; public virtual TResponse Patch(string relativeOrAbsoluteUrl, object requestDto) => throw null; public virtual System.Threading.Tasks.Task PatchAsync(ServiceStack.IReturnVoid 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(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => 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 void Post(ServiceStack.IReturnVoid requestDto) => throw null; public virtual System.Net.HttpWebResponse Post(object requestDto) => throw null; public virtual TResponse Post(ServiceStack.IReturn requestDto) => throw null; public virtual TResponse Post(object requestDto) => throw null; public virtual TResponse Post(string relativeOrAbsoluteUrl, object requestDto) => throw null; public virtual System.Threading.Tasks.Task PostAsync(ServiceStack.IReturnVoid 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(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => 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 TResponse PostFile(string relativeOrAbsoluteUrl, System.IO.Stream fileToUpload, string fileName, string mimeType, 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 PostFileWithRequest(string relativeOrAbsoluteUrl, System.IO.Stream fileToUpload, string fileName, object request, string fieldName = default(string)) => throw null; public virtual TResponse PostFilesWithRequest(object request, System.Collections.Generic.IEnumerable files) => throw null; public virtual TResponse PostFilesWithRequest(string relativeOrAbsoluteUrl, 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 virtual void Publish(object requestDto) => throw null; public void Publish(ServiceStack.Messaging.IMessage message) => throw null; public void Publish(T 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 System.Net.HttpWebResponse Put(object requestDto) => throw null; public virtual TResponse Put(ServiceStack.IReturn requestDto) => throw null; public virtual TResponse Put(object requestDto) => throw null; public virtual TResponse Put(string relativeOrAbsoluteUrl, object requestDto) => throw null; public virtual System.Threading.Tasks.Task PutAsync(ServiceStack.IReturnVoid 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(object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public virtual System.Threading.Tasks.Task PutAsync(string relativeOrAbsoluteUrl, object request, 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(object request) => throw null; public virtual TResponse Send(string httpMethod, string relativeOrAbsoluteUrl, 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(object request) => throw null; public virtual void SendOneWay(string relativeOrAbsoluteUrl, object request) => throw null; public virtual void SendOneWay(string httpMethod, string relativeOrAbsoluteUrl, object requestDto) => throw null; protected virtual System.Net.WebRequest SendRequest(string httpMethod, string requestUri, object request) => throw null; public static string SendStringToUrl(System.Net.HttpWebRequest webReq, string method, string requestBody, string contentType, string accept = default(string), System.Action requestFilter = default(System.Action), System.Action responseFilter = default(System.Action)) => throw null; public static System.Threading.Tasks.Task SendStringToUrlAsync(System.Net.HttpWebRequest webReq, string method, string requestBody, string contentType, string accept = default(string), System.Action requestFilter = default(System.Action), System.Action responseFilter = default(System.Action), System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => 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() => throw null; protected ServiceClientBase(string syncReplyBaseUri, string asyncOneWayBaseUri) => 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 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 static void UploadFile(System.Net.WebRequest webRequest, System.IO.Stream fileStream, string fileName, string mimeType, string accept = default(string), System.Action requestFilter = default(System.Action), string method = default(string), string fieldName = default(string)) => throw null; public ServiceStack.UrlResolverDelegate UrlResolver { get => throw null; set => throw null; } public string UseBasePath { 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class ServiceClientExtensions { public static void AddAuthSecret(this ServiceStack.IRestClient client, string authsecret) => throw null; public static T Apply(this T client, System.Action fn) where T : ServiceStack.IServiceGateway => throw null; public static System.Net.CookieContainer AssertCookieContainer(this ServiceStack.IServiceClient client) => throw null; public static TResponse Delete(this ServiceStack.IEncryptedClient client, ServiceStack.IReturn request) => throw null; public static void DeleteCookie(this System.Net.CookieContainer cookieContainer, System.Uri uri, string name) => throw null; public static void DeleteCookie(this ServiceStack.IHasCookieContainer hasCookieContainer, System.Uri uri, string name) => throw null; public static void DeleteCookie(this ServiceStack.IJsonServiceClient client, string name) => throw null; public static void DeleteRefreshTokenCookie(this ServiceStack.IJsonServiceClient client) => throw null; public static void DeleteTokenCookie(this ServiceStack.IJsonServiceClient client) => throw null; public static void DeleteTokenCookies(this ServiceStack.IJsonServiceClient client) => 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, System.Security.Cryptography.RSAParameters publicKey) => throw null; public static ServiceStack.IEncryptedClient GetEncryptedClient(this ServiceStack.IJsonServiceClient client, string serverPublicKeyXml) => 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 ServiceStack.AsyncServiceClient 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 GetSessionId(this ServiceStack.IServiceClient client) => throw null; public static string GetTokenCookie(this ServiceStack.AsyncServiceClient 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 TResponse PatchBody(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, System.Byte[] 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, object requestBody) => throw null; public static TResponse PatchBody(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, string requestBody) => 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 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, 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, string 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, System.Byte[] 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, object requestBody) => throw null; public static TResponse PostBody(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, string requestBody) => 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 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, 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, string 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, 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 PostFileWithRequest(this ServiceStack.IRestClient client, string relativeOrAbsoluteUrl, 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, System.Byte[] 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, object requestBody) => throw null; public static TResponse PutBody(this ServiceStack.IServiceClient client, ServiceStack.IReturn toRequest, string requestBody) => 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.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, 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, string 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; public static T WithBasePath(this T client, string basePath) where T : ServiceStack.ServiceClientBase => throw null; } // Generated from `ServiceStack.ServiceClientUtils` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class ServiceClientUtils { public static string GetAutoQueryMethod(System.Type requestType) => throw null; public static string GetHttpMethod(System.Type requestType) => throw null; public static string GetIVerbMethod(System.Type requestType) => throw null; public static string GetIVerbMethod(System.Type[] interfaceTypes) => throw null; public static string[] GetRouteMethods(System.Type requestType) => throw null; public static string GetSingleRouteMethod(System.Type requestType) => throw null; public static System.Collections.Generic.HashSet SupportedMethods { get => throw null; } } // Generated from `ServiceStack.ServiceGatewayAsyncWrappers` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class ServiceGatewayAsyncWrappers { public static System.Threading.Tasks.Task> Api(this ServiceStack.IServiceClientAsync client, ServiceStack.IReturn requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static System.Threading.Tasks.Task>> ApiAllAsync(this ServiceStack.IServiceClientAsync client, ServiceStack.IReturn[] requestDtos, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static System.Threading.Tasks.Task>> ApiAllAsync(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>> ApiAllAsync(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> ApiAsync(this ServiceStack.IServiceGateway client, ServiceStack.IReturnVoid requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static System.Threading.Tasks.Task> ApiAsync(this ServiceStack.IServiceGateway client, ServiceStack.IReturn requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; public static System.Threading.Tasks.Task> ApiAsync(this ServiceStack.IServiceGateway client, object requestDto, 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 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 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.IServiceClientAsync client, ServiceStack.IReturn[] 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.IServiceGateway client, System.Collections.Generic.IEnumerable> requestDtos, 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; 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, object requestDto, System.Threading.CancellationToken token = default(System.Threading.CancellationToken)) => throw null; } // Generated from `ServiceStack.ServiceGatewayExtensions` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class ServiceGatewayExtensions { public static ServiceStack.ApiResult Api(this ServiceStack.IServiceGateway client, ServiceStack.IReturnVoid request) => throw null; public static ServiceStack.ApiResult Api(this ServiceStack.IServiceGateway client, ServiceStack.IReturn request) => throw null; public static ServiceStack.ApiResult> ApiAll(this ServiceStack.IServiceGateway client, System.Collections.Generic.IEnumerable> request) => throw null; 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.SharpPagesInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class SharpPagesInfo : ServiceStack.IMeta { public string ApiPath { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } public bool? MetadataDebug { get => throw null; set => throw null; } public string MetadataDebugAdminRole { get => throw null; set => throw null; } public string ScriptAdminRole { get => throw null; set => throw null; } public SharpPagesInfo() => throw null; public bool? SpaFallback { get => throw null; set => throw null; } } // Generated from `ServiceStack.SingletonInstanceResolver` in `ServiceStack.Client, Version=6.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.StoreFileUpload` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class StoreFileUpload : ServiceStack.IHasBearerToken, ServiceStack.IPost, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { public string BearerToken { get => throw null; set => throw null; } public string Name { get => throw null; set => throw null; } public string Path { get => throw null; set => throw null; } public StoreFileUpload() => throw null; } // Generated from `ServiceStack.StoreFileUploadResponse` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class StoreFileUploadResponse { public ServiceStack.ResponseStatus ResponseStatus { get => throw null; set => throw null; } public System.Collections.Generic.List Results { get => throw null; set => throw null; } public StoreFileUploadResponse() => throw null; } // Generated from `ServiceStack.StreamCompressors` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class StreamCompressors { public static ServiceStack.Caching.IStreamCompressor Get(string encoding) => throw null; public static ServiceStack.Caching.IStreamCompressor GetRequired(string encoding) => throw null; public static bool Remove(string encoding) => throw null; public static void Set(string encoding, ServiceStack.Caching.IStreamCompressor compressor) => throw null; public static bool SupportsEncoding(string encoding) => throw null; } // Generated from `ServiceStack.StreamExt` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class StreamExt { public static System.Byte[] Compress(this string text, string compressionType, System.Text.Encoding encoding = default(System.Text.Encoding)) => 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 string GUnzip(this System.Byte[] gzBuffer) => throw null; public static System.Byte[] GZip(this string text) => throw null; 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=6.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=6.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=6.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.ThemeInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ThemeInfo { public string Form { get => throw null; set => throw null; } public ServiceStack.ImageInfo ModelIcon { get => throw null; set => throw null; } public ThemeInfo() => throw null; } // Generated from `ServiceStack.TokenException` in `ServiceStack.Client, Version=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public delegate string TypedUrlResolverDelegate(ServiceStack.IServiceClientMeta client, string httpMethod, object requestDto); // Generated from `ServiceStack.UiInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class UiInfo : ServiceStack.IMeta { public System.Collections.Generic.List AdminLinks { get => throw null; set => throw null; } public System.Collections.Generic.List AlwaysHideTags { get => throw null; set => throw null; } public ServiceStack.ImageInfo BrandIcon { get => throw null; set => throw null; } public ServiceStack.ApiFormat DefaultFormats { get => throw null; set => throw null; } public ServiceStack.ExplorerUi Explorer { get => throw null; set => throw null; } public System.Collections.Generic.List HideTags { get => throw null; set => throw null; } public ServiceStack.LocodeUi Locode { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } public System.Collections.Generic.List Modules { get => throw null; set => throw null; } public ServiceStack.ThemeInfo Theme { get => throw null; set => throw null; } public UiInfo() => throw null; } // Generated from `ServiceStack.UnAssignRoles` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class UnAssignRoles : ServiceStack.IMeta, ServiceStack.IPost, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class UnAssignRolesResponse : ServiceStack.IHasResponseStatus, ServiceStack.IMeta { 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class UpdateEventSubscriber : ServiceStack.IPost, ServiceStack.IReturn, ServiceStack.IReturn, ServiceStack.IVerb { 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=6.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.UploadedFile` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class UploadedFile { public System.Int64 ContentLength { get => throw null; set => throw null; } public string ContentType { get => throw null; set => throw null; } public string FileName { get => throw null; set => throw null; } public string FilePath { get => throw null; set => throw null; } public UploadedFile() => throw null; } // Generated from `ServiceStack.UrlExtensions` in `ServiceStack.Client, Version=6.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 ToApiUrl(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 ServiceStack.IReturn requestDto, string httpMethod, string formatFallbackToPredefinedRoute = default(string)) => throw null; public static string ToRelativeUri(this object 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 ServiceStack.IReturn requestDto, string httpMethod, string formatFallbackToPredefinedRoute = default(string)) => throw null; public static string ToUrl(this object requestDto, string httpMethod, System.Func fallback) => throw null; public static string ToUrl(this object requestDto, string httpMethod = default(string), string formatFallbackToPredefinedRoute = default(string)) => throw null; } // Generated from `ServiceStack.UrlResolverDelegate` in `ServiceStack.Client, Version=6.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=6.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.ValidationInfo` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ValidationInfo : ServiceStack.IMeta { public string AccessRole { get => throw null; set => throw null; } public bool? HasValidationSource { get => throw null; set => throw null; } public bool? HasValidationSourceAdmin { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary Meta { get => throw null; set => throw null; } public System.Collections.Generic.List PropertyValidators { get => throw null; set => throw null; } public System.Collections.Generic.Dictionary ServiceRoutes { get => throw null; set => throw null; } public System.Collections.Generic.List TypeValidators { get => throw null; set => throw null; } public ValidationInfo() => throw null; } // Generated from `ServiceStack.WebRequestUtils` in `ServiceStack.Client, Version=6.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 void AppendHttpRequestHeaders(this System.Net.HttpWebRequest webReq, System.Text.StringBuilder sb, System.Uri baseUri = default(System.Uri)) => throw null; public static void AppendHttpResponseHeaders(this System.Net.HttpWebResponse webRes, System.Text.StringBuilder sb) => throw null; public static string CalculateMD5Hash(string input) => throw null; public static System.Type GetErrorResponseDtoType(System.Type requestType) => throw null; public static System.Type GetErrorResponseDtoType(object request) => throw null; public static System.Type GetErrorResponseDtoType(object request) => 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class WebServiceException : System.Exception, ServiceStack.IHasStatusCode, ServiceStack.IHasStatusDescription, ServiceStack.Model.IResponseStatusConvertible { 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() => throw null; public WebServiceException(string message) => throw null; public WebServiceException(string message, System.Exception innerException) => throw null; public static ServiceStack.Logging.ILog log; } // Generated from `ServiceStack.XmlServiceClient` in `ServiceStack.Client, Version=6.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() => throw null; public XmlServiceClient(string baseUri) => throw null; public XmlServiceClient(string syncReplyBaseUri, string asyncOneWayBaseUri) => throw null; } // Generated from `ServiceStack.ZLibCompressor` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ZLibCompressor : ServiceStack.Caching.IStreamCompressor { public System.Byte[] Compress(System.Byte[] bytes) => throw null; public System.IO.Stream Compress(System.IO.Stream outputStream, bool leaveOpen = default(bool)) => throw null; public System.Byte[] Compress(string text, System.Text.Encoding encoding = default(System.Text.Encoding)) => throw null; public string Decompress(System.Byte[] zipBuffer, System.Text.Encoding encoding = default(System.Text.Encoding)) => throw null; public System.IO.Stream Decompress(System.IO.Stream zipBuffer, bool leaveOpen = default(bool)) => throw null; public System.Byte[] DecompressBytes(System.Byte[] zipBuffer) => throw null; public string Encoding { get => throw null; } public static ServiceStack.ZLibCompressor Instance { get => throw null; } public ZLibCompressor() => throw null; } namespace Html { // Generated from `ServiceStack.Html.Input` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class Input { // Generated from `ServiceStack.Html.Input+ConfigureCss` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ConfigureCss { public ConfigureCss(ServiceStack.InputInfo input) => throw null; public ServiceStack.Html.Input.ConfigureCss FieldsPerRow(int sm, int? md = default(int?), int? lg = default(int?), int? xl = default(int?), int? xl2 = default(int?)) => throw null; public ServiceStack.InputInfo Input { get => throw null; } } // Generated from `ServiceStack.Html.Input+Types` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class Types { public const string Checkbox = default; public const string Color = default; public const string Date = default; public const string DatetimeLocal = default; public const string Email = default; public const string File = default; public const string Hidden = default; public const string Image = default; public const string Month = default; public const string Number = default; public const string Password = default; public const string Radio = default; public const string Range = default; public const string Reset = default; public const string Search = default; public const string Select = default; public const string Submit = default; public const string Tel = default; public const string Text = default; public const string Textarea = default; public const string Time = default; public const string Url = default; public const string Week = default; } public static ServiceStack.InputInfo AddCss(this ServiceStack.InputInfo input, System.Action configure) => throw null; public static ServiceStack.InputInfo FieldsPerRow(this ServiceStack.InputInfo input, int sm, int? md = default(int?), int? lg = default(int?), int? xl = default(int?), int? xl2 = default(int?)) => throw null; public static ServiceStack.InputInfo For(System.Linq.Expressions.Expression> expr) => throw null; public static ServiceStack.InputInfo For(System.Linq.Expressions.Expression> expr, System.Action configure) => throw null; public static System.Collections.Generic.List FromGridLayout(System.Collections.Generic.IEnumerable> gridLayout) => throw null; public static string GetDescription(System.Reflection.MemberInfo mi) => throw null; public static bool GetEnumEntries(System.Type enumType, out System.Collections.Generic.KeyValuePair[] entries) => throw null; public static string[] GetEnumValues(System.Type enumType) => throw null; } // Generated from `ServiceStack.Html.InspectUtils` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class InspectUtils { public static object Evaluate(System.Linq.Expressions.Expression arg) => throw null; public static System.Linq.Expressions.Expression FindMember(System.Linq.Expressions.Expression e) => throw null; public static string[] GetFieldNames(this System.Linq.Expressions.Expression> expr) => throw null; public static System.Reflection.PropertyInfo PropertyFromExpression(System.Linq.Expressions.Expression> expr) => throw null; } // Generated from `ServiceStack.Html.Media` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class Media { } // Generated from `ServiceStack.Html.MediaRuleCreator` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class MediaRuleCreator { public MediaRuleCreator(string size) => throw null; public ServiceStack.MediaRule Show(System.Linq.Expressions.Expression> expr) => throw null; public string Size { get => throw null; } } // Generated from `ServiceStack.Html.MediaRules` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class MediaRules { public static ServiceStack.Html.MediaRuleCreator ExtraLarge; public static ServiceStack.Html.MediaRuleCreator ExtraLarge2x; public static ServiceStack.Html.MediaRuleCreator ExtraSmall; public static ServiceStack.Html.MediaRuleCreator Large; public static ServiceStack.Html.MediaRuleCreator Medium; public static string MinVisibleSize(this System.Collections.Generic.IEnumerable mediaRules, string target) => throw null; public static ServiceStack.Html.MediaRuleCreator Small; } // Generated from `ServiceStack.Html.MediaSizes` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public static class MediaSizes { public static string[] All; public const string ExtraLarge = default; public const string ExtraLarge2x = default; public const string ExtraSmall = default; public static string ForBootstrap(string size) => throw null; public static string ForTailwind(string size) => throw null; public const string Large = default; public const string Medium = default; public const string Small = default; } } namespace Messaging { // Generated from `ServiceStack.Messaging.InMemoryMessageQueueClient` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class InMemoryMessageQueueClient : ServiceStack.IOneWayClient, ServiceStack.Messaging.IMessageProducer, ServiceStack.Messaging.IMessageQueueClient, System.IDisposable { 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(string queueName, ServiceStack.Messaging.IMessage message) => throw null; public void Publish(ServiceStack.Messaging.IMessage message) => throw null; public void Publish(T messageBody) => throw null; public void SendAllOneWay(System.Collections.Generic.IEnumerable requests) => throw null; public void SendOneWay(object requestDto) => throw null; public void SendOneWay(string queueName, object requestDto) => throw null; } // Generated from `ServiceStack.Messaging.MessageQueueClientFactory` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class MessageQueueClientFactory : ServiceStack.Messaging.IMessageQueueClientFactory, System.IDisposable { 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, System.Byte[] messageBytes) => throw null; public void PublishMessage(string queueName, ServiceStack.Messaging.IMessage message) => throw null; } // Generated from `ServiceStack.Messaging.RedisMessageFactory` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class RedisMessageFactory : ServiceStack.Messaging.IMessageFactory, ServiceStack.Messaging.IMessageQueueClientFactory, System.IDisposable { 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class RedisMessageProducer : ServiceStack.IOneWayClient, ServiceStack.Messaging.IMessageProducer, System.IDisposable { public void Dispose() => throw null; public void Publish(string queueName, ServiceStack.Messaging.IMessage message) => throw null; public void Publish(ServiceStack.Messaging.IMessage message) => throw null; public void Publish(T messageBody) => throw null; public ServiceStack.Redis.IRedisNativeClient ReadWriteClient { get => throw null; } public RedisMessageProducer(ServiceStack.Redis.IRedisClientsManager clientsManager) => throw null; public RedisMessageProducer(ServiceStack.Redis.IRedisClientsManager clientsManager, System.Action onPublishedCallback) => throw null; public void SendAllOneWay(System.Collections.Generic.IEnumerable requests) => throw null; public void SendOneWay(object requestDto) => throw null; public void SendOneWay(string queueName, object requestDto) => throw null; } // Generated from `ServiceStack.Messaging.RedisMessageQueueClient` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class RedisMessageQueueClient : ServiceStack.IOneWayClient, ServiceStack.Messaging.IMessageProducer, ServiceStack.Messaging.IMessageQueueClient, System.IDisposable { 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(string queueName, ServiceStack.Messaging.IMessage message) => throw null; public void Publish(ServiceStack.Messaging.IMessage message) => throw null; public void Publish(T messageBody) => throw null; public ServiceStack.Redis.IRedisNativeClient ReadOnlyClient { get => throw null; } public ServiceStack.Redis.IRedisNativeClient ReadWriteClient { get => throw null; } public RedisMessageQueueClient(ServiceStack.Redis.IRedisClientsManager clientsManager) => throw null; public RedisMessageQueueClient(ServiceStack.Redis.IRedisClientsManager clientsManager, System.Action onPublishedCallback) => throw null; public void SendAllOneWay(System.Collections.Generic.IEnumerable requests) => throw null; public void SendOneWay(object requestDto) => throw null; public void SendOneWay(string queueName, object requestDto) => throw null; } // Generated from `ServiceStack.Messaging.RedisMessageQueueClientFactory` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class RedisMessageQueueClientFactory : ServiceStack.Messaging.IMessageQueueClientFactory, System.IDisposable { 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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class HttpUtility { public HttpUtility() => throw null; public static System.Collections.Specialized.NameValueCollection ParseQueryString(string query) => throw null; public static System.Collections.Specialized.NameValueCollection ParseQueryString(string query, System.Text.Encoding encoding) => throw null; } } namespace Serialization { // Generated from `ServiceStack.Serialization.DataContractSerializer` in `ServiceStack.Client, Version=6.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=6.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=6.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=6.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.Generic.IDictionary keyValuePairs, System.Type returnType) => throw null; public object Parse(System.Collections.Specialized.NameValueCollection nameValues, 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=6.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=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class StringMapTypeDeserializer { public static System.Collections.Generic.Dictionary ContentTypeStringSerializers { get => throw null; } public object CreateFromMap(System.Collections.Generic.IDictionary keyValuePairs) => throw null; public object CreateFromMap(System.Collections.Specialized.NameValueCollection nameValues) => throw null; public object PopulateFromMap(object instance, System.Collections.Generic.IDictionary keyValuePairs, System.Collections.Generic.HashSet ignoredWarningsOnPropertyNames = default(System.Collections.Generic.HashSet)) => throw null; public object PopulateFromMap(object instance, System.Collections.Specialized.NameValueCollection nameValues, System.Collections.Generic.HashSet ignoredWarningsOnPropertyNames = default(System.Collections.Generic.HashSet)) => throw null; public StringMapTypeDeserializer(System.Type type) => throw null; public static System.Collections.Concurrent.ConcurrentDictionary TypeStringSerializers { get => throw null; } } // Generated from `ServiceStack.Serialization.XmlSerializableSerializer` in `ServiceStack.Client, Version=6.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.Stream from) => throw null; public To Parse(System.IO.TextReader 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=6.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) => throw null; public override object ReadObject(System.Xml.XmlDictionaryReader reader, bool verifyObjectName) => 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) => throw null; public XmlSerializerWrapper(System.Type type, string name, string ns) => throw null; } } namespace Support { // Generated from `ServiceStack.Support.NetDeflateProvider` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class NetDeflateProvider : ServiceStack.Caching.IDeflateProvider { public System.Byte[] Deflate(System.Byte[] bytes) => throw null; public System.Byte[] Deflate(string text) => 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 static ServiceStack.Support.NetDeflateProvider Instance { get => throw null; } public NetDeflateProvider() => throw null; } // Generated from `ServiceStack.Support.NetGZipProvider` in `ServiceStack.Client, Version=6.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 inputStream) => throw null; public System.Byte[] GZip(System.Byte[] bytes) => throw null; public System.Byte[] GZip(string text) => throw null; public System.IO.Stream GZipStream(System.IO.Stream outputStream) => throw null; public static ServiceStack.Support.NetGZipProvider Instance { get => throw null; } public NetGZipProvider() => throw null; } } namespace Validation { // Generated from `ServiceStack.Validation.ValidationError` in `ServiceStack.Client, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null` public class ValidationError : System.ArgumentException, ServiceStack.Model.IResponseStatusConvertible { public static ServiceStack.Validation.ValidationError CreateException(System.Enum errorCode) => throw null; public static ServiceStack.Validation.ValidationError CreateException(System.Enum errorCode, string errorMessage) => throw null; public static ServiceStack.Validation.ValidationError CreateException(System.Enum errorCode, string errorMessage, string fieldName) => throw null; public static ServiceStack.Validation.ValidationError CreateException(ServiceStack.Validation.ValidationErrorField error) => throw null; public static ServiceStack.Validation.ValidationError CreateException(string errorCode) => throw null; public static ServiceStack.Validation.ValidationError CreateException(string errorCode, string errorMessage) => throw null; public static ServiceStack.Validation.ValidationError CreateException(string errorCode, string errorMessage, string fieldName) => 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(ServiceStack.Validation.ValidationErrorField validationError) => throw null; public ValidationError(ServiceStack.Validation.ValidationErrorResult validationResult) => throw null; public ValidationError(string errorCode) => throw null; public ValidationError(string errorCode, string errorMessage) => throw null; public System.Collections.Generic.IList Violations { get => throw null; set => throw null; } } // Generated from `ServiceStack.Validation.ValidationErrorField` in `ServiceStack.Client, Version=6.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(System.Enum errorCode) => throw null; public ValidationErrorField(System.Enum errorCode, string fieldName) => throw null; public ValidationErrorField(System.Enum errorCode, string fieldName, string errorMessage) => throw null; public ValidationErrorField(string errorCode) => throw null; public ValidationErrorField(string errorCode, string fieldName) => throw null; public ValidationErrorField(string errorCode, string fieldName, string errorMessage) => throw null; public ValidationErrorField(string errorCode, string fieldName, string errorMessage, object attemptedValue) => throw null; } // Generated from `ServiceStack.Validation.ValidationErrorResult` in `ServiceStack.Client, Version=6.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() => throw null; public ValidationErrorResult(System.Collections.Generic.IList errors) => throw null; public ValidationErrorResult(System.Collections.Generic.IList errors, string successCode, string errorCode) => throw null; } } }