C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
AnalyzeRe.Client/Properties/Settings.Designer.cs
Go to the documentation of this file.
1//------------------------------------------------------------------------------
2// <auto-generated>
3// This code was generated by a tool.
4// Runtime Version:4.0.30319.42000
5//
6// Changes to this file may cause incorrect behavior and will be lost if
7// the code is regenerated.
8// </auto-generated>
9//------------------------------------------------------------------------------
10
11namespace AnalyzeRe.Properties {
12
13
17 [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
18 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.1.0.0")]
19 public sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
20
21 private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
22
26 public static Settings Default {
27 get {
28 return defaultInstance;
29 }
30 }
31
35 [global::System.Configuration.ApplicationScopedSettingAttribute()]
36 [global::System.Configuration.SettingsDescriptionAttribute("The default API url to connect to. This is typically set to an example url.")]
37 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
38 [global::System.Configuration.DefaultSettingValueAttribute("https://yourorganization-api.analyzere.net/")]
39 public string DefaultServerURL {
40 get {
41 return ((string)(this["DefaultServerURL"]));
42 }
43 }
44
48 [global::System.Configuration.ApplicationScopedSettingAttribute()]
49 [global::System.Configuration.SettingsDescriptionAttribute("The default timeout for collection GET requests, which are generally more expensi" +
50 "ve than simple resource GET requests.")]
51 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
52 [global::System.Configuration.DefaultSettingValueAttribute("60000")]
54 get {
55 return ((int)(this["DEFAULT_REQUEST_TIMEOUT_COLLECTIONS"]));
56 }
57 }
58
62 [global::System.Configuration.UserScopedSettingAttribute()]
63 [global::System.Configuration.SettingsDescriptionAttribute("A collection of cached authentication tokens which can be used to restore a previ" +
64 "ous connection between sessions.")]
65 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
66 public global::System.Collections.Specialized.StringCollection CachedCredentials {
67 get {
68 return ((global::System.Collections.Specialized.StringCollection)(this["CachedCredentials"]));
69 }
70 set {
71 this["CachedCredentials"] = value;
72 }
73 }
74
78 [global::System.Configuration.UserScopedSettingAttribute()]
79 [global::System.Configuration.SettingsDescriptionAttribute("The last API url to connected to. This can be used to override the default URL to" +
80 " restore a previous connection between sessions.")]
81 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
82 [global::System.Configuration.DefaultSettingValueAttribute("")]
83 public string ServerURL {
84 get {
85 return ((string)(this["ServerURL"]));
86 }
87 set {
88 this["ServerURL"] = value;
89 }
90 }
91
95 [global::System.Configuration.ApplicationScopedSettingAttribute()]
96 [global::System.Configuration.SettingsDescriptionAttribute("The default number of simultaneous connections to allow to the API.")]
97 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
98 [global::System.Configuration.DefaultSettingValueAttribute("128")]
99 public int DefaultParallelism {
100 get {
101 return ((int)(this["DefaultParallelism"]));
102 }
103 }
104
108 [global::System.Configuration.UserScopedSettingAttribute()]
109 [global::System.Configuration.SettingsDescriptionAttribute("The user-overridden value for the default collection request timeout.")]
110 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
111 [global::System.Configuration.DefaultSettingValueAttribute("60000")]
113 get {
114 return ((int)(this["User_DEFAULT_REQUEST_TIMEOUT_COLLECTIONS"]));
115 }
116 set {
117 this["User_DEFAULT_REQUEST_TIMEOUT_COLLECTIONS"] = value;
118 }
119 }
120
124 [global::System.Configuration.ApplicationScopedSettingAttribute()]
125 [global::System.Configuration.SettingsDescriptionAttribute("The default timeout for simple resource requests.")]
126 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
127 [global::System.Configuration.DefaultSettingValueAttribute("30000")]
129 get {
130 return ((int)(this["DEFAULT_REQUEST_TIMEOUT"]));
131 }
132 }
133
137 [global::System.Configuration.UserScopedSettingAttribute()]
138 [global::System.Configuration.SettingsDescriptionAttribute("The user-overridden value for the default request timeout.")]
139 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
140 [global::System.Configuration.DefaultSettingValueAttribute("30000")]
142 get {
143 return ((int)(this["User_DEFAULT_REQUEST_TIMEOUT"]));
144 }
145 set {
146 this["User_DEFAULT_REQUEST_TIMEOUT"] = value;
147 }
148 }
149 }
150}
This part of the Settings class is not generated from the Settings.settings designer,...
Definition Settings.cs:11
int User_DEFAULT_REQUEST_TIMEOUT
The user-overridden value for the default request timeout.
static Settings Default
The default settings used by the static Analyze Re API client library.
int DEFAULT_REQUEST_TIMEOUT_COLLECTIONS
The default timeout for collection GET requests, which are generally more expensive than simple resou...
int User_DEFAULT_REQUEST_TIMEOUT_COLLECTIONS
The user-overridden value for the default collection request timeout.
global::System.Collections.Specialized.StringCollection CachedCredentials
A collection of cached authentication tokens which can be used to restore a previous connection betwe...
string ServerURL
The last API url to connected to. This can be used to override the default URL to restore a previous ...
string DefaultServerURL
The default API url to connect to. This is typically set to an example url.
int DEFAULT_REQUEST_TIMEOUT
The default timeout for simple resource requests.
int DefaultParallelism
The default number of simultaneous connections to allow to the API.