黄学彪
2020-09-22 ade5917841b0fdcb1df7353ef7c56b1a1bdc9282
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.AppCenter</name>
    </assembly>
    <members>
        <member name="T:Microsoft.AppCenter.AppCenter">
            <summary>
            SDK core used to initialize, start and control specific service.
            </summary>
        </member>
        <member name="P:Microsoft.AppCenter.AppCenter.LogLevel">
            <summary>
                This property controls the amount of logs emitted by the SDK.
            </summary>
        </member>
        <member name="M:Microsoft.AppCenter.AppCenter.SetUserId(System.String)">
            <summary>
                Set the custom user id.
            </summary>
            <param name="userId">Custom string to identify user. 256 characters or less.</param>
        </member>
        <member name="P:Microsoft.AppCenter.AppCenter.SdkVersion">
            <summary>
            Get the current version of AppCenter SDK.
            </summary>
        </member>
        <member name="M:Microsoft.AppCenter.AppCenter.IsEnabledAsync">
            <summary>
            Check whether the SDK is enabled or not as a whole.
            </summary>
            <returns>A task with result being true if enabled, false if disabled.</returns>
        </member>
        <member name="M:Microsoft.AppCenter.AppCenter.SetEnabledAsync(System.Boolean)">
            <summary>
                Enable or disable the SDK as a whole. 
                Updating the state propagates the value to all services that have been started.
            </summary>
            <returns>A task to monitor the operation.</returns>
        </member>
        <member name="M:Microsoft.AppCenter.AppCenter.GetInstallIdAsync">
            <summary>
                Get the unique installation identifier for this application installation on this device.
            </summary>
            <remarks>
                The identifier is lost if clearing application data or uninstalling application.
            </remarks>
        </member>
        <member name="M:Microsoft.AppCenter.AppCenter.SetLogUrl(System.String)">
            <summary>
                Change the base URL (scheme + authority + port only) used to communicate with the backend.
            </summary>
            <param name="logUrl">Base URL to use for server communication.</param>
        </member>
        <member name="P:Microsoft.AppCenter.AppCenter.Configured">
            <summary>
            Check whether SDK has already been configured or not.
            </summary>
        </member>
        <member name="M:Microsoft.AppCenter.AppCenter.Configure(System.String)">
            <summary>
                Configure the SDK.
                This may be called only once per application process lifetime.
            </summary>
            <param name="appSecret">A unique and secret key used to identify the application.</param>
        </member>
        <member name="M:Microsoft.AppCenter.AppCenter.Start(System.Type[])">
            <summary>
                Start services.
                This may be called only once per service per application process lifetime.
            </summary>
            <param name="services">List of services to use.</param>
        </member>
        <member name="M:Microsoft.AppCenter.AppCenter.Start(System.String,System.Type[])">
            <summary>
                Initialize the SDK with the list of services to start.
                This may be called only once per application process lifetime.
            </summary>
            <param name="appSecret">A unique and secret key used to identify the application.</param>
            <param name="services">List of services to use.</param>
        </member>
        <member name="M:Microsoft.AppCenter.AppCenter.SetCustomProperties(Microsoft.AppCenter.CustomProperties)">
            <summary>
            Set the custom properties.
            </summary>
            <param name="customProperties">Custom properties object.</param>
        </member>
        <member name="T:Microsoft.AppCenter.AppCenterLog">
            <summary>
            This class is used to log messages consistent with those emitted by the SDK.
            Note: To track events, use <code>Analytics.TrackEvent</code>.
            </summary>
        </member>
        <member name="P:Microsoft.AppCenter.AppCenterLog.LogTag">
            <summary>
            The log tag for this SDK. All logs emitted at the SDK level will contain this tag.
            </summary>
        </member>
        <member name="M:Microsoft.AppCenter.AppCenterLog.Verbose(System.String,System.String,System.Exception)">
            <summary>
            Writes a log and an exception at the <see cref="F:Microsoft.AppCenter.LogLevel.Verbose"/> level.
            Note: To track events, use <code>Analytics.TrackEvent</code>.
            </summary>
            <param name="tag">Log tag.</param>
            <param name="message">Message.</param>
            <param name="exception">Associated exception.</param>
        </member>
        <member name="M:Microsoft.AppCenter.AppCenterLog.Debug(System.String,System.String,System.Exception)">
            <summary>
            Writes a log and an exception at the <see cref="F:Microsoft.AppCenter.LogLevel.Debug"/> level.
            Note: To track events, use <code>Analytics.TrackEvent</code>.
            </summary>
            <param name="tag">Log tag.</param>
            <param name="message">Message.</param>
            <param name="exception">Associated exception.</param>
        </member>
        <member name="M:Microsoft.AppCenter.AppCenterLog.Info(System.String,System.String,System.Exception)">
            <summary>
            Writes a log and an exception at the <see cref="F:Microsoft.AppCenter.LogLevel.Info"/> level.
            Note: To track events, use <code>Analytics.TrackEvent</code>.
            </summary>
            <param name="tag">Log tag.</param>
            <param name="message">Message.</param>
            <param name="exception">Associated exception.</param>
        </member>
        <member name="M:Microsoft.AppCenter.AppCenterLog.Warn(System.String,System.String,System.Exception)">
            <summary>
            Writes a log and an exception at the <see cref="F:Microsoft.AppCenter.LogLevel.Warn"/> level.
            Note: To track events, use <code>Analytics.TrackEvent</code>.
            </summary>
            <param name="tag">Log tag.</param>
            <param name="message">Message.</param>
            <param name="exception">Associated exception.</param>
        </member>
        <member name="M:Microsoft.AppCenter.AppCenterLog.Error(System.String,System.String,System.Exception)">
            <summary>
            Writes a log and an exception at the <see cref="F:Microsoft.AppCenter.LogLevel.Error"/> level.
            Note: To track events, use <code>Analytics.TrackEvent</code>.
            </summary>
            <param name="tag">Log tag.</param>
            <param name="message">Message.</param>
            <param name="exception">Associated exception.</param>
        </member>
        <member name="M:Microsoft.AppCenter.AppCenterLog.Assert(System.String,System.String,System.Exception)">
            <summary>
            Writes a log and an exception at the <see cref="F:Microsoft.AppCenter.LogLevel.Assert"/> level.
            Note: To track events, use <code>Analytics.TrackEvent</code>.
            </summary>
            <param name="tag">Log tag.</param>
            <param name="message">Message.</param>
            <param name="exception">Associated exception.</param>
        </member>
        <member name="T:Microsoft.AppCenter.Device">
            <summary>
            Device class to help retrieve device information.
            </summary>
        </member>
        <member name="P:Microsoft.AppCenter.Device.SdkName">
            <summary>
            Gets the name of the SDK.
            </summary>
            <value>Name of the SDK. Consists of the name of the SDK and the platform, e.g. "mobilecenter.ios", "mobilecenter.android"</value>
        </member>
        <member name="P:Microsoft.AppCenter.Device.SdkVersion">
            <summary>
            Gets the SDK version.
            </summary>
            <value>Version of the SDK in semver format, e.g. "1.2.0" or "0.12.3-alpha.1".</value>
        </member>
        <member name="P:Microsoft.AppCenter.Device.Model">
            <summary>
            Gets the device model.
            </summary>
            <value>Device model (example: iPad2,3).</value>
        </member>
        <member name="P:Microsoft.AppCenter.Device.OemName">
            <summary>
            Gets the name of the manufacturer.
            </summary>
            <value> Device manufacturer (example: HTC).</value>
        </member>
        <member name="P:Microsoft.AppCenter.Device.OsName">
            <summary>
            Gets the name of the OS.
            </summary>
            <value>OS name (example: iOS).</value>
        </member>
        <member name="P:Microsoft.AppCenter.Device.OsVersion">
            <summary>
            Gets the OS version.
            </summary>
            <value>OS version (example: 9.3.0).</value>
        </member>
        <member name="P:Microsoft.AppCenter.Device.OsBuild">
            <summary>
            Gets the OS build
            </summary>
            <value>OS build code (example: LMY47X).</value>
        </member>
        <member name="P:Microsoft.AppCenter.Device.OsApiLevel">
            <summary>
            Gets the OS API level.
            </summary>
            <value>API level when applicable like in Android (example: 15).</value>
        </member>
        <member name="P:Microsoft.AppCenter.Device.Locale">
            <summary>
            Gets the locale.
            </summary>
            <value>Language code (example: en_US).</value>
        </member>
        <member name="P:Microsoft.AppCenter.Device.TimeZoneOffset">
            <summary>
            Gets the time zone offset.
            </summary>
            <value>The offset in minutes from UTC for the device time zone, including daylight savings time.</value>
        </member>
        <member name="P:Microsoft.AppCenter.Device.ScreenSize">
            <summary>
            Gets the size of the screen.
            </summary>
            <value>Screen size of the device in pixels (example: 640x480).</value>
        </member>
        <member name="P:Microsoft.AppCenter.Device.AppVersion">
            <summary>
            Gets the application version.
            </summary>
            <value>Application version name, e.g. 1.1.0</value>
        </member>
        <member name="P:Microsoft.AppCenter.Device.CarrierName">
            <summary>
            Gets the name of the carrier.
            </summary>
            <value>Carrier name (for mobile devices).</value>
        </member>
        <member name="P:Microsoft.AppCenter.Device.CarrierCountry">
            <summary>
            Gets the carrier country.
            </summary>
            <value>Carrier country code (for mobile devices).</value>
        </member>
        <member name="P:Microsoft.AppCenter.Device.AppBuild">
            <summary>
            Gets the app build.
            </summary>
            <value>The app's build number, e.g. 42.</value>
        </member>
        <member name="P:Microsoft.AppCenter.Device.AppNamespace">
            <summary>
            Gets the app namespace.
            </summary>
            <value>The bundle identifier, package identifier, or namespace, depending on what the individual platforms
            use, e.g.com.microsoft.example.</value>
        </member>
        <member name="T:Microsoft.AppCenter.CustomProperties">
            <summary>
            Custom properties builder.
            Collects multiple properties to send in one log.
            </summary>
        </member>
        <member name="M:Microsoft.AppCenter.CustomProperties.Set(System.String,System.String)">
            <summary>
            Set the specified property value with the specified key.
            If the properties previously contained a property for the key, the old value is replaced.
            </summary>
            <param name="key">Key with which the specified value is to be set.</param>
            <param name="value">Value to be set with the specified key.</param>
            <returns>This instance.</returns>
        </member>
        <member name="M:Microsoft.AppCenter.CustomProperties.Set(System.String,System.DateTime)">
            <summary>
            Set the specified property value with the specified key.
            If the properties previously contained a property for the key, the old value is replaced.
            </summary>
            <param name="key">Key with which the specified value is to be set.</param>
            <param name="value">Value to be set with the specified key.</param>
            <returns>This instance.</returns>
        </member>
        <member name="M:Microsoft.AppCenter.CustomProperties.Set(System.String,System.Int32)">
            <summary>
            Set the specified property value with the specified key.
            If the properties previously contained a property for the key, the old value is replaced.
            </summary>
            <param name="key">Key with which the specified value is to be set.</param>
            <param name="value">Value to be set with the specified key.</param>
            <returns>This instance.</returns>
        </member>
        <member name="M:Microsoft.AppCenter.CustomProperties.Set(System.String,System.Int64)">
            <summary>
            Set the specified property value with the specified key.
            If the properties previously contained a property for the key, the old value is replaced.
            </summary>
            <param name="key">Key with which the specified value is to be set.</param>
            <param name="value">Value to be set with the specified key.</param>
            <returns>This instance.</returns>
        </member>
        <member name="M:Microsoft.AppCenter.CustomProperties.Set(System.String,System.Single)">
            <summary>
            Set the specified property value with the specified key.
            If the properties previously contained a property for the key, the old value is replaced.
            </summary>
            <param name="key">Key with which the specified value is to be set.</param>
            <param name="value">Value to be set with the specified key.</param>
            <returns>This instance.</returns>
        </member>
        <member name="M:Microsoft.AppCenter.CustomProperties.Set(System.String,System.Double)">
            <summary>
            Set the specified property value with the specified key.
            If the properties previously contained a property for the key, the old value is replaced.
            </summary>
            <param name="key">Key with which the specified value is to be set.</param>
            <param name="value">Value to be set with the specified key.</param>
            <returns>This instance.</returns>
        </member>
        <member name="M:Microsoft.AppCenter.CustomProperties.Set(System.String,System.Decimal)">
            <summary>
            Set the specified property value with the specified key.
            If the properties previously contained a property for the key, the old value is replaced.
            </summary>
            <param name="key">Key with which the specified value is to be set.</param>
            <param name="value">Value to be set with the specified key.</param>
            <returns>This instance.</returns>
        </member>
        <member name="M:Microsoft.AppCenter.CustomProperties.Set(System.String,System.Boolean)">
            <summary>
            Set the specified property value with the specified key.
            If the properties previously contained a property for the key, the old value is replaced.
            </summary>
            <param name="key">Key with which the specified value is to be set.</param>
            <param name="value">Value to be set with the specified key.</param>
            <returns>This instance.</returns>
        </member>
        <member name="M:Microsoft.AppCenter.CustomProperties.Clear(System.String)">
            <summary>
            Clear the property for the specified key.
            </summary>
            <param name="key">Key whose mapping is to be cleared.</param>
            <returns>This instance.</returns>
        </member>
        <member name="T:Microsoft.AppCenter.LogLevel">
            <summary>
            Log level threshold for logs emitted by the SDK.
            </summary>
        </member>
        <member name="F:Microsoft.AppCenter.LogLevel.Verbose">
            <summary>
            SDK emits all possible level of logs.
            </summary>
        </member>
        <member name="F:Microsoft.AppCenter.LogLevel.Debug">
            <summary>
            SDK emits debug, info, warn, error and assert logs.
            </summary>
        </member>
        <member name="F:Microsoft.AppCenter.LogLevel.Info">
            <summary>
            SDK emits info, warn, error, and assert logs.
            </summary>
        </member>
        <member name="F:Microsoft.AppCenter.LogLevel.Warn">
            <summary>
            SDK emits warn, error, and assert logs.
            </summary>
        </member>
        <member name="F:Microsoft.AppCenter.LogLevel.Error">
            <summary>
            SDK error and assert logs.
            </summary>
        </member>
        <member name="F:Microsoft.AppCenter.LogLevel.Assert">
            <summary>
            Only assert logs are emitted by SDK.
            </summary>
        </member>
        <member name="F:Microsoft.AppCenter.LogLevel.None">
            <summary>
            No log is emitted by SDK.
            </summary>
        </member>
    </members>
</doc>