Subversion Repository Public Repository

ChrisCompleteCodeTrunk

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
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>DocuWare.RestClient</name>
    </assembly>
    <members>
        <member name="T:DocuWare.Services.Http.Client.Connector">
            <summary>
            Some helpers to connect to a service.
            </summary>
        </member>
        <member name="M:DocuWare.Services.Http.Client.Connector.CreateDefaultRequestHandler">
            <summary>
            Creates the default request handler.
            </summary>
            <returns>A web request handler set up to use cookies and GZIP compression.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.Connector.CreateConnection(System.String)">
            <summary>
            Creates the connection with the specified base URI.
            </summary>
            <param name="baseUri">The base URI.</param>
            <returns>A HTTP client proxy handling further request to the specified URI.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.Connector.CreateConnection(System.Uri)">
            <summary>
            Creates the connection with the specified base URI.
            </summary>
            <param name="baseUri">The base URI.</param>
            <returns>A HTTP client proxy handling further request to the specified URI.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.Connector.CreateConnection(System.Uri,System.Net.Http.HttpMessageHandler)">
            <summary>
            Creates the connection with the specified base URI.
            </summary>
            <param name="baseUri">The base URI.</param>
            <param name="clientHandler">The client handler.</param>
            <returns>A HTTP client proxy handling further request to the specified URI.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.Connector.CreateConnection(System.String,System.Net.Http.HttpMessageHandler)">
            <summary>
            Creates the connection with the specified base URI.
            </summary>
            <param name="baseUri">The base URI.</param>
            <param name="clientHandler">The client handler.</param>
            <returns>A HTTP client proxy handling further request to the specified URI.</returns>
        </member>
        <member name="T:DocuWare.Services.Http.Client.ContentHelper">
            <summary>
            Some helpers for handling content.
            </summary>
        </member>
        <member name="M:DocuWare.Services.Http.Client.ContentHelper.CreateXmlContent``1(``0,System.String)">
            <summary>
            Creates the content of the XML.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="o">The o.</param>
            <param name="contentType">Type of the content.</param>
            <returns></returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.ContentHelper.CreateFileContent(System.IO.FileInfo,System.String)">
            <summary>
            Creates the content of the file.
            </summary>
            <param name="fileInfo">The file info.</param>
            <param name="contentType">Type of the content.</param>
            <returns></returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.ContentHelper.CreateContent(System.Byte[],System.String)">
            <summary>
            Creates the content of the file.
            </summary>
            <param name="data">The body data.</param>
            <param name="contentType">Type of the content.</param>
            <returns></returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.ContentHelper.CreateFileContent(System.IO.Stream,System.String)">
            <summary>
            Creates the content of the file.
            </summary>
            <param name="stream">The stream.</param>
            <param name="contentType">Type of the content.</param>
            <returns></returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.ContentHelper.CreateContent(System.Xml.Linq.XNode,System.String)">
            <summary>
            Creates the content.
            </summary>
            <param name="xmlNode">The XML node.</param>
            <param name="requestContentType">Type of the request content.</param>
            <returns></returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.ContentHelper.AddFileName(System.Net.Http.HttpContent,System.String,System.String)">
            <summary>
            Adds the name of the file.
            </summary>
            <param name="content">The content.</param>
            <param name="name">The name.</param>
            <param name="fileName">Name of the file.</param>
            <returns></returns>
        </member>
        <member name="T:DocuWare.Services.Http.Client.ExceptionExtensions">
            <summary>
            Extensions for <see cref="T:System.AggregateException"/>
            </summary>
        </member>
        <member name="M:DocuWare.Services.Http.Client.ExceptionExtensions.GetRealException(System.AggregateException)">
            <summary>
            Gets the real exception of an <see cref="T:System.AggregateException"/> instance.
            </summary>
            <param name="aggregateException">The aggregate exception.</param>
            <returns>
            The first non-<see cref="T:System.AggregateException"/> in the hierarchy of aggregated exceptions.
            </returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.ExceptionExtensions.GetInnerMostException(System.Exception)">
            <summary>
            Gets the inner most exception.
            </summary>
            <param name="exception">The exception.</param>
            <returns>The innermost exception.</returns>
        </member>
        <member name="T:DocuWare.Services.Http.Client.UriTemplateExtensions">
            <summary>
            Helpers for handling URI templates.
            </summary>
        </member>
        <member name="M:DocuWare.Services.Http.Client.UriTemplateExtensions.FindTemplate(System.Collections.Generic.IEnumerable{DocuWare.Services.Http.Client.UriTemplateDescription},System.String)">
            <summary>
            Finds the specified URI template from the list.
            </summary>
            <param name="templates">The templates.</param>
            <param name="templateName">Name of the template.</param>
            <returns></returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.UriTemplateExtensions.CreateUrl(System.Collections.Generic.IEnumerable{DocuWare.Services.Http.Client.UriTemplateDescription},System.String,System.Object)">
            <summary>
            Creates the URL for the specified template and binds parameters.
            </summary>
            <param name="templates">The templates.</param>
            <param name="templateName">Name of the template.</param>
            <param name="parameters">The parameters.</param>
            <returns>The URL with bound parameters.</returns>
            <exception cref="T:System.ArgumentException">The specified template '{0}' cannot be found.;templateName</exception>
        </member>
        <member name="M:DocuWare.Services.Http.Client.UriTemplateExtensions.CreateUrl(System.Collections.Generic.IEnumerable{DocuWare.Services.Http.Client.UriTemplateDescription},System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}})">
            <summary>
            Creates the URL for the specified template and binds parameters.
            </summary>
            <param name="templates">The templates.</param>
            <param name="templateName">Name of the template.</param>
            <param name="parameters">The parameters.</param>
            <returns>The URL with bound parameters.</returns>
            <exception cref="T:System.ArgumentException">The specified template '{0}' cannot be found.;templateName</exception>
        </member>
        <member name="T:DocuWare.Services.Http.DeserializedHttpResponse">
            <summary>
            Provides utility methods deserializing HTTP responses.
            </summary>
        </member>
        <member name="M:DocuWare.Services.Http.DeserializedHttpResponse.Create``1(System.Net.Http.HttpResponseMessage,``0)">
            <summary>
            Creates the specified response.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="content">The deserialized content.</param>
            <param name="response">The response.</param>
            <returns></returns>
        </member>
        <member name="M:DocuWare.Services.Http.DeserializedHttpResponse.Create``1(System.Net.Http.HttpResponseMessage)">
            <summary>
            Creates the specified response.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="response">The response.</param>
            <returns></returns>
        </member>
        <member name="M:DocuWare.Services.Http.DeserializedHttpResponse.CreateAsync``1(System.Net.Http.HttpResponseMessage)">
            <summary>
            Creates the specified response asynchronously.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="response">The response.</param>
            <returns></returns>
        </member>
        <member name="P:DocuWare.Services.Http.DeserializedHttpResponse.Type2Serializer">
            <summary>
            Maps types to its XML serializers.
            </summary>
        </member>
        <member name="T:DocuWare.Services.Http.DeserializedHttpResponseExtensions">
            <summary>
            
            </summary>
        </member>
        <member name="M:DocuWare.Services.Http.DeserializedHttpResponseExtensions.ToContent``1(System.Threading.Tasks.Task{DocuWare.Services.Http.DeserializedHttpResponse{``0}})">
            <summary>
            Returns the content asynchronously.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="response"></param>
            <returns></returns>
        </member>
        <member name="M:DocuWare.Services.Http.DeserializedHttpResponseExtensions.GetFileName(DocuWare.Services.Http.DeserializedHttpResponse{System.IO.Stream})">
            <summary>
            Gets the file name of the HTTP response.
            </summary>
            <param name="response">The response.</param>
            <returns>The file name of the HTTP response.</returns>
            <exception cref="T:System.ArgumentException">Response does not contain file name header.</exception>
            <exception cref="T:System.ArgumentNullException">If <paramref name="response"/> is <c>null</c>.</exception>
        </member>
        <member name="M:DocuWare.Services.Http.DeserializedHttpResponseExtensions.GetFileNameSafe(DocuWare.Services.Http.DeserializedHttpResponse{System.IO.Stream})">
            <summary>
            Gets the file name of the HTTP response.
            </summary>
            <param name="response">The response.</param>
            <returns>
            The file name of the HTTP response. If the response does not contain a file name, <c>null</c> is returned.
            </returns>
            <exception cref="T:System.ArgumentNullException">If <paramref name="response"/> is <c>null</c>.</exception>
        </member>
        <member name="T:DocuWare.Services.Http.DeserializedHttpResponse`1">
            <summary>
            Handles a deserialized HTTP response.
            </summary>
            <typeparam name="T">The type of the encapsulated response.</typeparam>
            <remarks>
            This class encapsulates a HTTP response. It contains the response headers and the deserialized body. Note that different values of <typeparamref name="T"/> causes different handling:
            <list type="bullet">
            <item>A <see cref="T:System.String"/> will cause the HTTP response message content to be read as string.</item>
            <item>A <see cref="T:System.Xml.Linq.XElement"/> will cause the HTTP response message content to be read as <see cref="T:System.Xml.Linq.XElement"/>. There might exceptions be thrown in case the response content is not a valid XML.</item>
            <item>A <see cref="T:System.IO.Stream"/> will cause the HTTP response message content to be read as <see cref="T:System.IO.Stream"/>. The response content is read streaming, that is, you can consume arbitrary large streams.
            You should always call <see cref="M:System.IO.Stream.Close"/> after you finished reading the stream in order to close the HTTP connection.
            </item>
            <item>FOr any other values of <typeparamref name="T"/> the response content is deserialized into an intance of type <typeparamref name="T"/>. If the deserialization step fails, the <see cref="T:System.Xml.Serialization.XmlSerializer"/>
            throws exceptions.</item>
            </list>
            All exceptions thrown while the response is deserialized, are wrapped into an <see cref="T:DocuWare.Services.Http.Client.HttpClientRequestException"/> object.
            </remarks>
        </member>
        <member name="M:DocuWare.Services.Http.DeserializedHttpResponse`1.#ctor(System.Net.Http.HttpResponseMessage,`0)">
            <summary>
            Initializes a new instance of the <see cref="T:DocuWare.Services.Http.DeserializedHttpResponse`1"/> class.
            </summary>
            <param name="responseMessage">The response message.</param>
            <param name="result">The result.</param>
        </member>
        <member name="M:DocuWare.Services.Http.DeserializedHttpResponse`1.op_Implicit(DocuWare.Services.Http.DeserializedHttpResponse{`0})~`0">
            <summary>
            Converts the specified response.
            </summary>
            <param name="response">The response.</param>
            <returns>The content of the response.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.DeserializedHttpResponse`1.Finalize">
            <summary>
            Finalizes an instance of the <see cref="T:DocuWare.Services.Http.DeserializedHttpResponse`1"/> class.
            </summary>
        </member>
        <member name="M:DocuWare.Services.Http.DeserializedHttpResponse`1.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources.
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="M:DocuWare.Services.Http.DeserializedHttpResponse`1.Dispose">
            <summary>
            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
            </summary>
        </member>
        <member name="P:DocuWare.Services.Http.DeserializedHttpResponse`1.Headers">
            <summary>
            Gets the response headers.
            </summary>
            <value>
            The response headers.
            </value>
        </member>
        <member name="P:DocuWare.Services.Http.DeserializedHttpResponse`1.ContentHeaders">
            <summary>
            Gets the content headers.
            </summary>
            <value>
            The content headers.
            </value>
        </member>
        <member name="P:DocuWare.Services.Http.DeserializedHttpResponse`1.StatusCode">
            <summary>
            Gets the response status code.
            </summary>
            <value>
            The response status code.
            </value>
        </member>
        <member name="P:DocuWare.Services.Http.DeserializedHttpResponse`1.IsSuccessStatusCode">
            <summary>
            Gets a value indicating whether the response was successful.
            </summary>
            <value>
            <c>true</c> if the response was successful; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="P:DocuWare.Services.Http.DeserializedHttpResponse`1.RequestUri">
            <summary>
            Gets the request URI.
            </summary>
            <value>
            The request URI.
            </value>
        </member>
        <member name="P:DocuWare.Services.Http.DeserializedHttpResponse`1.Exception">
            <summary>
            Gets the exception in case the request failed.
            </summary>
            <value>
            The exception.
            </value>
        </member>
        <member name="P:DocuWare.Services.Http.DeserializedHttpResponse`1.Content">
            <summary>
            Gets the deserialized content of the response body.
            </summary>
            <value>
            The deserialized content of the response body.
            </value>
            <exception cref="T:DocuWare.Services.Http.Client.HttpClientRequestException"></exception>
        </member>
        <member name="T:DocuWare.Services.Http.Client.HttpClientRequestException">
            <summary>
            A client HTTP client exception.
            </summary>
        </member>
        <member name="M:DocuWare.Services.Http.Client.HttpClientRequestException.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
            <PermissionSet>
              <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PathDiscovery="*AllFiles*"/>
              </PermissionSet>
        </member>
        <member name="M:DocuWare.Services.Http.Client.HttpClientRequestException.#ctor(System.Net.Http.HttpResponseMessage)">
            <summary>
            Initializes a new instance of the <see cref="T:DocuWare.Services.Http.Client.HttpClientRequestException"/> class.
            </summary>
            <param name="message">The message.</param>
        </member>
        <member name="M:DocuWare.Services.Http.Client.HttpClientRequestException.#ctor(System.Net.Http.HttpResponseMessage,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:DocuWare.Services.Http.Client.HttpClientRequestException"/> class.
            </summary>
            <param name="message">The message.</param>
            <param name="messageText">The message text.</param>
        </member>
        <member name="M:DocuWare.Services.Http.Client.HttpClientRequestException.#ctor(System.Net.Http.HttpResponseMessage,System.Exception)">
            <summary>
            Initializes a new instance of the <see cref="T:DocuWare.Services.Http.Client.HttpClientRequestException"/> class.
            </summary>
            <param name="message">The message.</param>
            <param name="inner">The inner.</param>
        </member>
        <member name="M:DocuWare.Services.Http.Client.HttpClientRequestException.Create(System.Net.Http.HttpResponseMessage,System.Exception)">
            <summary>
            Creates the specified message.
            </summary>
            <param name="message">The message.</param>
            <param name="inner">The inner.</param>
            <returns></returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.HttpClientRequestException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Initializes a new instance of the <see cref="T:DocuWare.Services.Http.Client.HttpClientRequestException"/> class.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
            <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that contains contextual information about the source or destination.</param>
        </member>
        <member name="P:DocuWare.Services.Http.Client.HttpClientRequestException.StatusCode">
            <summary>
            Gets the status code.
            </summary>
            <value>
            The status code.
            </value>
        </member>
        <member name="P:DocuWare.Services.Http.Client.HttpClientRequestException.ReasonPhrase">
            <summary>
            Gets the reason phrase.
            </summary>
            <value>
            The reason phrase.
            </value>
        </member>
        <member name="P:DocuWare.Services.Http.Client.HttpClientRequestException.Method">
            <summary>
            Gets the method.
            </summary>
            <value>
            The method.
            </value>
        </member>
        <member name="P:DocuWare.Services.Http.Client.HttpClientRequestException.Uri">
            <summary>
            Gets the URI.
            </summary>
            <value>
            The URI.
            </value>
        </member>
        <member name="P:DocuWare.Services.Http.Client.HttpClientRequestException.Message">
            <summary>
            Gets a message that describes the current exception.
            </summary>
            <returns>The error message that explains the reason for the exception, or an empty string("").</returns>
        </member>
        <member name="P:DocuWare.Services.Http.Client.HttpClientRequestException.Error">
            <summary>
            Gets the error.
            </summary>
            <value>
            The error.
            </value>
        </member>
        <member name="P:DocuWare.Services.Http.Client.HttpClientRequestException.HtmlError">
            <summary>
            Gets the HTML error.
            </summary>
            <value>
            The HTML error.
            </value>
        </member>
        <member name="T:DocuWare.Services.Http.Client.IRelations">
            <summary>
            Handles relations between objects.
            </summary>
        </member>
        <member name="P:DocuWare.Services.Http.Client.IRelations.Links">
            <summary>
            Gets the links.
            </summary>
            <value>
            The links.
            </value>
        </member>
        <member name="T:DocuWare.Services.Http.Client.IRelationsWithProxy">
            <summary>
            Contains a proxy for following relations.
            </summary>
        </member>
        <member name="P:DocuWare.Services.Http.Client.IRelationsWithProxy.Proxy">
            <summary>
            Gets or sets the proxy.
            </summary>
            <value>
            The proxy.
            </value>
        </member>
        <member name="T:DocuWare.Services.Http.Client.RelationsWithProxyExtensions">
            <summary>
            Extensions
            </summary>
        </member>
        <member name="M:DocuWare.Services.Http.Client.RelationsWithProxyExtensions.GetBaseUri(DocuWare.Services.Http.Client.IRelationsWithProxy)">
            <summary>
            Gets the base URI of the specified relations instance.
            </summary>
            <param name="relationsWithProxy">The relations with proxy.</param>
            <returns>The base URI of the specified relations instance.</returns>
        </member>
        <member name="T:DocuWare.Services.Http.Client.MethodInvocation">
            <summary>
            Helpers for calling HTTP methods.
            </summary>
        </member>
        <member name="M:DocuWare.Services.Http.Client.MethodInvocation.CreateDeserializedResponse``1(System.Threading.Tasks.Task{System.Net.Http.HttpResponseMessage})">
            <summary>
            Creates the deserialized response.
            </summary>
            <typeparam name="TResponse">The type of the response.</typeparam>
            <param name="response">The response.</param>
            <returns>A task executing the request and returning the response.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.MethodInvocation.CreateDeserializedResponse``1(System.Threading.Tasks.Task{System.Net.Http.HttpResponseMessage},System.Net.Http.HttpClient)">
            <summary>
            Creates the deserialized response.
            </summary>
            <typeparam name="TResponse">The type of the response.</typeparam>
            <param name="response">The response.</param>
            <param name="proxy">The proxy.</param>
            <returns>A task executing the request and returning the response.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.MethodInvocation.CreateAcceptTypeFromString(System.String[])">
            <summary>
            Creates the accept type from string.
            </summary>
            <param name="acceptType">Type of the accept.</param>
            <returns></returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.MethodInvocation.Send``1(DocuWare.Services.Http.Client.IRelations,System.Net.Http.HttpMethod,System.Net.Http.HttpClient,System.String,System.String[])">
            <summary>
            Sends a message to the specified HTTP client.
            </summary>
            <typeparam name="TResponse">The type of the response.</typeparam>
            <param name="relations">The relations.</param>
            <param name="method">The method.</param>
            <param name="httpClient">The HTTP client.</param>
            <param name="relationName">Name of the relation.</param>
            <param name="acceptType">Type of the accept.</param>
            <returns>A task executing the request and returning the response.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.MethodInvocation.Send``1(DocuWare.Services.Http.Client.IRelationsWithProxy,System.Net.Http.HttpMethod,System.String,System.String[])">
            <summary>
            Sends a message to the specified proxy.
            </summary>
            <typeparam name="TResponse">The type of the response.</typeparam>
            <param name="relations">The relations.</param>
            <param name="method">The method.</param>
            <param name="relationName">Name of the relation.</param>
            <param name="acceptType">Type of the accept.</param>
            <returns>A task executing the request and returning the response.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.MethodInvocation.Send``1(System.Net.Http.HttpClient,System.String,System.Net.Http.HttpMethod,System.String[])">
            <summary>
            Sends a message to the specified HTTP client.
            </summary>
            <param name="httpClient">The HTTP client.</param>
            <typeparam name="TResponse">The type of the response.</typeparam>
            <param name="url">The url.</param>
            <param name="method">The method.</param>
            <param name="acceptType">Type of the accept.</param>
            <returns>A task executing the request and returning the response.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.MethodInvocation.Send``2(DocuWare.Services.Http.Client.IRelations,System.Net.Http.HttpClient,System.String,System.Net.Http.HttpMethod,System.String,``1,System.String)">
            <summary>
            Sends a message to the specified HTTP client.
            </summary>
            <typeparam name="TResponse">The type of the response.</typeparam>
            <typeparam name="TRequest">The type of the request.</typeparam>
            <param name="relations">The relations.</param>
            <param name="httpClient">The HTTP client.</param>
            <param name="relationName">Name of the relation.</param>
            <param name="method">The method.</param>
            <param name="requestContentType">Type of the request content.</param>
            <param name="dataToSend">The data to send.</param>
            <param name="acceptType">Type of the accept.</param>
            <returns>A task executing the request and returning the response.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.MethodInvocation.Send``2(DocuWare.Services.Http.Client.IRelationsWithProxy,System.String,System.Net.Http.HttpMethod,System.String,``1,System.String)">
            <summary>
            Sends a message to the specified HTTP client.
            </summary>
            <typeparam name="TResponse">The type of the response.</typeparam>
            <typeparam name="TRequest">The type of the request.</typeparam>
            <param name="relations">The relations.</param>
            <param name="relationName">Name of the relation.</param>
            <param name="method">The method.</param>
            <param name="requestContentType">Type of the request content.</param>
            <param name="dataToSend">The data to send.</param>
            <param name="acceptType">Type of the accept.</param>
            <returns>A task executing the request and returning the response.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.MethodInvocation.Send``2(System.Net.Http.HttpClient,System.String,System.Net.Http.HttpMethod,System.String,``1,System.String)">
            <summary>
            Sends a message to the specified HTTP client.
            </summary>
            <typeparam name="TResponse">The type of the response.</typeparam>
            <typeparam name="TRequest">The type of the request.</typeparam>
            <param name="httpClient">The HTTP client.</param>
            <param name="uri">The URI.</param>
            <param name="method">The method.</param>
            <param name="requestContentType">Type of the request content.</param>
            <param name="dataToSend">The data to send.</param>
            <param name="acceptType">Type of the accept.</param>
            <returns>A task executing the request and returning the response.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.MethodInvocation.Send``1(System.Net.Http.HttpClient,System.String,System.Net.Http.HttpMethod,System.Net.Http.HttpContent,System.String)">
            <summary>
            Sends a message to the specified HTTP client.
            </summary>
            <typeparam name="TResponse">The type of the response.</typeparam>
            <param name="httpClient">The HTTP client.</param>
            <param name="uri">The URI.</param>
            <param name="method">The method.</param>
            <param name="dataToSend">The content to send.</param>
            <param name="acceptType">Type of the accept.</param>
            <returns>A task executing the request and returning the response.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.MethodInvocation.Send``1(DocuWare.Services.Http.Client.IRelationsWithProxy,System.String,System.Net.Http.HttpMethod,System.Net.Http.HttpContent,System.String)">
            <summary>
            Sends a message to the specified HTTP client.
            </summary>
            <typeparam name="TResponse">The type of the response.</typeparam>
            <param name="relations">The relations.</param>
            <param name="relationName">Name of the relation.</param>
            <param name="method">The method.</param>
            <param name="dataToSend">The data to send.</param>
            <param name="acceptType">Type of the accept.</param>
            <returns>A task executing the request and returning the response.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.MethodInvocation.CreateMessageBody``1(``0,System.String)">
            <summary>
            Creates the message body.
            </summary>
            <typeparam name="TRequest">The type of the request.</typeparam>
            <param name="dataToSend">The data to send.</param>
            <param name="requestContentType">Type of the request content.</param>
            <returns></returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.MethodInvocation.Get``1(DocuWare.Services.Http.Client.IRelations,System.Net.Http.HttpClient,System.String,System.String[])">
            <summary>
            Sends a HTTP GET message to the specified HTTP client.
            </summary>
            <typeparam name="TResponse">The type of the response.</typeparam>
            <param name="relations">The relations.</param>
            <param name="httpClient">The HTTP client.</param>
            <param name="relationName">Name of the relation.</param>
            <param name="acceptType">Type of the accept.</param>
            <returns>A task executing the request and returning the response.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.MethodInvocation.Get``1(DocuWare.Services.Http.Client.IRelationsWithProxy,System.String,System.String[])">
            <summary>
            Sends a HTTP GET message to the specified HTTP client.
            </summary>
            <typeparam name="TResponse">The type of the response.</typeparam>
            <param name="relations">The relations.</param>
            <param name="relationName">Name of the relation.</param>
            <param name="acceptType">Type of the accept.</param>
            <returns>A task executing the request and returning the response.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.MethodInvocation.Delete``1(DocuWare.Services.Http.Client.IRelations,System.Net.Http.HttpClient,System.String,System.String[])">
            <summary>
            Sends a HTTP DELETE message to the specified HTTP client.
            </summary>
            <typeparam name="TResponse">The type of the response.</typeparam>
            <param name="relations">The relations.</param>
            <param name="httpClient">The HTTP client.</param>
            <param name="relationName">Name of the relation.</param>
            <param name="acceptType">Type of the accept.</param>
            <returns>A task executing the request and returning the response.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.MethodInvocation.Delete``1(DocuWare.Services.Http.Client.IRelationsWithProxy,System.String,System.String[])">
            <summary>
            Sends a HTTP DELETE message to the specified HTTP client.
            </summary>
            <typeparam name="TResponse">The type of the response.</typeparam>
            <param name="relations">The relations.</param>
            <param name="relationName">Name of the relation.</param>
            <param name="acceptType">Type of the accept.</param>
            <returns>A task executing the request and returning the response.</returns>
        </member>
        <member name="T:DocuWare.Services.Http.Client.RelationExtension">
            <summary>
            Helpers for handling links.
            </summary>
        </member>
        <member name="M:DocuWare.Services.Http.Client.RelationExtension.GetLink(System.Collections.Generic.IEnumerable{DocuWare.Services.Http.Client.Link},System.String)">
            <summary>
            Gets the link by its name.
            </summary>
            <param name="links">The links.</param>
            <param name="relationName">Name of the relation.</param>
            <returns>The link, if it exists; <c>null</c> otherwise.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.RelationExtension.GetLink(DocuWare.Services.Http.Client.IRelations,System.String)">
            <summary>
            Gets the link by its name.
            </summary>
            <param name="linkable">The linkable.</param>
            <param name="relationName">Name of the relation.</param>
            <returns>The link, if it exists; <c>null</c> otherwise.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.RelationExtension.GetRelationUri(DocuWare.Services.Http.Client.IRelations,System.String)">
            <summary>
            Gets the URI of the relation specified by the name.
            </summary>
            <param name="relations">The relations.</param>
            <param name="relationName">Name of the relation.</param>
            <returns>The link, if it exists; <c>null</c> otherwise.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.RelationExtension.GetRelationUriOrThrow(DocuWare.Services.Http.Client.IRelations,System.String)">
            <summary>
            Gets the URI of the relation specified by the name.
            </summary>
            <param name="relations">The relations.</param>
            <param name="relationName">Name of the relation.</param>
            <returns></returns>
            <exception cref="T:System.ArgumentException">The specified link is not found.</exception>
        </member>
        <member name="M:DocuWare.Services.Http.Client.RelationExtension.HasRelationUri(DocuWare.Services.Http.Client.IRelations,System.String)">
            <summary>
            Determines whether the specified link exists.
            </summary>
            <param name="relations">The relations.</param>
            <param name="relationName">Name of the relation.</param>
            <returns>
              <c>true</c> if the specified link exists; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="T:DocuWare.Services.Http.Client.Link">
            <remarks/>
        </member>
        <member name="M:DocuWare.Services.Http.Client.Link.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="P:DocuWare.Services.Http.Client.Link.rel">
            <summary>
            The relation name of this link.
            </summary>
        </member>
        <member name="P:DocuWare.Services.Http.Client.Link.href">
            <summary>
            The URI this link points to.
            </summary>
        </member>
        <member name="T:DocuWare.Services.Http.Client.Links">
            <remarks/>
            <summary>
            A collection of links (relations).
            </summary>
        </member>
        <member name="T:DocuWare.Services.Http.Client.Error">
            <remarks/>
        </member>
        <member name="M:DocuWare.Services.Http.Client.Error.#ctor">
            <summary>
            Creates a new instance of this class
            </summary>
        </member>
        <member name="T:DocuWare.Services.Http.Client.UriTemplateDescriptions">
            <remarks/>
            <summary>
            A collection of uri templates.
            </summary>
        </member>
        <member name="T:DocuWare.Services.Http.Client.UriTemplateDescription">
            <remarks/>
        </member>
        <member name="P:DocuWare.Services.Http.Client.UriTemplateDescription.Name">
            <summary>
            The name of this template.
            </summary>
        </member>
        <member name="P:DocuWare.Services.Http.Client.UriTemplateDescription.UriPattern">
            <summary>
            The URI template.
            </summary>
        </member>
        <member name="P:DocuWare.Services.Http.Client.UriTemplateDescription.FurtherReading">
            <summary>
            Gets a link for further readings.
            </summary>
        </member>
        <member name="T:DocuWare.Services.Http.Client.UriTemplateParameter">
            <remarks/>
            <summary>
            Describes a parameter of an URI template.
            </summary>
        </member>
        <member name="M:DocuWare.Services.Http.Client.UriTemplateParameter.#ctor">
            <summary>
            Creates a new instance of this class
            </summary>
        </member>
        <member name="P:DocuWare.Services.Http.Client.UriTemplateParameter.Name">
            <summary>
            The name of this URI parameter.
            </summary>
        </member>
        <member name="P:DocuWare.Services.Http.Client.UriTemplateParameter.IsOptional">
            <summary>
            Gets if the parameter can be ommitted.
            </summary>
        </member>
        <member name="P:DocuWare.Services.Http.Client.UriTemplateParameter.DefaultValue">
            <summary>
            Gets the default parameter in case the parameter is optional and the parameter has a default value.
            </summary>
        </member>
        <member name="P:DocuWare.Services.Http.Client.UriTemplateParameter.FurtherReading">
            <summary>
            Gets a link for further readings.
            </summary>
        </member>
        <member name="P:DocuWare.Services.Http.Client.UriTemplateParameter.Type">
            <summary>
            Gets the type of this parameter.
            </summary>
        </member>
        <member name="P:DocuWare.Services.Http.Client.UriTemplateParameter.TypeDescriptionUri">
            <summary>
            Gets the a link for further readings about this parameter's type.
            </summary>
        </member>
        <member name="T:DocuWare.Services.Http.Client.UriInvocation">
            <remarks/>
        </member>
        <member name="M:DocuWare.Services.Http.Client.UriInvocation.#ctor">
            <summary>
            Creates a new instance of this class
            </summary>
        </member>
        <member name="P:DocuWare.Services.Http.Client.UriInvocation.Tag">
            <summary>
            Application specific tag for the method.
            </summary>
        </member>
        <member name="T:DocuWare.Services.Http.Client.TypeReference">
            <remarks/>
        </member>
        <member name="T:DocuWare.Services.Http.Client.StringWriterUTF8">
            <summary>
            A string write using UTF8 encoding.
            </summary>
        </member>
        <member name="M:DocuWare.Services.Http.Client.StringWriterUTF8.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:DocuWare.Services.Http.Client.StringWriterUTF8"/> class.
            </summary>
        </member>
        <member name="M:DocuWare.Services.Http.Client.StringWriterUTF8.#ctor(System.IFormatProvider)">
            <summary>
            Initializes a new instance of the <see cref="T:DocuWare.Services.Http.Client.StringWriterUTF8"/> class.
            </summary>
            <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> object that controls formatting.</param>
        </member>
        <member name="M:DocuWare.Services.Http.Client.StringWriterUTF8.#ctor(System.Text.StringBuilder,System.IFormatProvider)">
            <summary>
            Initializes a new instance of the <see cref="T:DocuWare.Services.Http.Client.StringWriterUTF8"/> class.
            </summary>
            <param name="sb">The StringBuilder to write to.</param>
            <param name="formatProvider">An <see cref="T:System.IFormatProvider"/> object that controls formatting.</param>
        </member>
        <member name="M:DocuWare.Services.Http.Client.StringWriterUTF8.#ctor(System.Text.StringBuilder)">
            <summary>
            Initializes a new instance of the <see cref="T:DocuWare.Services.Http.Client.StringWriterUTF8"/> class.
            </summary>
            <param name="sb">The StringBuilder to write to.</param>
        </member>
        <member name="P:DocuWare.Services.Http.Client.StringWriterUTF8.Encoding">
            <summary>
            Gets the <see cref="T:System.Text.Encoding" /> in which the output is written.
            </summary>
            <returns>The Encoding in which the output is written.</returns>
        </member>
        <member name="T:DocuWare.Services.Http.Client.UriTemplateResolver">
            <summary>
            Taken from https://raw.github.com/tavis-software/UriTemplates/master/src/UriTemplates/UriTemplate.cs
            but then I modified it...
            </summary>
        </member>
        <member name="T:DocuWare.Services.Http.Client.UriPattern">
            <summary>
            A class for resolving URI pattern.
            </summary>
        </member>
        <member name="M:DocuWare.Services.Http.Client.UriPattern.Resolve(System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.Object}})">
            <summary>
            Resolves the specified pattern.
            </summary>
            <param name="pattern">The pattern.</param>
            <param name="parameters">The parameters as key-value-pairs where the key is the parameter name.</param>
            <returns>The URI created from the specified pattern.</returns>
        </member>
        <member name="T:DocuWare.Services.Http.Client.XmlSerializableExtensions">
            <summary>
            Helpers for the XML serialization of HTTP responses.
            </summary>
        </member>
        <member name="M:DocuWare.Services.Http.Client.XmlSerializableExtensions.ReadAsXmlSerializable``1(System.Net.Http.HttpResponseMessage)">
            <summary>
            Reads the message body as XML.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="httpResponseMessage">The HTTP response message.</param>
            <returns>
            The deserialized response.
            </returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.XmlSerializableExtensions.ReadAsXmlSerializable``1(System.Net.Http.HttpContent)">
            <summary>
            Reads the message body as XML.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="content">The content.</param>
            <returns>The deserialized response.</returns>
        </member>
        <member name="T:DocuWare.Services.Http.Client.XmlSerializerRepository">
            <summary>
            A repository for managing XML serializers.
            </summary>
        </member>
        <member name="M:DocuWare.Services.Http.Client.XmlSerializerRepository.GetSerializer(System.Type)">
            <summary>
            Gets the serializer.
            </summary>
            <param name="type">The type.</param>
            <returns></returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.XmlSerializerRepository.GetSerializer``1">
            <summary>
            Gets the serializer.
            </summary>
            <typeparam name="T"></typeparam>
            <returns></returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.XmlSerializerRepository.ParseFromXmlString``1(System.String)">
            <summary>
            Parses from the specified XML string.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="xml">The XML.</param>
            <returns></returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.XmlSerializerRepository.ParseFromXmlString``1(System.Byte[])">
            <summary>
            Parses from the specified compressed XML string.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="compressedXml">The XML.</param>
            <returns></returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.XmlSerializerRepository.ReadFromStream``1(System.IO.Stream)">
            <summary>
            Reads from stream.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="xml">The XML.</param>
            <returns></returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.XmlSerializerRepository.ToXmlString``1(``0,System.Boolean)">
            <summary>
            Converts an object to an XML string.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="item">The object to convert.</param>
            <param name="encodeWithUtf16">if set to <c>true</c> [encode with UTF16].</param>
            <returns></returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.XmlSerializerRepository.ToCompressedXmlString``1(``0)">
            <summary>
            Converts an object to an compressed XML string.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="item">The object to convert.</param>
            <returns>The array containing the compressed version of the XML string representing the presented item.</returns>
        </member>
        <member name="M:DocuWare.Services.Http.Client.XmlSerializerRepository.Write``1(``0,System.IO.Stream)">
            <summary>
            Serializes  the specified item as XML to the target stream.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="item">The item.</param>
            <param name="target">The target.</param>
        </member>
    </members>
</doc>

Commits for ChrisCompleteCodeTrunk/M3Workflow/M3Workflow.Data/bin/Debug/DocuWare.RestClient.xml

Diff revisions: vs.
Revision Author Commited Message
1 BBDSCHRIS picture BBDSCHRIS Wed 22 Aug, 2018 20:08:03 +0000