杨前锦
2025-05-26 0e9cab9c1424692caa2003ecf6b951d57ffdb765
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.Owin.Hosting</name>
    </assembly>
    <members>
        <member name="T:SharedResourceNamespace.LoaderResources">
            <summary>
              A strongly-typed resource class, for looking up localized strings, etc.
            </summary>
        </member>
        <member name="P:SharedResourceNamespace.LoaderResources.ResourceManager">
            <summary>
              Returns the cached ResourceManager instance used by this class.
            </summary>
        </member>
        <member name="P:SharedResourceNamespace.LoaderResources.Culture">
            <summary>
              Overrides the current thread's CurrentUICulture property for all
              resource lookups using this strongly typed resource class.
            </summary>
        </member>
        <member name="P:SharedResourceNamespace.LoaderResources.AssemblyNotFound">
            <summary>
              Looks up a localized string similar to For the app startup parameter value &apos;{0}&apos;, the assembly &apos;{1}&apos; was not found..
            </summary>
        </member>
        <member name="P:SharedResourceNamespace.LoaderResources.ClassNotFoundInAssembly">
            <summary>
              Looks up a localized string similar to For the app startup parameter value &apos;{0}&apos;, the class &apos;{1}&apos; was not found in assembly &apos;{2}&apos;..
            </summary>
        </member>
        <member name="P:SharedResourceNamespace.LoaderResources.Exception_AttributeNameConflict">
            <summary>
              Looks up a localized string similar to The OwinStartup attribute discovered in assembly &apos;{0}&apos; referencing startup type &apos;{1}&apos; conflicts with the attribute in assembly &apos;{2}&apos; referencing startup type &apos;{3}&apos; because they have the same FriendlyName &apos;{4}&apos;. Remove or rename one of the attributes, or reference the desired type directly..
            </summary>
        </member>
        <member name="P:SharedResourceNamespace.LoaderResources.Exception_StartupTypeConflict">
            <summary>
              Looks up a localized string similar to The discovered startup type &apos;{0}&apos; conflicts with the type &apos;{1}&apos;. Remove or rename one of the types, or reference the desired type directly..
            </summary>
        </member>
        <member name="P:SharedResourceNamespace.LoaderResources.FriendlyNameMismatch">
            <summary>
              Looks up a localized string similar to The OwinStartupAttribute.FriendlyName value &apos;{0}&apos; does not match the given value &apos;{1}&apos; in Assembly &apos;{2}&apos;..
            </summary>
        </member>
        <member name="P:SharedResourceNamespace.LoaderResources.MethodNotFoundInClass">
            <summary>
              Looks up a localized string similar to No &apos;{0}&apos; method was found in class &apos;{1}&apos;..
            </summary>
        </member>
        <member name="P:SharedResourceNamespace.LoaderResources.NoAssemblyWithStartupClass">
            <summary>
              Looks up a localized string similar to No assembly found containing a Startup or [AssemblyName].Startup class..
            </summary>
        </member>
        <member name="P:SharedResourceNamespace.LoaderResources.NoOwinStartupAttribute">
            <summary>
              Looks up a localized string similar to No assembly found containing an OwinStartupAttribute..
            </summary>
        </member>
        <member name="P:SharedResourceNamespace.LoaderResources.StartupTypePropertyEmpty">
            <summary>
              Looks up a localized string similar to The OwinStartupAttribute.StartupType value is empty in Assembly &apos;{0}&apos;..
            </summary>
        </member>
        <member name="P:SharedResourceNamespace.LoaderResources.StartupTypePropertyMissing">
            <summary>
              Looks up a localized string similar to The type &apos;{0}&apos; referenced from assembly &apos;{1}&apos; does not define a property &apos;StartupType&apos; of type &apos;Type&apos;..
            </summary>
        </member>
        <member name="P:SharedResourceNamespace.LoaderResources.TypeOrMethodNotFound">
            <summary>
              Looks up a localized string similar to The given type or method &apos;{0}&apos; was not found. Try specifying the Assembly..
            </summary>
        </member>
        <member name="P:SharedResourceNamespace.LoaderResources.UnexpectedMethodSignature">
            <summary>
              Looks up a localized string similar to The &apos;{0}&apos; method on class &apos;{1}&apos; does not have the expected signature &apos;void {0}(IAppBuilder)&apos;..
            </summary>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Builder.AppActivator">
            <summary>
            Used to instantiate the application entry point. e.g. the Startup class.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Builder.AppActivator.#ctor(System.IServiceProvider)">
            <summary>
            Creates a new AppActivator.
            </summary>
            <param name="services"></param>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Builder.AppActivator.Activate(System.Type)">
            <summary>
            Instantiate an instance of the given type, injecting any available services.
            </summary>
            <param name="type"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Builder.AppBuilderFactory">
            <summary>
            Provides an IAppBuilder instance based on Microsoft.Owin.Builder.AppBuilder.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Builder.AppBuilderFactory.Create">
            <summary>
            Create a new IAppBuilder instance based on Microsoft.Owin.Builder.AppBuilder.
            </summary>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Builder.IAppActivator">
            <summary>
            Used to instantiate the application entry point. e.g. the Startup class.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Builder.IAppActivator.Activate(System.Type)">
            <summary>
            Instantiate an instance of the given type.
            </summary>
            <param name="type"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Builder.IAppBuilderFactory">
            <summary>
            Provides an IAppBuilder instance.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Builder.IAppBuilderFactory.Create">
            <summary>
            Create a new IAppBuilder instance.
            </summary>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Engine.HostingEngine">
            <summary>
            Used to initialize and start a web application.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Engine.HostingEngine.#ctor(Microsoft.Owin.Hosting.Builder.IAppBuilderFactory,Microsoft.Owin.Hosting.Tracing.ITraceOutputFactory,Microsoft.Owin.Hosting.Loader.IAppLoader,Microsoft.Owin.Hosting.ServerFactory.IServerFactoryLoader,Microsoft.Owin.Logging.ILoggerFactory)">
            <summary>
            
            </summary>
            <param name="appBuilderFactory"></param>
            <param name="traceOutputFactory"></param>
            <param name="appLoader"></param>
            <param name="serverFactoryLoader"></param>
            <param name="loggerFactory"></param>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Engine.HostingEngine.DefaultPort">
            <summary>
            Gets the default port number.
            </summary>
            <returns>The default port number.</returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Engine.HostingEngine.Start(Microsoft.Owin.Hosting.Engine.StartContext)">
            <summary>
            Initialize and start a web application.
            Major Steps:
            - Find and initialize the ServerFactory
            - Find and initialize the application
            - Start the server
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Engine.HostingEngine.TryDetermineCustomPort(Microsoft.Owin.Hosting.StartOptions,System.Int32@)">
            <summary>
            Tries to determine a custom port setting from the startup options or the port environment variable.
            </summary>
            <param name="options">The OWIN application startup options.</param>
            <param name="port">The port number.</param>
            <returns>True if a valid custom port was set, false if not.</returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Engine.IHostingEngine">
            <summary>
            Initializes and starts a web application.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Engine.IHostingEngine.Start(Microsoft.Owin.Hosting.Engine.StartContext)">
            <summary>
            Initializes and starts a web application.
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Engine.StartContext">
            <summary>
            This class contains the relevant application and server state during startup.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Engine.StartContext.#ctor(Microsoft.Owin.Hosting.StartOptions)">
            <summary>
            Create a new StartContext with the given options.
            If the given options do not define any settings, then settings will be loaded from the config.
            </summary>
            <param name="options"></param>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Engine.StartContext.Options">
            <summary>
            The initial options provided to the constructor.
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Engine.StartContext.ServerFactory">
            <summary>
            The factory used to instantiate the server.
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Engine.StartContext.Builder">
            <summary>
            The IAppBuilder used to construct the OWIN application pipeline.
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Engine.StartContext.App">
            <summary>
            The constructed OWIN application pipeline.
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Engine.StartContext.Startup">
            <summary>
            The application entry point where the pipeline is defined.
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Engine.StartContext.TraceOutput">
            <summary>
            A TextWriter for writing diagnostic data to.
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Engine.StartContext.EnvironmentData">
            <summary>
            A list of keys and their associated values that will be injected by the host into each OWIN request environment.
            </summary>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Loader.AppLoader">
            <summary>
            Attempts to find the entry point for an app.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Loader.AppLoader.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Owin.Hosting.Loader.IAppLoaderFactory})">
            <summary>
            
            </summary>
            <param name="providers"></param>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Loader.AppLoader.Load(System.String,System.Collections.Generic.IList{System.String})">
            <summary>
            Attempts to find the entry point for a given configuration string.
            </summary>
            <param name="appName"></param>
            <param name="errors"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Loader.AppLoaderFactory">
            <summary>
            Initializes a new app loader.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Loader.AppLoaderFactory.#ctor(Microsoft.Owin.Hosting.Builder.IAppActivator)">
            <summary>
            
            </summary>
            <param name="activator"></param>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Loader.AppLoaderFactory.Order">
            <summary>
            Not currently used.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Loader.AppLoaderFactory.Create(System.Func{System.String,System.Collections.Generic.IList{System.String},System.Action{Owin.IAppBuilder}})">
            <summary>
            Create a new chained app loader.
            </summary>
            <param name="nextLoader"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Loader.IAppLoader">
            <summary>
            Attempts to find the entry point for an app.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Loader.IAppLoader.Load(System.String,System.Collections.Generic.IList{System.String})">
            <summary>
            Attempts to find the entry point for a given configuration string.
            </summary>
            <param name="appName"></param>
            <param name="errors"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Loader.IAppLoaderFactory">
            <summary>
            Initializes a new app loader.
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Loader.IAppLoaderFactory.Order">
            <summary>
            Not currently used.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Loader.IAppLoaderFactory.Create(System.Func{System.String,System.Collections.Generic.IList{System.String},System.Action{Owin.IAppBuilder}})">
            <summary>
            Create a new chained app loader.
            </summary>
            <param name="nextLoader"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Resources">
            <summary>
              A strongly-typed resource class, for looking up localized strings, etc.
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Resources.ResourceManager">
            <summary>
              Returns the cached ResourceManager instance used by this class.
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Resources.Culture">
            <summary>
              Overrides the current thread's CurrentUICulture property for all
              resource lookups using this strongly typed resource class.
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Resources.Exception_AppLoadFailure">
            <summary>
              Looks up a localized string similar to The following errors occurred while attempting to load the app..
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Resources.Exception_FailedToResolveService">
            <summary>
              Looks up a localized string similar to Failed to resolve an instance of {0} from the IServiceProvider..
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Resources.Exception_ImproperlyFormattedSettingsFile">
            <summary>
              Looks up a localized string similar to The settings file is improperly formatted. It should consist of one name=value pair per line.  Empty lines or lines beginning with &apos;#&apos; are ignored..
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Resources.Exception_ServerFactoryParameterCount">
            <summary>
              Looks up a localized string similar to The &apos;{0}&apos; Create method must take two parameters..
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Resources.Exception_ServerFactoryParameterType">
            <summary>
              Looks up a localized string similar to The &apos;{0}&apos; Create method must have a second parameter of type IDictionary&lt;string,object&gt;..
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Resources.Exception_ServerNotFound">
            <summary>
              Looks up a localized string similar to The server factory could not be located for the given input: {0}.
            </summary>
        </member>
        <member name="T:Microsoft.Owin.Hosting.ServerFactory.IServerFactoryActivator">
            <summary>
            Used to instantiate the server factory.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.ServerFactory.IServerFactoryActivator.Activate(System.Type)">
            <summary>
            Instantiate an instance of the given type.
            </summary>
            <param name="type"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.ServerFactory.IServerFactoryAdapter">
            <summary>
            The basic ServerFactory contract.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.ServerFactory.IServerFactoryAdapter.Initialize(Owin.IAppBuilder)">
            <summary>
            An optional method that allows the server factory to specify its capabilities.
            </summary>
            <param name="builder"></param>
        </member>
        <member name="M:Microsoft.Owin.Hosting.ServerFactory.IServerFactoryAdapter.Create(Owin.IAppBuilder)">
            <summary>
            Starts a server with the given app instance.
            </summary>
            <param name="builder"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.ServerFactory.IServerFactoryLoader">
            <summary>
            Used to locate and load the named server factory.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.ServerFactory.IServerFactoryLoader.Load(System.String)">
            <summary>
            Used to locate and load the named server factory.
            </summary>
            <param name="serverName"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryActivator">
            <summary>
            Used to instantiate the server factory.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryActivator.#ctor(System.IServiceProvider)">
            <summary>
            
            </summary>
            <param name="services"></param>
        </member>
        <member name="M:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryActivator.Activate(System.Type)">
            <summary>
            Instantiate an instance of the given type.
            </summary>
            <param name="type"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryAdapter">
            <summary>
            The basic ServerFactory contract.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryAdapter.#ctor(System.Object)">
            <summary>
            Creates a wrapper around the given server factory instance.
            </summary>
            <param name="serverFactory"></param>
        </member>
        <member name="M:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryAdapter.#ctor(System.Type,Microsoft.Owin.Hosting.ServerFactory.IServerFactoryActivator)">
            <summary>
            Creates a wrapper around the given server factory type.
            </summary>
            <param name="serverFactoryType"></param>
            <param name="activator"></param>
        </member>
        <member name="M:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryAdapter.Initialize(Owin.IAppBuilder)">
            <summary>
            Calls the optional Initialize method on the server factory.
            The method may be static or instance, and may accept either
            an IAppBuilder or the IAppBuilder.Properties IDictionary&lt;string, object&gt;.
            </summary>
            <param name="builder"></param>
        </member>
        <member name="M:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryAdapter.Create(Owin.IAppBuilder)">
            <summary>
            Calls the Create method on the server factory.
            The method may be static or instance, and may accept the AppFunc and the 
            IAppBuilder.Properties IDictionary&lt;string, object&gt;.
            </summary>
            <param name="builder"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryLoader">
            <summary>
            Located and loads the server factory.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryLoader.#ctor(Microsoft.Owin.Hosting.ServerFactory.IServerFactoryActivator)">
            <summary>
            Allows for a Dependency Injection activator to be specified.
            </summary>
            <param name="activator"></param>
        </member>
        <member name="M:Microsoft.Owin.Hosting.ServerFactory.ServerFactoryLoader.Load(System.String)">
            <summary>
            Executes the loader, searching for the server factory by name.
            Acceptable inputs:
            - Assembly.Name. Look for type Assembly.Name.ServerFactory in the assembly Assembly.Name.
            - Assembly.Name.FactoryName.  Look for type Assembly.Name.FactoryName in the assembly Assembly.Name.
            </summary>
            <param name="serverName">The name of the assembly and type of the server factory</param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Services.ActivatorUtilities">
            <summary>
            Helper code for the various activator services.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ActivatorUtilities.GetServiceOrCreateInstance(System.IServiceProvider,System.Type)">
            <summary>
            Retrieve an instance of the given type from the service provider. If one is not found then instantiate it directly.
            </summary>
            <param name="services"></param>
            <param name="type"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ActivatorUtilities.CreateInstance(System.IServiceProvider,System.Type)">
            <summary>
            Instantiate an object of the given type, using constructor service injection if possible.
            </summary>
            <param name="services"></param>
            <param name="type"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ActivatorUtilities.CreateFactory(System.Type)">
            <summary>
            Creates a factory to instantiate a type using constructor service injection if possible.
            </summary>
            <param name="type"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Services.ServiceProvider">
            <summary>
            The default IServiceProvider.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServiceProvider.#ctor">
            <summary>
            
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServiceProvider.GetService(System.Type)">
            <summary>
            Gets the service object of the specified type.
            </summary>
            <param name="serviceType"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServiceProvider.RemoveAll``1">
            <summary>
            Remove all occurrences of the given type from the provider.
            </summary>
            <typeparam name="T"></typeparam>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServiceProvider.RemoveAll(System.Type)">
            <summary>
            Remove all occurrences of the given type from the provider.
            </summary>
            <param name="type"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServiceProvider.AddInstance``1(System.Object)">
            <summary>
            Add an instance of type TService to the list of providers.
            </summary>
            <typeparam name="TService"></typeparam>
            <param name="instance"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServiceProvider.AddInstance(System.Type,System.Object)">
            <summary>
            Add an instance of the given type to the list of providers.
            </summary>
            <param name="service"></param>
            <param name="instance"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServiceProvider.Add``2">
            <summary>
            Specify that services of the type TService should be fulfilled by the type TImplementation.
            </summary>
            <typeparam name="TService"></typeparam>
            <typeparam name="TImplementation"></typeparam>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServiceProvider.Add(System.Type,System.Type)">
            <summary>
            Specify that services of the type serviceType should be fulfilled by the type implementationType.
            </summary>
            <param name="serviceType"></param>
            <param name="implementationType"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServiceProvider.Add(System.Type,System.Func{System.Object})">
            <summary>
            Specify that services of the given type should be created with the given serviceFactory.
            </summary>
            <param name="serviceType"></param>
            <param name="serviceFactory"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Services.ServiceProviderExtensions">
            <summary>
            Extension methods for IServiceProvider.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServiceProviderExtensions.GetService``1(System.IServiceProvider)">
            <summary>
            Retrieve a service of type T from the IServiceProvider.
            </summary>
            <typeparam name="T"></typeparam>
            <param name="services"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Services.ServicesFactory">
            <summary>
            Create a default ServiceProvider with input from a variety or sources.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServicesFactory.Create(System.Collections.Generic.IDictionary{System.String,System.String},System.Action{Microsoft.Owin.Hosting.Services.ServiceProvider})">
            <summary>
            Create a default ServiceProvider with the given settings.
            </summary>
            <param name="settings"></param>
            <param name="configuration"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServicesFactory.Create(System.String,System.Action{Microsoft.Owin.Hosting.Services.ServiceProvider})">
            <summary>
            Create a default ServiceProvider with the given settings file.
            </summary>
            <param name="settingsFile"></param>
            <param name="configuration"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServicesFactory.Create(System.Action{Microsoft.Owin.Hosting.Services.ServiceProvider})">
            <summary>
            Create a default ServiceProvider.
            </summary>
            <param name="configuration"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServicesFactory.Create(System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            Create a default ServiceProvider with the given settings.
            </summary>
            <param name="settings"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServicesFactory.Create(System.String)">
            <summary>
            Create a default ServiceProvider with the given settings file.
            </summary>
            <param name="settingsFile"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServicesFactory.Create">
            <summary>
            Create a default ServiceProvider.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServicesFactory.ForEach(System.Collections.Generic.IDictionary{System.String,System.String},System.Action{System.Type,System.Type})">
            <summary>
            Enumerate the default service types with the given settings overrides.
            </summary>
            <param name="settings"></param>
            <param name="callback"></param>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServicesFactory.ForEach(System.String,System.Action{System.Type,System.Type})">
            <summary>
            Enumerate the default service types with the given settings file overrides.
            </summary>
            <param name="settingsFile"></param>
            <param name="callback"></param>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Services.ServicesFactory.ForEach(System.Action{System.Type,System.Type})">
            <summary>
            Enumerate the default service types.
            </summary>
            <param name="callback"></param>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Starter.DirectHostingStarter">
            <summary>
            Executes the IHostingEngine without making any changes to the current execution environment.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Starter.DirectHostingStarter.#ctor(Microsoft.Owin.Hosting.Engine.IHostingEngine)">
            <summary>
            
            </summary>
            <param name="engine"></param>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Starter.DirectHostingStarter.Start(Microsoft.Owin.Hosting.StartOptions)">
            <summary>
            Executes the IHostingEngine without making any changes to the current execution environment.
            </summary>
            <param name="options"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Starter.DomainHostingStarter">
            <summary>
            Creates a new AppDomain to run the IHostingEngine in.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Starter.DomainHostingStarter.Start(Microsoft.Owin.Hosting.StartOptions)">
            <summary>
            Creates a new AppDomain to run the IHostingEngine in.
            </summary>
            <param name="options"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Starter.DomainHostingStarterAgent">
            <summary>
            Used for executing the IHostingEngine in a new AppDomain.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Starter.DomainHostingStarterAgent.ResolveAssembliesFromDirectory(System.String)">
            <summary>
            Registers a fallback assembly resolver that looks in the given directory.
            </summary>
            <param name="directory"></param>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Starter.DomainHostingStarterAgent.Start(Microsoft.Owin.Hosting.StartOptions)">
            <summary>
            Executes the IHostingEngine in a new AppDomain.
            </summary>
            <param name="options"></param>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Starter.DomainHostingStarterAgent.Dispose">
            <summary>
            
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Starter.DomainHostingStarterAgent.Dispose(System.Boolean)">
            <summary>
            
            </summary>
            <param name="disposing"></param>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Starter.DomainHostingStarterAgent.Renewal(System.Runtime.Remoting.Lifetime.ILease)">
            <summary>
            Renews the given lease for 5 minutes.
            </summary>
            <param name="lease"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Starter.HostingStarter">
            <summary>
            Determines the which IHostingStarter instance to use via the IHostingSterterFactory.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Starter.HostingStarter.#ctor(Microsoft.Owin.Hosting.Starter.IHostingStarterFactory)">
            <summary>
            
            </summary>
            <param name="hostingStarterFactory"></param>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Starter.HostingStarter.Start(Microsoft.Owin.Hosting.StartOptions)">
            <summary>
            Determines the which IHostingStarter instance to use via the IHostingSterterFactory.
            </summary>
            <param name="options"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Starter.HostingStarterActivator">
            <summary>
            Instantiates instances of the IHostingStarter.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Starter.HostingStarterActivator.#ctor(System.IServiceProvider)">
            <summary>
            
            </summary>
            <param name="services"></param>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Starter.HostingStarterActivator.Activate(System.Type)">
            <summary>
            Instantiates instances of the IHostingStarter.
            </summary>
            <param name="type"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Starter.HostingStarterAttribute">
            <summary>
            This attribute is used to identify custom hosting starters that may be loaded at runtime.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Starter.HostingStarterAttribute.#ctor(System.Type)">
            <summary>
            
            </summary>
            <param name="hostingStarterType"></param>
        </member>
        <member name="P:Microsoft.Owin.Hosting.Starter.HostingStarterAttribute.HostingStarterType">
            <summary>
            
            </summary>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Starter.HostingStarterFactory">
            <summary>
            Selects from known hosting starters, or detects additional providers via convention.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Starter.HostingStarterFactory.#ctor(Microsoft.Owin.Hosting.Starter.IHostingStarterActivator)">
            <summary>
            
            </summary>
            <param name="hostingStarterActivator"></param>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Starter.HostingStarterFactory.Create(System.String)">
            <summary>
            Selects from known hosting starters, or detects additional providers via convention.
            </summary>
            <param name="name"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Starter.IHostingStarter">
            <summary>
            Performs any necessary environment setup prior to executing the IHostingEngine.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Starter.IHostingStarter.Start(Microsoft.Owin.Hosting.StartOptions)">
            <summary>
            Performs any necessary environment setup prior to executing the IHostingEngine.
            </summary>
            <param name="options"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Starter.IHostingStarterActivator">
            <summary>
            Instantiates instances of the IHostingStarter.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Starter.IHostingStarterActivator.Activate(System.Type)">
            <summary>
            Instantiates instances of the IHostingStarter.
            </summary>
            <param name="type"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Starter.IHostingStarterFactory">
            <summary>
            Creates a IHostingStarter for the given identifier.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Starter.IHostingStarterFactory.Create(System.String)">
            <summary>
            Creates a IHostingStarter for the given identifier.
            </summary>
            <param name="name"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.StartOptions">
            <summary>
            Settings to control the startup behavior of an OWIN application
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.StartOptions.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.Owin.Hosting.StartOptions"/> class
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.StartOptions.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Microsoft.Owin.Hosting.StartOptions"/> class
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.StartOptions.Urls">
            <summary>
            A list of url prefixes to listen on. Overrides port.
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.StartOptions.Port">
            <summary>
            A port to listen on.
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.StartOptions.AppStartup">
            <summary>
            Parameter to locate and load web application startup routine
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.StartOptions.ServerFactory">
            <summary>
            Name of the assembly containing the http server implementation
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Hosting.StartOptions.Settings">
            <summary>
            Optional settings used to override service types and other defaults
            </summary>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Tracing.ITraceOutputFactory">
            <summary>
            Used to create the trace output.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Tracing.ITraceOutputFactory.Create(System.String)">
            <summary>
            Used to create the trace output.
            </summary>
            <param name="outputFile"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Tracing.TraceOutputFactory">
            <summary>
            Opens a stream writer for the given file.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Tracing.TraceOutputFactory.Create(System.String)">
            <summary>
            Opens a stream writer for the given file.
            </summary>
            <param name="outputFile"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Hosting.Utilities.SettingsLoader">
            <summary>
            Loads settings from various locations.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Utilities.SettingsLoader.LoadFromConfig">
            <summary>
            Load settings from the AppSettings section of the config file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Utilities.SettingsLoader.LoadFromConfig(System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            Load settings from the AppSettings section of the config file.
            </summary>
            <param name="settings"></param>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Utilities.SettingsLoader.LoadFromSettingsFile(System.String)">
            <summary>
            Load settings from a flat text file.
            </summary>
            <param name="settingsFile"></param>
            <returns></returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.Utilities.SettingsLoader.LoadFromSettingsFile(System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            Load settings from a flat text file.
            </summary>
            <param name="settingsFile"></param>
            <param name="settings"></param>
        </member>
        <member name="T:Microsoft.Owin.Hosting.WebApp">
            <summary>
            These methods are used to load, assemble, and start a web app.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Hosting.WebApp.Start(System.String,System.Action{Owin.IAppBuilder})">
            <summary>
            Start a web app using default settings and the given url and entry point.
            e.g. Discover the ServerFactory and run at the given url.
            </summary>
            <returns>An IDisposible instance that can be called to shut down the web app.</returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.WebApp.Start(Microsoft.Owin.Hosting.StartOptions,System.Action{Owin.IAppBuilder})">
            <summary>
            Start a web app using the given settings and entry point, using defaults for items not specified.
            </summary>
            <returns>An IDisposible instance that can be called to shut down the web app.</returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.WebApp.Start``1(System.String)">
            <summary>
            Start a web app using default settings and the given url and entry point type.
            e.g. Discover the ServerFactory and run at the given url.
            </summary>
            <returns>An IDisposible instance that can be called to shut down the web app.</returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.WebApp.Start``1(Microsoft.Owin.Hosting.StartOptions)">
            <summary>
            Start a web app using the given settings and entry point type, using defaults for items not specified.
            </summary>
            <returns>An IDisposible instance that can be called to shut down the web app.</returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.WebApp.Start(System.String)">
            <summary>
            Start a web app using the given settings and entry point type, using defaults for items not specified.
            </summary>
            <returns>An IDisposible instance that can be called to shut down the web app.</returns>
        </member>
        <member name="M:Microsoft.Owin.Hosting.WebApp.Start(Microsoft.Owin.Hosting.StartOptions)">
            <summary>
            Start a web app using the given settings and entry point type, using defaults for items not specified.
            </summary>
            <returns>An IDisposible instance that can be called to shut down the web app.</returns>
        </member>
        <member name="T:Owin.Loader.DefaultLoader">
            <summary>
            Locates the startup class based on the following convention:
            AssemblyName.Startup, with a method named Configuration
            </summary>
        </member>
        <member name="M:Owin.Loader.DefaultLoader.#ctor">
            <summary>
            
            </summary>
        </member>
        <member name="M:Owin.Loader.DefaultLoader.#ctor(System.Func{System.String,System.Collections.Generic.IList{System.String},System.Action{Owin.IAppBuilder}})">
            <summary>
            Allows for a fallback loader to be specified.
            </summary>
            <param name="next"></param>
        </member>
        <member name="M:Owin.Loader.DefaultLoader.#ctor(System.Func{System.String,System.Collections.Generic.IList{System.String},System.Action{Owin.IAppBuilder}},System.Func{System.Type,System.Object})">
            <summary>
            Allows for a fallback loader and a Dependency Injection activator to be specified.
            </summary>
            <param name="next"></param>
            <param name="activator"></param>
        </member>
        <member name="M:Owin.Loader.DefaultLoader.#ctor(System.Func{System.String,System.Collections.Generic.IList{System.String},System.Action{Owin.IAppBuilder}},System.Func{System.Type,System.Object},System.Collections.Generic.IEnumerable{System.Reflection.Assembly})">
            <summary>
            
            </summary>
            <param name="next"></param>
            <param name="activator"></param>
            <param name="referencedAssemblies"></param>
        </member>
        <member name="M:Owin.Loader.DefaultLoader.Load(System.String,System.Collections.Generic.IList{System.String})">
            <summary>
            Executes the loader, searching for the entry point by name.
            </summary>
            <param name="startupName">The name of the assembly and type entry point</param>
            <param name="errorDetails"></param>
            <returns></returns>
        </member>
        <member name="M:Owin.Loader.DefaultLoader.DotByDot(System.String)">
            <summary>
            
            </summary>
            <param name="text"></param>
            <returns></returns>
        </member>
        <member name="T:Owin.Loader.NullLoader">
            <summary>
            A default fallback loader that does nothing.
            </summary>
        </member>
        <member name="P:Owin.Loader.NullLoader.Instance">
            <summary>
            A singleton instance of the NullLoader type.
            </summary>
        </member>
        <member name="M:Owin.Loader.NullLoader.Load(System.String,System.Collections.Generic.IList{System.String})">
            <summary>
            A placeholder method that always returns null.
            </summary>
            <param name="startup"></param>
            <param name="errors"></param>
            <returns>null.</returns>
        </member>
    </members>
</doc>