forked from ServiceStack/ServiceStack.Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.Interfaces.xml
More file actions
2399 lines (2386 loc) · 107 KB
/
ServiceStack.Interfaces.xml
File metadata and controls
2399 lines (2386 loc) · 107 KB
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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>ServiceStack.Interfaces</name>
</assembly>
<members>
<member name="P:ServiceStack.ApiAllowableValuesAttribute.Name">
<summary>
Gets or sets parameter name with which allowable values will be associated.
</summary>
</member>
<member name="F:ServiceStack.GenerateBodyParameter.IfNotDisabled">
<summary>
Generates body DTO parameter only if `DisableAutoDtoInBodyParam = false`
</summary>
</member>
<member name="F:ServiceStack.GenerateBodyParameter.Always">
<summary>
Always generate body DTO for request
</summary>
</member>
<member name="F:ServiceStack.GenerateBodyParameter.Never">
<summary>
Never generate body DTO for request
</summary>
</member>
<member name="P:ServiceStack.ApiAttribute.Description">
<summary>
The overall description of an API. Used by Swagger.
</summary>
</member>
<member name="P:ServiceStack.ApiAttribute.BodyParameter">
<summary>
Create or not body param for request type when verb is POST or PUT.
Value can be one of the constants of `GenerateBodyParam` class:
`GenerateBodyParam.IfNotDisabled` (default value), `GenerateBodyParam.Always`, `GenerateBodyParam.Never`
</summary>
</member>
<member name="P:ServiceStack.ApiAttribute.IsRequired">
<summary>
Tells if body param is required
</summary>
</member>
<member name="P:ServiceStack.ApiMemberAttribute.Verb">
<summary>
Gets or sets verb to which applies attribute. By default applies to all verbs.
</summary>
</member>
<member name="P:ServiceStack.ApiMemberAttribute.ParameterType">
<summary>
Gets or sets parameter type: It can be only one of the following: path, query, body, form, or header.
</summary>
</member>
<member name="P:ServiceStack.ApiMemberAttribute.Name">
<summary>
Gets or sets unique name for the parameter. Each name must be unique, even if they are associated with different paramType values.
</summary>
<remarks>
<para>
Other notes on the name field:
If paramType is body, the name is used only for UI and codegeneration.
If paramType is path, the name field must correspond to the associated path segment from the path field in the api object.
If paramType is query, the name field corresponds to the query param name.
</para>
</remarks>
</member>
<member name="P:ServiceStack.ApiMemberAttribute.Description">
<summary>
Gets or sets the human-readable description for the parameter.
</summary>
</member>
<member name="P:ServiceStack.ApiMemberAttribute.DataType">
<summary>
For path, query, and header paramTypes, this field must be a primitive. For body, this can be a complex or container datatype.
</summary>
</member>
<member name="P:ServiceStack.ApiMemberAttribute.Format">
<summary>
Fine-tuned primitive type definition.
</summary>
</member>
<member name="P:ServiceStack.ApiMemberAttribute.IsRequired">
<summary>
For path, this is always true. Otherwise, this field tells the client whether or not the field must be supplied.
</summary>
</member>
<member name="P:ServiceStack.ApiMemberAttribute.AllowMultiple">
<summary>
For query params, this specifies that a comma-separated list of values can be passed to the API. For path and body types, this field cannot be true.
</summary>
</member>
<member name="P:ServiceStack.ApiMemberAttribute.Route">
<summary>
Gets or sets route to which applies attribute, matches using StartsWith. By default applies to all routes.
</summary>
</member>
<member name="P:ServiceStack.ApiMemberAttribute.ExcludeInSchema">
<summary>
Whether to exclude this property from being included in the ModelSchema
</summary>
</member>
<member name="P:ServiceStack.IApiResponseDescription.StatusCode">
<summary>
The status code of a response
</summary>
</member>
<member name="P:ServiceStack.IApiResponseDescription.Description">
<summary>
The description of a response status code
</summary>
</member>
<member name="P:ServiceStack.ApiResponseAttribute.StatusCode">
<summary>
HTTP status code of response
</summary>
</member>
<member name="P:ServiceStack.ApiResponseAttribute.Description">
<summary>
End-user description of the data which is returned by response
</summary>
</member>
<member name="P:ServiceStack.ApiResponseAttribute.IsDefaultResponse">
<summary>
If set to true, the response is default for all non-explicity defined status codes
</summary>
</member>
<member name="P:ServiceStack.ApiResponseAttribute.ResponseType">
<summary>
Open API schema definition type for response
</summary>
</member>
<member name="T:ServiceStack.Auth.IPasswordHasher">
<summary>
The Password Hasher provider used to hash users passwords, by default uses the same algorithm used by ASP.NET Identity v3:
PBKDF2 with HMAC-SHA256, 128-bit salt, 256-bit subkey, 10000 iterations.
</summary>
</member>
<member name="P:ServiceStack.Auth.IPasswordHasher.Version">
<summary>
The first byte marker used to specify the format used. The default implementation uses the following format:
{ 0x01, prf (UInt32), iter count (UInt32), salt length (UInt32), salt, subkey }
</summary>
</member>
<member name="M:ServiceStack.Auth.IPasswordHasher.VerifyPassword(System.String,System.String,System.Boolean@)">
<summary>
Returns a boolean indicating whether the <paramref name="providedPassword"/> matches the <paramref name="hashedPassword"/>.
The <paramref name="needsRehash"/> out parameter indicates whether the password should be re-hashed.
</summary>
<param name="hashedPassword">The hash value for a user's stored password.</param>
<param name="providedPassword">The password supplied for comparison.</param>
<remarks>Implementations of this method should be time consistent.</remarks>
</member>
<member name="M:ServiceStack.Auth.IPasswordHasher.HashPassword(System.String)">
<summary>
Returns a hashed representation of the supplied <paramref name="password"/>.
</summary>
<param name="password">The password to hash.</param>
<returns>A hashed representation of the supplied <paramref name="password"/>.</returns>
</member>
<member name="T:ServiceStack.Caching.ICacheClient">
<summary>
A common interface implementation that is implemented by most cache providers
</summary>
</member>
<member name="M:ServiceStack.Caching.ICacheClient.Remove(System.String)">
<summary>
Removes the specified item from the cache.
</summary>
<param name="key">The identifier for the item to delete.</param>
<returns>
true if the item was successfully removed from the cache; false otherwise.
</returns>
</member>
<member name="M:ServiceStack.Caching.ICacheClient.RemoveAll(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Removes the cache for all the keys provided.
</summary>
<param name="keys">The keys.</param>
</member>
<member name="M:ServiceStack.Caching.ICacheClient.Get``1(System.String)">
<summary>
Retrieves the specified item from the cache.
</summary>
<typeparam name="T"></typeparam>
<param name="key">The identifier for the item to retrieve.</param>
<returns>
The retrieved item, or <value>null</value> if the key was not found.
</returns>
</member>
<member name="M:ServiceStack.Caching.ICacheClient.Increment(System.String,System.UInt32)">
<summary>
Increments the value of the specified key by the given amount.
The operation is atomic and happens on the server.
A non existent value at key starts at 0
</summary>
<param name="key">The identifier for the item to increment.</param>
<param name="amount">The amount by which the client wants to increase the item.</param>
<returns>
The new value of the item or -1 if not found.
</returns>
<remarks>The item must be inserted into the cache before it can be changed. The item must be inserted as a <see cref="T:System.String"/>. The operation only works with <see cref="T:System.UInt32"/> values, so -1 always indicates that the item was not found.</remarks>
</member>
<member name="M:ServiceStack.Caching.ICacheClient.Decrement(System.String,System.UInt32)">
<summary>
Increments the value of the specified key by the given amount.
The operation is atomic and happens on the server.
A non existent value at key starts at 0
</summary>
<param name="key">The identifier for the item to increment.</param>
<param name="amount">The amount by which the client wants to decrease the item.</param>
<returns>
The new value of the item or -1 if not found.
</returns>
<remarks>The item must be inserted into the cache before it can be changed. The item must be inserted as a <see cref="T:System.String"/>. The operation only works with <see cref="T:System.UInt32"/> values, so -1 always indicates that the item was not found.</remarks>
</member>
<member name="M:ServiceStack.Caching.ICacheClient.Add``1(System.String,``0)">
<summary>
Adds a new item into the cache at the specified cache key only if the cache is empty.
</summary>
<param name="key">The key used to reference the item.</param>
<param name="value">The object to be inserted into the cache.</param>
<returns>
true if the item was successfully stored in the cache; false otherwise.
</returns>
<remarks>The item does not expire unless it is removed due memory pressure.</remarks>
</member>
<member name="M:ServiceStack.Caching.ICacheClient.Set``1(System.String,``0)">
<summary>
Sets an item into the cache at the cache key specified regardless if it already exists or not.
</summary>
</member>
<member name="M:ServiceStack.Caching.ICacheClient.Replace``1(System.String,``0)">
<summary>
Replaces the item at the cachekey specified only if an items exists at the location already.
</summary>
</member>
<member name="M:ServiceStack.Caching.ICacheClient.FlushAll">
<summary>
Invalidates all data on the cache.
</summary>
</member>
<member name="M:ServiceStack.Caching.ICacheClient.GetAll``1(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Retrieves multiple items from the cache.
The default value of T is set for all keys that do not exist.
</summary>
<param name="keys">The list of identifiers for the items to retrieve.</param>
<returns>
a Dictionary holding all items indexed by their key.
</returns>
</member>
<member name="M:ServiceStack.Caching.ICacheClient.SetAll``1(System.Collections.Generic.IDictionary{System.String,``0})">
<summary>
Sets multiple items to the cache.
</summary>
<typeparam name="T"></typeparam>
<param name="values">The values.</param>
</member>
<member name="T:ServiceStack.Caching.ICacheClientExtended">
<summary>
Extend ICacheClient API with shared, non-core features
</summary>
</member>
<member name="T:ServiceStack.Caching.IMemcachedClient">
<summary>
A light interface over a cache client.
This interface was inspired by Enyim.Caching.MemcachedClient
Only the methods that are intended to be used are required, if you require
extra functionality you can uncomment the unused methods below as they have been
implemented in DdnMemcachedClient
</summary>
</member>
<member name="M:ServiceStack.Caching.IMemcachedClient.Remove(System.String)">
<summary>
Removes the specified item from the cache.
</summary>
<param name="key">The identifier for the item to delete.</param>
<returns>
true if the item was successfully removed from the cache; false otherwise.
</returns>
</member>
<member name="M:ServiceStack.Caching.IMemcachedClient.RemoveAll(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Removes the cache for all the keys provided.
</summary>
<param name="keys">The keys.</param>
</member>
<member name="M:ServiceStack.Caching.IMemcachedClient.Get(System.String)">
<summary>
Retrieves the specified item from the cache.
</summary>
<param ICTname="key">The identifier for the item to retrieve.</param>
<returns>
The retrieved item, or <value>null</value> if the key was not found.
</returns>
</member>
<member name="M:ServiceStack.Caching.IMemcachedClient.Increment(System.String,System.UInt32)">
<summary>
Increments the value of the specified key by the given amount. The operation is atomic and happens on the server.
</summary>
<param name="key">The identifier for the item to increment.</param>
<param name="amount">The amount by which the client wants to increase the item.</param>
<returns>
The new value of the item or -1 if not found.
</returns>
<remarks>The item must be inserted into the cache before it can be changed. The item must be inserted as a <see cref="T:System.String"/>. The operation only works with <see cref="T:System.UInt32"/> values, so -1 always indicates that the item was not found.</remarks>
</member>
<member name="M:ServiceStack.Caching.IMemcachedClient.Decrement(System.String,System.UInt32)">
<summary>
Increments the value of the specified key by the given amount. The operation is atomic and happens on the server.
</summary>
<param name="key">The identifier for the item to increment.</param>
<param name="amount">The amount by which the client wants to decrease the item.</param>
<returns>
The new value of the item or -1 if not found.
</returns>
<remarks>The item must be inserted into the cache before it can be changed. The item must be inserted as a <see cref="T:System.String"/>. The operation only works with <see cref="T:System.UInt32"/> values, so -1 always indicates that the item was not found.</remarks>
</member>
<member name="M:ServiceStack.Caching.IMemcachedClient.Add(System.String,System.Object)">
<summary>
Inserts an item into the cache with a cache key to reference its location.
</summary>
<param name="key">The key used to reference the item.</param>
<param name="value">The object to be inserted into the cache.</param>
<returns>
true if the item was successfully stored in the cache; false otherwise.
</returns>
<remarks>The item does not expire unless it is removed due memory pressure.</remarks>
</member>
<member name="M:ServiceStack.Caching.IMemcachedClient.Add(System.String,System.Object,System.DateTime)">
<summary>
Inserts an item into the cache with a cache key to reference its location.
</summary>
<param name="key">The key used to reference the item.</param>
<param name="value">The object to be inserted into the cache.</param>
<param name="expiresAt">The time when the item is invalidated in the cache.</param>
<returns>true if the item was successfully stored in the cache; false otherwise.</returns>
</member>
<member name="M:ServiceStack.Caching.IMemcachedClient.FlushAll">
<summary>
Removes all data from the cache.
</summary>
</member>
<member name="M:ServiceStack.Caching.IMemcachedClient.GetAll(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Retrieves multiple items from the cache.
</summary>
<param name="keys">The list of identifiers for the items to retrieve.</param>
<returns>
a Dictionary holding all items indexed by their key.
</returns>
</member>
<member name="M:ServiceStack.Caching.IRemoveByPattern.RemoveByPattern(System.String)">
<summary>
Removes items from cache that have keys matching the specified wildcard pattern
</summary>
<param name="pattern">The wildcard, where "*" means any sequence of characters and "?" means any single character.</param>
</member>
<member name="M:ServiceStack.Caching.IRemoveByPattern.RemoveByRegex(System.String)">
<summary>
Removes items from the cache based on the specified regular expression pattern
</summary>
<param name="regex">Regular expression pattern to search cache keys</param>
</member>
<member name="T:ServiceStack.Caching.ISession">
<summary>
A Users Session
</summary>
</member>
<member name="P:ServiceStack.Caching.ISession.Item(System.String)">
<summary>
Store any object at key
</summary>
<param name="key"></param>
<returns></returns>
</member>
<member name="M:ServiceStack.Caching.ISession.Set``1(System.String,``0)">
<summary>
Set a typed value at key
</summary>
<typeparam name="T"></typeparam>
<param name="key"></param>
<param name="value"></param>
</member>
<member name="M:ServiceStack.Caching.ISession.Get``1(System.String)">
<summary>
Get a typed value at key
</summary>
<typeparam name="T"></typeparam>
<param name="key"></param>
<returns></returns>
</member>
<member name="M:ServiceStack.Caching.ISession.Remove(System.String)">
<summary>
Remove the value at key
</summary>
<param name="key"></param>
<returns></returns>
</member>
<member name="M:ServiceStack.Caching.ISession.RemoveAll">
<summary>
Delete all Cache Entries (requires ICacheClient that implements IRemoveByPattern)
</summary>
</member>
<member name="T:ServiceStack.Caching.ISessionFactory">
<summary>
Retrieves a User Session
</summary>
</member>
<member name="M:ServiceStack.Caching.ISessionFactory.GetOrCreateSession(ServiceStack.Web.IRequest,ServiceStack.Web.IResponse)">
<summary>
Gets the Session Bag for this request, creates one if it doesn't exist.
</summary>
<param name="httpReq"></param>
<param name="httpRes"></param>
<returns></returns>
</member>
<member name="M:ServiceStack.Caching.ISessionFactory.GetOrCreateSession">
<summary>
Gets the Session Bag for this request, creates one if it doesn't exist.
Only for ASP.NET apps. Uses the HttpContext.Current singleton.
</summary>
</member>
<member name="M:ServiceStack.Caching.ISessionFactory.CreateSession(System.String)">
<summary>
Create a Session Bag using a custom sessionId
</summary>
<param name="sessionId"></param>
<returns></returns>
</member>
<member name="T:ServiceStack.Configuration.IContainerAdapter">
<summary>
Allow delegation of dependencies to other IOC's
</summary>
</member>
<member name="M:ServiceStack.Configuration.IContainerAdapter.Resolve``1">
<summary>
Resolve Constructor Dependency
</summary>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:ServiceStack.Configuration.IResolver.TryResolve``1">
<summary>
Resolve a dependency from the AppHost's IOC
</summary>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:ServiceStack.Configuration.ISettingsReader.Get(System.String)">
<summary>
Provides a common interface for Settings providers such as
ConfigurationManager or Azure's RoleEnvironment. The only
requirement is that if the implementation cannot find the
specified key, the return value must be null
</summary>
<param name="key">The key for the setting</param>
<returns>The string value of the specified key, or null if the key
was invalid</returns>
</member>
<member name="M:ServiceStack.Configuration.ISettingsReader.GetAllKeys">
<summary>
Return all keys in this configuration source.
</summary>
<returns></returns>
</member>
<member name="T:ServiceStack.DataAnnotations.BelongToAttribute">
<summary>
BelongToAttribute
Use to indicate that a join column belongs to another table.
</summary>
</member>
<member name="T:ServiceStack.DataAnnotations.ComputeAttribute">
<summary>
Compute attribute.
Use to indicate that a property is a Calculated Field
</summary>
</member>
<member name="T:ServiceStack.DataAnnotations.DecimalLengthAttribute">
<summary>
Decimal length attribute.
</summary>
</member>
<member name="T:ServiceStack.DataAnnotations.ExcludeAttribute">
<summary>
Mark types that are to be excluded from specified features
</summary>
</member>
<member name="P:ServiceStack.DataAnnotations.ForeignKeyAttribute.ForeignKeyName">
<summary>
Explicit foreign key name. If it's null, or empty, the FK name will be autogenerated as before.
</summary>
</member>
<member name="T:ServiceStack.DataAnnotations.HashKeyAttribute">
<summary>
Hash Key Attribute used to specify which property is the HashKey, e.g. in DynamoDb.
</summary>
</member>
<member name="T:ServiceStack.DataAnnotations.IgnoreAttribute">
<summary>
IgnoreAttribute
Use to indicate that a property is not a field in the table
properties with this attribute are ignored when building sql sentences
</summary>
</member>
<member name="T:ServiceStack.DataAnnotations.IgnoreOnSelectAttribute">
<summary>
Ignore this property in SELECT statements
</summary>
</member>
<member name="T:ServiceStack.DataAnnotations.IgnoreOnUpdateAttribute">
<summary>
Ignore this property in UPDATE statements
</summary>
</member>
<member name="T:ServiceStack.DataAnnotations.IgnoreOnInsertAttribute">
<summary>
Ignore this property in INSERT statements
</summary>
</member>
<member name="T:ServiceStack.DataAnnotations.MetaAttribute">
<summary>
Decorate any type or property with adhoc info
</summary>
</member>
<member name="T:ServiceStack.DataAnnotations.PrimaryKeyAttribute">
<summary>
Primary key attribute.
use to indicate that property is part of the pk
</summary>
</member>
<member name="T:ServiceStack.DataAnnotations.RangeKeyAttribute">
<summary>
Range Key Attribute used to specify which property is the RangeKey, e.g. in DynamoDb.
</summary>
</member>
<member name="T:ServiceStack.DataAnnotations.RowVersionAttribute">
<summary>
Used to indicate that property is a row version incremented automatically by the database
</summary>
</member>
<member name="T:ServiceStack.DataAnnotations.SchemaAttribute">
<summary>
Used to annotate an Entity with its DB schema
</summary>
</member>
<!-- Badly formed XML comment ignored for member "T:ServiceStack.DataAnnotations.SequenceAttribute" -->
<member name="T:ServiceStack.Data.IEntityStore`1">
<summary>
For providers that want a cleaner API with a little more perf
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="T:ServiceStack.ErrorResponse">
<summary>
Generic ResponseStatus for when Response Type can't be inferred.
In schemaless formats like JSON, JSV it has the same shape as a typed Response DTO
</summary>
</member>
<member name="T:ServiceStack.IHasResponseStatus">
<summary>
Contract indication that the Response DTO has a ResponseStatus
</summary>
</member>
<member name="M:ServiceStack.IO.IVirtualFile.Refresh">
<summary>
Refresh file stats for this node if supported
</summary>
</member>
<member name="P:ServiceStack.IQuery.Skip">
<summary>
How many results to skip
</summary>
</member>
<member name="P:ServiceStack.IQuery.Take">
<summary>
How many results to return
</summary>
</member>
<member name="P:ServiceStack.IQuery.OrderBy">
<summary>
List of fields to sort by, can order by multiple fields and inverse order, e.g: Id,-Amount
</summary>
</member>
<member name="P:ServiceStack.IQuery.OrderByDesc">
<summary>
List of fields to sort by descending, can order by multiple fields and inverse order, e.g: -Id,Amount
</summary>
</member>
<member name="P:ServiceStack.IQuery.Include">
<summary>
Include aggregate data like Total, COUNT(*), COUNT(DISTINCT Field), Sum(Amount), etc
</summary>
</member>
<member name="P:ServiceStack.IQuery.Fields">
<summary>
The fields to return
</summary>
</member>
<member name="P:ServiceStack.QueryResponse`1.Total">
<summary>
Populate with Include=Total or if registered with: AutoQueryFeature { IncludeTotal = true }
</summary>
</member>
<member name="M:ServiceStack.IRequiresSchema.InitSchema">
<summary>
Unifed API to create any missing Tables, Data Structure Schema
or perform any other tasks dependencies require to run at Startup.
</summary>
</member>
<member name="T:ServiceStack.ISequenceSource">
<summary>
Provide unique, incrementing sequences. Used in PocoDynamo.
</summary>
</member>
<member name="T:ServiceStack.IService">
<summary>
Marker interfaces
</summary>
</member>
<member name="T:ServiceStack.IServiceGateway">
<summary>
The minimal API Surface to capture the most common SYNC requests.
Convenience extensions over these core API's available in ServiceGatewayExtensions
</summary>
</member>
<member name="M:ServiceStack.IServiceGateway.Send``1(System.Object)">
<summary>
Normal Request/Reply Services
</summary>
</member>
<member name="M:ServiceStack.IServiceGateway.SendAll``1(System.Collections.Generic.IEnumerable{System.Object})">
<summary>
Auto Batched Request/Reply Requests
</summary>
</member>
<member name="M:ServiceStack.IServiceGateway.Publish(System.Object)">
<summary>
OneWay Service
</summary>
</member>
<member name="M:ServiceStack.IServiceGateway.PublishAll(System.Collections.Generic.IEnumerable{System.Object})">
<summary>
Auto Batched OneWay Requests
</summary>
</member>
<member name="T:ServiceStack.IServiceGatewayAsync">
<summary>
The minimal API Surface to capture the most common ASYNC requests.
Convenience extensions over these core API's available in ServiceGatewayExtensions
</summary>
</member>
<member name="M:ServiceStack.IServiceGatewayAsync.SendAsync``1(System.Object,System.Threading.CancellationToken)">
<summary>
Normal Request/Reply Services
</summary>
</member>
<member name="M:ServiceStack.IServiceGatewayAsync.SendAllAsync``1(System.Collections.Generic.IEnumerable{System.Object},System.Threading.CancellationToken)">
<summary>
Auto Batched Request/Reply Requests
</summary>
</member>
<member name="M:ServiceStack.IServiceGatewayAsync.PublishAsync(System.Object,System.Threading.CancellationToken)">
<summary>
OneWay Service
</summary>
</member>
<member name="M:ServiceStack.IServiceGatewayAsync.PublishAllAsync(System.Collections.Generic.IEnumerable{System.Object},System.Threading.CancellationToken)">
<summary>
Auto Batched OneWay Requests
</summary>
</member>
<member name="T:ServiceStack.Logging.GenericLogger">
<summary>
Helper ILog implementation that reduces effort to extend or use without needing to impl each API
</summary>
</member>
<member name="M:ServiceStack.Logging.GenericLogger.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="!:ServiceStack.Logging.DebugLogger"/> class.
</summary>
</member>
<member name="M:ServiceStack.Logging.GenericLogger.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="!:ServiceStack.Logging.DebugLogger"/> class.
</summary>
</member>
<member name="M:ServiceStack.Logging.GenericLogger.Log(System.Object,System.Exception)">
<summary>
Logs the specified message.
</summary>
</member>
<member name="M:ServiceStack.Logging.GenericLogger.LogFormat(System.Object,System.Object[])">
<summary>
Logs the format.
</summary>
</member>
<member name="M:ServiceStack.Logging.GenericLogger.Log(System.Object)">
<summary>
Logs the specified message.
</summary>
</member>
<member name="T:ServiceStack.Logging.ILog">
<summary>
Logs a message in a running application
</summary>
</member>
<member name="P:ServiceStack.Logging.ILog.IsDebugEnabled">
<summary>
Gets or sets a value indicating whether this instance is debug enabled.
</summary>
<value>
<c>true</c> if this instance is debug enabled; otherwise, <c>false</c>.
</value>
</member>
<member name="M:ServiceStack.Logging.ILog.Debug(System.Object)">
<summary>
Logs a Debug message.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:ServiceStack.Logging.ILog.Debug(System.Object,System.Exception)">
<summary>
Logs a Debug message and exception.
</summary>
<param name="message">The message.</param>
<param name="exception">The exception.</param>
</member>
<member name="M:ServiceStack.Logging.ILog.DebugFormat(System.String,System.Object[])">
<summary>
Logs a Debug format message.
</summary>
<param name="format">The format.</param>
<param name="args">The args.</param>
</member>
<member name="M:ServiceStack.Logging.ILog.Error(System.Object)">
<summary>
Logs a Error message.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:ServiceStack.Logging.ILog.Error(System.Object,System.Exception)">
<summary>
Logs a Error message and exception.
</summary>
<param name="message">The message.</param>
<param name="exception">The exception.</param>
</member>
<member name="M:ServiceStack.Logging.ILog.ErrorFormat(System.String,System.Object[])">
<summary>
Logs a Error format message.
</summary>
<param name="format">The format.</param>
<param name="args">The args.</param>
</member>
<member name="M:ServiceStack.Logging.ILog.Fatal(System.Object)">
<summary>
Logs a Fatal message.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:ServiceStack.Logging.ILog.Fatal(System.Object,System.Exception)">
<summary>
Logs a Fatal message and exception.
</summary>
<param name="message">The message.</param>
<param name="exception">The exception.</param>
</member>
<member name="M:ServiceStack.Logging.ILog.FatalFormat(System.String,System.Object[])">
<summary>
Logs a Error format message.
</summary>
<param name="format">The format.</param>
<param name="args">The args.</param>
</member>
<member name="M:ServiceStack.Logging.ILog.Info(System.Object)">
<summary>
Logs an Info message and exception.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:ServiceStack.Logging.ILog.Info(System.Object,System.Exception)">
<summary>
Logs an Info message and exception.
</summary>
<param name="message">The message.</param>
<param name="exception">The exception.</param>
</member>
<member name="M:ServiceStack.Logging.ILog.InfoFormat(System.String,System.Object[])">
<summary>
Logs an Info format message.
</summary>
<param name="format">The format.</param>
<param name="args">The args.</param>
</member>
<member name="M:ServiceStack.Logging.ILog.Warn(System.Object)">
<summary>
Logs a Warning message.
</summary>
<param name="message">The message.</param>
</member>
<member name="M:ServiceStack.Logging.ILog.Warn(System.Object,System.Exception)">
<summary>
Logs a Warning message and exception.
</summary>
<param name="message">The message.</param>
<param name="exception">The exception.</param>
</member>
<member name="M:ServiceStack.Logging.ILog.WarnFormat(System.String,System.Object[])">
<summary>
Logs a Warning format message.
</summary>
<param name="format">The format.</param>
<param name="args">The args.</param>
</member>
<member name="T:ServiceStack.Logging.ILogFactory">
<summary>
Factory to create ILog instances
</summary>
</member>
<member name="M:ServiceStack.Logging.ILogFactory.GetLogger(System.Type)">
<summary>
Gets the logger.
</summary>
</member>
<member name="M:ServiceStack.Logging.ILogFactory.GetLogger(System.String)">
<summary>
Gets the logger.
</summary>
</member>
<member name="M:ServiceStack.Logging.ILogWithContext.PushProperty(System.String,System.Object)">
<summary>
Pushes a property on the current log context, returning an <see cref="T:System.IDisposable"/>
to remove the property again from the async context.
</summary>
<param name="key">Property Name</param>
<param name="value">Property Value</param>
<returns>Interface for popping the property off the stack</returns>
</member>
<member name="M:ServiceStack.Logging.ILogWithContextExtensions.PushProperty(ServiceStack.Logging.ILog,System.String,System.Object)">
<summary>
Pushes a property on the current log context, returning an <see cref="T:System.IDisposable"/>
to remove the property again from the async context.
</summary>
<param name="logger">The logger</param>
<param name="key">Property Name</param>
<param name="value">Property Value</param>
<returns>Interface for popping the property off the stack</returns>
</member>
<member name="M:ServiceStack.Logging.ILogWithException.Debug(System.Exception,System.String,System.Object[])">
<summary>
Logs a Debug format message and exception.
</summary>
<param name="exception">Exception related to the event.</param>
<param name="format">The format.</param>
<param name="args">The args.</param>
</member>
<member name="M:ServiceStack.Logging.ILogWithException.Info(System.Exception,System.String,System.Object[])">
<summary>
Logs an Info format message and exception.
</summary>
<param name="exception">Exception related to the event.</param>
<param name="format">The format.</param>
<param name="args">The args.</param>
</member>
<member name="M:ServiceStack.Logging.ILogWithException.Warn(System.Exception,System.String,System.Object[])">
<summary>
Logs a Warn format message and exception.
</summary>
<param name="exception">Exception related to the event.</param>
<param name="format">The format.</param>
<param name="args">The args.</param>
</member>
<member name="M:ServiceStack.Logging.ILogWithException.Error(System.Exception,System.String,System.Object[])">
<summary>
Logs an Error format message and exception.
</summary>
<param name="exception">Exception related to the event.</param>
<param name="format">The format.</param>
<param name="args">The args.</param>
</member>
<member name="M:ServiceStack.Logging.ILogWithException.Fatal(System.Exception,System.String,System.Object[])">
<summary>
Logs a Fatal format message and exception.
</summary>
<param name="exception">Exception related to the event.</param>
<param name="format">The format.</param>
<param name="args">The args.</param>
</member>
<member name="M:ServiceStack.Logging.ILogWithExceptionExtensions.Debug(ServiceStack.Logging.ILog,System.Exception,System.String,System.Object[])">
<summary>
Logs a Debug format message and exception.
</summary>
<param name="logger">The logger</param>
<param name="exception">Exception related to the event.</param>
<param name="format">The format.</param>
<param name="args">The args.</param>
</member>
<member name="M:ServiceStack.Logging.ILogWithExceptionExtensions.Info(ServiceStack.Logging.ILog,System.Exception,System.String,System.Object[])">
<summary>
Logs an Info format message and exception.
</summary>
<param name="logger">The logger</param>
<param name="exception">Exception related to the event.</param>
<param name="format">The format.</param>
<param name="args">The args.</param>
</member>
<member name="M:ServiceStack.Logging.ILogWithExceptionExtensions.Warn(ServiceStack.Logging.ILog,System.Exception,System.String,System.Object[])">
<summary>
Logs a Warn format message and exception.
</summary>
<param name="logger">The logger</param>
<param name="exception">Exception related to the event.</param>
<param name="format">The format.</param>
<param name="args">The args.</param>
</member>
<member name="M:ServiceStack.Logging.ILogWithExceptionExtensions.Error(ServiceStack.Logging.ILog,System.Exception,System.String,System.Object[])">
<summary>
Logs an Error format message and exception.
</summary>
<param name="logger">The logger</param>
<param name="exception">Exception related to the event.</param>
<param name="format">The format.</param>
<param name="args">The args.</param>
</member>
<member name="M:ServiceStack.Logging.ILogWithExceptionExtensions.Fatal(ServiceStack.Logging.ILog,System.Exception,System.String,System.Object[])">
<summary>
Logs a Fatal format message and exception.
</summary>
<param name="logger">The logger</param>
<param name="exception">Exception related to the event.</param>
<param name="format">The format.</param>
<param name="args">The args.</param>
</member>
<member name="T:ServiceStack.Logging.LogManager">
<summary>
Provides access to log factories and loggers. This class cannot be inherited.
</summary>
</member>
<member name="P:ServiceStack.Logging.LogManager.LogFactory">
<summary>
Gets or sets the log factory used to create loggers. The default value is
<see cref="T:ServiceStack.Logging.NullLogFactory"/>.
</summary>
</member>
<member name="T:ServiceStack.Logging.NullLogFactory">
<summary>
Creates a Debug Logger, that logs all messages to: System.Diagnostics.Debug
Made public so its testable
</summary>
</member>
<member name="T:ServiceStack.Logging.NullLogger">
<summary>
Default logger is to System.Diagnostics.Debug.Print
Made public so its testable
</summary>
</member>
<member name="M:ServiceStack.Logging.NullLogger.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="!:DebugLogger"/> class.
</summary>
</member>
<member name="M:ServiceStack.Logging.NullLogger.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="!:DebugLogger"/> class.
</summary>
</member>
<member name="M:ServiceStack.Logging.StringBuilderLog.Log(System.Object,System.Exception)">
<summary>
Logs the specified message.
</summary>
</member>
<member name="M:ServiceStack.Logging.StringBuilderLog.LogFormat(System.Object,System.Object[])">
<summary>
Logs the format.
</summary>
</member>
<member name="M:ServiceStack.Logging.StringBuilderLog.Log(System.Object)">
<summary>
Logs the specified message.
</summary>
<param name="message">The message.</param>
</member>
<member name="T:ServiceStack.Logging.StringBuilderLogFactory">
<summary>
StringBuilderLog writes to shared StringBuffer.
Made public so its testable
</summary>
</member>
<member name="T:ServiceStack.Logging.TestLogFactory">
<summary>
Creates a test Logger, that stores all log messages in a member list
</summary>
</member>
<member name="T:ServiceStack.Logging.TestLogger">
<summary>
Tests logger which stores all log messages in a member list which can be examined later