forked from ServiceStack/ServiceStack.Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.xml
More file actions
3483 lines (3471 loc) · 194 KB
/
ServiceStack.xml
File metadata and controls
3483 lines (3471 loc) · 194 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>ServiceStack</name>
</assembly>
<members>
<member name="M:ServiceStack.WebHost.Endpoints.RestHandler.CreateRequest(ServiceStack.ServiceHost.IHttpRequest,System.String)">
<summary>
Used in Unit tests
</summary>
<returns></returns>
</member>
<member name="M:ServiceStack.Markdown.MarkdownViewBase.GetHtmlHelper">
<summary>
Ensure the same instance is used for subclasses
</summary>
</member>
<member name="M:ServiceStack.Markdown.MarkdownViewBase.InitHelpers">
<summary>
Called before page is executed
</summary>
</member>
<member name="M:ServiceStack.Markdown.MarkdownViewBase.OnLoad">
<summary>
Called after page is executed but before it's merged with the
website template if any.
</summary>
</member>
<member name="M:ServiceStack.Markdown.MarkdownViewBase.Raw(System.String)">
<summary>
Don't HTML encode safe output
</summary>
<param name="content"></param>
<returns></returns>
</member>
<member name="M:ServiceStack.Markdown.MarkdownViewBase.Partial(System.String,System.Object)">
<summary>
Return the output of a different view with the specified name
using the supplied model
</summary>
<param name="viewName"></param>
<param name="model"></param>
<returns></returns>
</member>
<member name="M:ServiceStack.Markdown.MarkdownViewBase.Get``1">
<summary>
Resolve registered Assemblies
</summary>
<returns></returns>
</member>
<member name="P:ServiceStack.Markdown.MarkdownViewBase.ViewEngine">
<summary>
Reference to MarkdownViewEngine
</summary>
</member>
<member name="P:ServiceStack.Markdown.MarkdownViewBase.AppHost">
<summary>
The AppHost so you can access configuration and resolve dependencies, etc.
</summary>
</member>
<member name="P:ServiceStack.Markdown.MarkdownViewBase.MarkdownPage">
<summary>
This precompiled Markdown page with Metadata
</summary>
</member>
<member name="P:ServiceStack.Markdown.MarkdownViewBase.Html">
<summary>
ASP.NET MVC's HtmlHelper
</summary>
</member>
<member name="P:ServiceStack.Markdown.MarkdownViewBase.ScopeArgs">
<summary>
All variables passed to and created by your page.
The Response DTO is stored and accessible via the 'Model' variable.
All variables and outputs created are stored in ScopeArgs which is what's available
to your website template. The Generated page is stored in the 'Body' variable.
</summary>
</member>
<member name="P:ServiceStack.Markdown.MarkdownViewBase.RenderHtml">
<summary>
Whether HTML or Markdown output is requested
</summary>
</member>
<member name="P:ServiceStack.Markdown.MarkdownViewBase.Model">
<summary>
The Response DTO
</summary>
</member>
<member name="M:ServiceStack.WebHost.Endpoints.ServiceStackHttpHandlerFactory.ReturnRequestInfo(System.Web.HttpRequest)">
<summary>
If enabled, just returns the Request Info as it understands
</summary>
<param name="context"></param>
<returns></returns>
</member>
<member name="M:ServiceStack.ServiceHost.RestPath.IsMatch(System.String,System.String[])">
<summary>
For performance withPathInfoParts should already be a lower case string
to minimize redundant matching operations.
</summary>
<param name="httpMethod"></param>
<param name="withPathInfoParts"></param>
<returns></returns>
</member>
<member name="P:ServiceStack.ServiceHost.RestPath.PathComponentsCount">
<summary>
The number of segments separated by '/' determinable by path.Split('/').Length
e.g. /path/to/here.ext == 3
</summary>
</member>
<member name="P:ServiceStack.ServiceHost.RestPath.TotalComponentsCount">
<summary>
The total number of segments after subparts have been exploded ('.')
e.g. /path/to/here.ext == 4
</summary>
</member>
<member name="P:ServiceStack.ServiceHost.RestPath.FirstMatchHashKey">
<summary>
Provide for quick lookups based on hashes that can be determined from a request url
</summary>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.CacheClientExtensions.RemoveByPattern(ServiceStack.CacheAccess.ICacheClient,System.String)">
<summary>
Removes items from cache that have keys matching the specified wildcard pattern
</summary>
<param name="cacheClient">Cache client</param>
<param name="pattern">The wildcard, where "*" means any sequence of characters and "?" means any single character.</param>
</member>
<member name="M:ServiceStack.CacheAccess.Providers.CacheClientExtensions.RemoveByRegex(ServiceStack.CacheAccess.ICacheClient,System.String)">
<summary>
Removes items from the cache based on the specified regular expression pattern
</summary>
<param name="cacheClient">Cache client</param>
<param name="regex">Regular expression pattern to search cache keys</param>
</member>
<member name="M:ServiceStack.WebHost.Endpoints.EndpointHost.ApplyPreRequestFilters(ServiceStack.ServiceHost.IHttpRequest,ServiceStack.ServiceHost.IHttpResponse)">
<summary>
Applies the raw request filters. Returns whether or not the request has been handled
and no more processing should be done.
</summary>
<returns></returns>
</member>
<member name="M:ServiceStack.WebHost.Endpoints.EndpointHost.ApplyRequestFilters(ServiceStack.ServiceHost.IHttpRequest,ServiceStack.ServiceHost.IHttpResponse,System.Object)">
<summary>
Applies the request filters. Returns whether or not the request has been handled
and no more processing should be done.
</summary>
<returns></returns>
</member>
<member name="M:ServiceStack.WebHost.Endpoints.EndpointHost.ApplyResponseFilters(ServiceStack.ServiceHost.IHttpRequest,ServiceStack.ServiceHost.IHttpResponse,System.Object)">
<summary>
Applies the response filters. Returns whether or not the request has been handled
and no more processing should be done.
</summary>
<returns></returns>
</member>
<member name="M:ServiceStack.WebHost.Endpoints.EndpointHost.CompleteRequest">
<summary>
Call to signal the completion of a ServiceStack-handled Request
</summary>
</member>
<member name="P:ServiceStack.WebHost.Endpoints.EndpointHost.Container">
<summary>
The AppHost.Container. Note: it is not thread safe to register dependencies after AppStart.
</summary>
</member>
<member name="T:ServiceStack.WebHost.Endpoints.AppHostHttpListenerBase">
<summary>
Inherit from this class if you want to host your web services inside a
Console Application, Windows Service, etc.
Usage of HttpListener allows you to host webservices on the same port (:80) as IIS
however it requires admin user privillages.
</summary>
</member>
<member name="T:ServiceStack.WebHost.Endpoints.Support.HttpListenerBase">
<summary>
Wrapper class for the HTTPListener to allow easier access to the
server, for start and stop management and event routing of the actual
inbound requests.
</summary>
</member>
<member name="T:ServiceStack.WebHost.Endpoints.IAppHost">
<summary>
ASP.NET or HttpListener ServiceStack host
</summary>
</member>
<member name="M:ServiceStack.WebHost.Endpoints.IAppHost.Register``1(``0)">
<summary>
Register dependency in AppHost IOC on Startup
</summary>
<typeparam name="T"></typeparam>
<param name="instance"></param>
</member>
<member name="M:ServiceStack.WebHost.Endpoints.IAppHost.RegisterAs``2">
<summary>
AutoWired Registration of an interface with a concrete type in AppHost IOC on Startup.
</summary>
<typeparam name="T"></typeparam>
<typeparam name="TAs"></typeparam>
</member>
<member name="M:ServiceStack.WebHost.Endpoints.IAppHost.Release(System.Object)">
<summary>
Allows the clean up for executed autowired services and filters.
Calls directly after services and filters are executed.
</summary>
<param name="instance"></param>
</member>
<member name="M:ServiceStack.WebHost.Endpoints.IAppHost.OnEndRequest">
<summary>
Called at the end of each request. Enables Request Scope.
</summary>
</member>
<member name="M:ServiceStack.WebHost.Endpoints.IAppHost.RegisterService(System.Type,System.String[])">
<summary>
Register an Adhoc web service on Startup
</summary>
<param name="serviceType"></param>
<param name="atRestPaths"></param>
</member>
<member name="M:ServiceStack.WebHost.Endpoints.IAppHost.LoadPlugin(ServiceStack.WebHost.Endpoints.IPlugin[])">
<summary>
Apply plugins to this AppHost
</summary>
<param name="plugins"></param>
</member>
<member name="M:ServiceStack.WebHost.Endpoints.IAppHost.CreateServiceRunner``1(ServiceStack.WebHost.Endpoints.ActionContext)">
<summary>
Create a service runner for IService actions
</summary>
</member>
<member name="P:ServiceStack.WebHost.Endpoints.IAppHost.Routes">
<summary>
Register user-defined custom routes.
</summary>
</member>
<member name="P:ServiceStack.WebHost.Endpoints.IAppHost.ContentTypeFilters">
<summary>
Register custom ContentType serializers
</summary>
</member>
<member name="P:ServiceStack.WebHost.Endpoints.IAppHost.PreRequestFilters">
<summary>
Add Request Filters, to be applied before the dto is deserialized
</summary>
</member>
<member name="P:ServiceStack.WebHost.Endpoints.IAppHost.RequestFilters">
<summary>
Add Request Filters
</summary>
</member>
<member name="P:ServiceStack.WebHost.Endpoints.IAppHost.ResponseFilters">
<summary>
Add Response Filters
</summary>
</member>
<member name="P:ServiceStack.WebHost.Endpoints.IAppHost.ViewEngines">
<summary>
Add alternative HTML View Engines
</summary>
</member>
<member name="P:ServiceStack.WebHost.Endpoints.IAppHost.ExceptionHandler">
<summary>
Provide an exception handler for un-caught exceptions
</summary>
</member>
<member name="P:ServiceStack.WebHost.Endpoints.IAppHost.ServiceExceptionHandler">
<summary>
Provide an exception handler for unhandled exceptions
</summary>
</member>
<member name="P:ServiceStack.WebHost.Endpoints.IAppHost.CatchAllHandlers">
<summary>
Provide a catch-all handler that doesn't match any routes
</summary>
</member>
<member name="P:ServiceStack.WebHost.Endpoints.IAppHost.RequestBinders">
<summary>
Provide a custom model minder for a specific Request DTO
</summary>
</member>
<member name="P:ServiceStack.WebHost.Endpoints.IAppHost.Config">
<summary>
The AppHost config
</summary>
</member>
<member name="P:ServiceStack.WebHost.Endpoints.IAppHost.Plugins">
<summary>
List of pre-registered and user-defined plugins to be enabled in this AppHost
</summary>
</member>
<member name="P:ServiceStack.WebHost.Endpoints.IAppHost.VirtualPathProvider">
<summary>
Virtual access to file resources
</summary>
</member>
<member name="M:ServiceStack.WebHost.Endpoints.Support.HttpListenerBase.Start(System.String)">
<summary>
Starts the Web Service
</summary>
<param name="urlBase">
A Uri that acts as the base that the server is listening on.
Format should be: http://127.0.0.1:8080/ or http://127.0.0.1:8080/somevirtual/
Note: the trailing slash is required! For more info see the
HttpListener.Prefixes property on MSDN.
</param>
</member>
<member name="M:ServiceStack.WebHost.Endpoints.Support.HttpListenerBase.Stop">
<summary>
Shut down the Web Service
</summary>
</member>
<member name="M:ServiceStack.WebHost.Endpoints.Support.HttpListenerBase.ProcessRequest(System.Net.HttpListenerContext)">
<summary>
Overridable method that can be used to implement a custom hnandler
</summary>
<param name="context"></param>
</member>
<member name="P:ServiceStack.WebHost.Endpoints.Support.HttpListenerBase.Plugins">
TODO: plugin added with .Add method after host initialization won't be configured. Each plugin should have state so we can invoke Register method if host was already started.
</member>
<member name="T:ServiceStack.Properties.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:ServiceStack.Properties.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:ServiceStack.Properties.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:ServiceStack.Properties.Resources.Registration_CantRegisterContainer">
<summary>
Looks up a localized string similar to Container service is built-in and read-only..
</summary>
</member>
<member name="P:ServiceStack.Properties.Resources.Registration_IncompatibleAsType">
<summary>
Looks up a localized string similar to Service type {0} does not inherit or implement {1}..
</summary>
</member>
<member name="P:ServiceStack.Properties.Resources.ResolutionException_MissingNamedType">
<summary>
Looks up a localized string similar to Required dependency of type {0} named '{1}' could not be resolved..
</summary>
</member>
<member name="P:ServiceStack.Properties.Resources.ResolutionException_MissingType">
<summary>
Looks up a localized string similar to Required dependency of type {0} could not be resolved..
</summary>
</member>
<member name="P:ServiceStack.Properties.Resources.ResolutionException_UnknownScope">
<summary>
Looks up a localized string similar to Unknown scope..
</summary>
</member>
<member name="T:ServiceStack.MiniProfiler.UI.MiniProfilerHandler">
<summary>
Understands how to route and respond to MiniProfiler UI urls.
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.UI.MiniProfilerHandler.ProcessRequest(System.Web.HttpContext)">
<summary>
Returns either includes' css/javascript or results' html.
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.UI.MiniProfilerHandler.Includes(ServiceStack.ServiceHost.IHttpRequest,ServiceStack.ServiceHost.IHttpResponse,System.String)">
<summary>
Handles rendering static content files.
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.UI.MiniProfilerHandler.Results(ServiceStack.ServiceHost.IHttpRequest,ServiceStack.ServiceHost.IHttpResponse)">
<summary>
Handles rendering a previous MiniProfiler session, identified by its "?id=GUID" on the query.
</summary>
</member>
<member name="F:ServiceStack.MiniProfiler.UI.MiniProfilerHandler._ResourceCache">
<summary>
Embedded resource contents keyed by filename.
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.UI.MiniProfilerHandler.NotFound(ServiceStack.ServiceHost.IHttpResponse,System.String,System.String)">
<summary>
Helper method that sets a proper 404 response code.
</summary>
</member>
<member name="P:ServiceStack.MiniProfiler.UI.MiniProfilerHandler.IsReusable">
<summary>
Try to keep everything static so we can easily be reused.
</summary>
</member>
<member name="T:Funq.IRegistration">
<summary>
Fluent API for customizing the registration of a service.
</summary>
</member>
<member name="T:Funq.IFluentInterface">
<summary>
Helper interface used to hide the base <see cref="T:System.Object"/>
members from the fluent API to make for much cleaner
Visual Studio intellisense experience.
</summary>
</member>
<member name="M:Funq.IFluentInterface.GetType">
<summary/>
</member>
<member name="M:Funq.IFluentInterface.GetHashCode">
<summary/>
</member>
<member name="M:Funq.IFluentInterface.ToString">
<summary/>
</member>
<member name="M:Funq.IFluentInterface.Equals(System.Object)">
<summary/>
</member>
<member name="T:Funq.IReusedOwned">
<summary>
Fluent API that exposes both <see cref="M:Funq.IReused.ReusedWithin(Funq.ReuseScope)"/>
and owner (<see cref="M:Funq.IOwned.OwnedBy(Funq.Owner)"/>).
</summary>
</member>
<member name="T:Funq.IReused">
<summary>
Fluent API that allows specifying the reuse instances.
</summary>
</member>
<member name="M:Funq.IReused.ReusedWithin(Funq.ReuseScope)">
<summary>
Specifies how instances are reused within a container or hierarchy. Default
scope is <see cref="F:Funq.ReuseScope.Hierarchy"/>.
</summary>
</member>
<member name="T:Funq.IOwned">
<summary>
Fluent API that allows specifying the owner of instances
created from a registration.
</summary>
</member>
<member name="M:Funq.IOwned.OwnedBy(Funq.Owner)">
<summary>
Specifies the owner of instances created from this registration. Default
owner is <see cref="F:Funq.Owner.Container"/>.
</summary>
</member>
<member name="T:Funq.IRegistration`1">
<summary>
Fluent API for customizing the registration of a service.
</summary>
</member>
<member name="T:Funq.IInitializable`1">
<summary>
Fluent API that allows registering an initializer for the
service.
</summary>
</member>
<member name="M:Funq.IInitializable`1.InitializedBy(System.Action{Funq.Container,`0})">
<summary>
Specifies an initializer that should be invoked after
the service instance has been created by the factory.
</summary>
</member>
<member name="M:ServiceStack.WebHost.Endpoints.ServiceEndpointsMetadataConfig.Create(System.String)">
<summary>
Changes the links for the servicestack/metadata page
</summary>
<param name="serviceStackHandlerPrefix"></param>
<returns></returns>
</member>
<member name="T:ServiceStack.WebHost.Endpoints.Support.GzipOptimizationTest">
<summary>
Highly optimized code to find if GZIP is supported from:
- http://dotnetperls.com/gzip-request
Other resources for GZip, deflate resources:
- http://www.west-wind.com/Weblog/posts/10564.aspx
- http://www.west-wind.com/WebLog/posts/102969.aspx
- ICSharpCode
</summary>
</member>
<member name="P:MarkdownSharp.MarkdownOptions.AutoHyperlink">
<summary>
when true, (most) bare plain URLs are auto-hyperlinked
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="P:MarkdownSharp.MarkdownOptions.AutoNewlines">
<summary>
when true, RETURN becomes a literal newline
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="P:MarkdownSharp.MarkdownOptions.EmptyElementSuffix">
<summary>
use ">" for HTML output, or " />" for XHTML output
</summary>
</member>
<member name="P:MarkdownSharp.MarkdownOptions.EncodeProblemUrlCharacters">
<summary>
when true, problematic URL characters like [, ], (, and so forth will be encoded
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="P:MarkdownSharp.MarkdownOptions.LinkEmails">
<summary>
when false, email addresses will never be auto-linked
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="P:MarkdownSharp.MarkdownOptions.StrictBoldItalic">
<summary>
when true, bold and italic require non-word characters on either side
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="T:MarkdownSharp.Markdown">
<summary>
Markdown is a text-to-HTML conversion tool for web writers.
Markdown allows you to write using an easy-to-read, easy-to-write plain text format,
then convert it to structurally valid XHTML (or HTML).
</summary>
</member>
<member name="F:MarkdownSharp.Markdown._tabWidth">
<summary>
Tabs are automatically converted to spaces as part of the transform
this constant determines how "wide" those tabs become in spaces
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.#ctor">
<summary>
Create a new Markdown instance using default options
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.#ctor(System.Boolean)">
<summary>
Create a new Markdown instance and optionally load options from a configuration
file. There they should be stored in the appSettings section, available options are:
Markdown.StrictBoldItalic (true/false)
Markdown.EmptyElementSuffix (">" or " />" without the quotes)
Markdown.LinkEmails (true/false)
Markdown.AutoNewLines (true/false)
Markdown.AutoHyperlink (true/false)
Markdown.EncodeProblemUrlCharacters (true/false)
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.#ctor(MarkdownSharp.MarkdownOptions)">
<summary>
Create a new Markdown instance and set the options from the MarkdownOptions object.
</summary>
</member>
<member name="F:MarkdownSharp.Markdown._nestDepth">
<summary>
maximum nested depth of [] and () supported by the transform; implementation detail
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.#cctor">
<summary>
In the static constuctor we'll initialize what stays the same across all transforms.
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.Transform(System.String)">
<summary>
Transforms the provided Markdown-formatted text to HTML;
see http://en.wikipedia.org/wiki/Markdown
</summary>
<remarks>
The order in which other subs are called here is
essential. Link and image substitutions need to happen before
EscapeSpecialChars(), so that any *'s or _'s in the a
and img tags get encoded.
</remarks>
</member>
<member name="M:MarkdownSharp.Markdown.RunBlockGamut(System.String,System.Boolean)">
<summary>
Perform transformations that form block-level tags like paragraphs, headers, and list items.
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.RunSpanGamut(System.String)">
<summary>
Perform transformations that occur *within* block-level tags like paragraphs, headers, and list items.
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.FormParagraphs(System.String,System.Boolean)">
<summary>
splits on two or more newlines, to form "paragraphs";
each paragraph is then unhashed (if it is a hash and unhashing isn't turned off) or wrapped in HTML p tag
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.GetNestedBracketsPattern">
<summary>
Reusable pattern to match balanced [brackets]. See Friedl's
"Mastering Regular Expressions", 2nd Ed., pp. 328-331.
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.GetNestedParensPattern">
<summary>
Reusable pattern to match balanced (parens). See Friedl's
"Mastering Regular Expressions", 2nd Ed., pp. 328-331.
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.StripLinkDefinitions(System.String)">
<summary>
Strips link definitions from text, stores the URLs and titles in hash references.
</summary>
<remarks>
^[id]: url "optional title"
</remarks>
</member>
<member name="M:MarkdownSharp.Markdown.GetBlockPattern">
<summary>
derived pretty much verbatim from PHP Markdown
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.HashHTMLBlocks(System.String)">
<summary>
replaces any block-level HTML blocks with hash entries
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.TokenizeHTML(System.String)">
<summary>
returns an array of HTML tokens comprising the input string. Each token is
either a tag (possibly with nested, tags contained therein, such
as <a href="<MTFoo>">, or a run of text between tags. Each element of the
array is a two-element array; the first is either 'tag' or 'text'; the second is
the actual value.
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.DoAnchors(System.String)">
<summary>
Turn Markdown link shortcuts into HTML anchor tags
</summary>
<remarks>
[link text](url "title")
[link text][id]
[id]
</remarks>
</member>
<member name="M:MarkdownSharp.Markdown.DoImages(System.String)">
<summary>
Turn Markdown image shortcuts into HTML img tags.
</summary>
<remarks>
![alt text][id]

</remarks>
</member>
<member name="M:MarkdownSharp.Markdown.DoHeaders(System.String)">
<summary>
Turn Markdown headers into HTML header tags
</summary>
<remarks>
Header 1
========
Header 2
--------
# Header 1
## Header 2
## Header 2 with closing hashes ##
...
###### Header 6
</remarks>
</member>
<member name="M:MarkdownSharp.Markdown.DoHorizontalRules(System.String)">
<summary>
Turn Markdown horizontal rules into HTML hr tags
</summary>
<remarks>
***
* * *
---
- - -
</remarks>
</member>
<member name="M:MarkdownSharp.Markdown.DoLists(System.String)">
<summary>
Turn Markdown lists into HTML ul and ol and li tags
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.ProcessListItems(System.String,System.String)">
<summary>
Process the contents of a single ordered or unordered list, splitting it
into individual list items.
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.DoCodeBlocks(System.String)">
<summary>
/// Turn Markdown 4-space indented code into HTML pre code blocks
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.DoCodeSpans(System.String)">
<summary>
Turn Markdown `code spans` into HTML code tags
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.DoItalicsAndBold(System.String)">
<summary>
Turn Markdown *italics* and **bold** into HTML strong and em tags
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.DoHardBreaks(System.String)">
<summary>
Turn markdown line breaks (two space at end of line) into HTML break tags
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.DoBlockQuotes(System.String)">
<summary>
Turn Markdown > quoted blocks into HTML blockquote blocks
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.DoAutoLinks(System.String)">
<summary>
Turn angle-delimited URLs into HTML anchor tags
</summary>
<remarks>
<http://www.example.com>
</remarks>
</member>
<member name="M:MarkdownSharp.Markdown.Outdent(System.String)">
<summary>
Remove one level of line-leading spaces
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.EncodeEmailAddress(System.String)">
<summary>
encodes email address randomly
roughly 10% raw, 45% hex, 45% dec
note that @ is always encoded and : never is
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.EncodeCode(System.String)">
<summary>
Encode/escape certain Markdown characters inside code blocks and spans where they are literals
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.EncodeAmpsAndAngles(System.String)">
<summary>
Encode any ampersands (that aren't part of an HTML entity) and left or right angle brackets
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.EscapeBackslashes(System.String)">
<summary>
Encodes any escaped characters such as \`, \*, \[ etc
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.Unescape(System.String)">
<summary>
swap back in all the special characters we've hidden
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.EscapeBoldItalic(System.String)">
<summary>
escapes Bold [ * ] and Italic [ _ ] characters
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.EncodeProblemUrlChars(System.String)">
<summary>
hex-encodes some unusual "problem" chars in URLs to avoid URL detection problems
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.EscapeSpecialCharsWithinTagAttributes(System.String)">
<summary>
Within tags -- meaning between < and > -- encode [\ ` * _] so they
don't conflict with their use in Markdown for code, italics and strong.
We're replacing each such character with its corresponding hash
value; this is likely overkill, but it should prevent us from colliding
with the escape values by accident.
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.Normalize(System.String)">
<summary>
convert all tabs to _tabWidth spaces;
standardizes line endings from DOS (CR LF) or Mac (CR) to UNIX (LF);
makes sure text ends with a couple of newlines;
removes any blank lines (only spaces) in the text
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.RepeatString(System.String,System.Int32)">
<summary>
this is to emulate what's evailable in PHP
</summary>
</member>
<member name="P:MarkdownSharp.Markdown.EmptyElementSuffix">
<summary>
use ">" for HTML output, or " />" for XHTML output
</summary>
</member>
<member name="P:MarkdownSharp.Markdown.LinkEmails">
<summary>
when false, email addresses will never be auto-linked
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="P:MarkdownSharp.Markdown.StrictBoldItalic">
<summary>
when true, bold and italic require non-word characters on either side
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="P:MarkdownSharp.Markdown.AutoNewLines">
<summary>
when true, RETURN becomes a literal newline
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="P:MarkdownSharp.Markdown.AutoHyperlink">
<summary>
when true, (most) bare plain URLs are auto-hyperlinked
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="P:MarkdownSharp.Markdown.EncodeProblemUrlCharacters">
<summary>
when true, problematic URL characters like [, ], (, and so forth will be encoded
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="P:MarkdownSharp.Markdown.Version">
<summary>
current version of MarkdownSharp;
see http://code.google.com/p/markdownsharp/ for the latest code or to contribute
</summary>
</member>
<member name="T:ServiceStack.MiniProfiler.WebRequestProfilerProvider">
<summary>
HttpContext based profiler provider. This is the default provider to use in a web context.
The current profiler is associated with a HttpContext.Current ensuring that profilers are
specific to a individual HttpRequest.
</summary>
</member>
<member name="T:ServiceStack.MiniProfiler.BaseProfilerProvider">
<summary>
BaseProfilerProvider. This providers some helper methods which provide access to
internals not otherwise available.
To use, override the <see cref="M:ServiceStack.MiniProfiler.BaseProfilerProvider.Start(ServiceStack.MiniProfiler.ProfileLevel)"/>, <see cref="M:ServiceStack.MiniProfiler.BaseProfilerProvider.Stop(System.Boolean)"/> and <see cref="M:ServiceStack.MiniProfiler.BaseProfilerProvider.GetCurrentProfiler"/>
methods.
</summary>
</member>
<member name="T:ServiceStack.MiniProfiler.IProfilerProvider">
<summary>
A provider used to create <see cref="T:ServiceStack.MiniProfiler.Profiler"/> instances and maintain the current instance.
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.IProfilerProvider.Start(ServiceStack.MiniProfiler.ProfileLevel)">
<summary>
Starts a new MiniProfiler and sets it to be current. By the end of this method
<see cref="M:ServiceStack.MiniProfiler.IProfilerProvider.GetCurrentProfiler"/> should return the new MiniProfiler.
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.IProfilerProvider.Stop(System.Boolean)">
<summary>
Ends the current profiling session, if one exists.
</summary>
<param name="discardResults">
When true, clears the <see cref="P:ServiceStack.MiniProfiler.Profiler.Current"/> for this HttpContext, allowing profiling to
be prematurely stopped and discarded. Useful for when a specific route does not need to be profiled.
</param>
</member>
<member name="M:ServiceStack.MiniProfiler.IProfilerProvider.GetCurrentProfiler">
<summary>
Returns the current MiniProfiler. This is used by <see cref="P:ServiceStack.MiniProfiler.Profiler.Current"/>.
</summary>
<returns></returns>
</member>
<member name="M:ServiceStack.MiniProfiler.BaseProfilerProvider.Start(ServiceStack.MiniProfiler.ProfileLevel)">
<summary>
Starts a new MiniProfiler and sets it to be current. By the end of this method
<see cref="M:ServiceStack.MiniProfiler.BaseProfilerProvider.GetCurrentProfiler"/> should return the new MiniProfiler.
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.BaseProfilerProvider.Stop(System.Boolean)">
<summary>
Stops the current MiniProfiler (if any is currently running).
<see cref="M:ServiceStack.MiniProfiler.BaseProfilerProvider.SaveProfiler(ServiceStack.MiniProfiler.Profiler)"/> should be called if <paramref name="discardResults"/> is false
</summary>
<param name="discardResults">If true, any current results will be thrown away and nothing saved</param>
</member>
<member name="M:ServiceStack.MiniProfiler.BaseProfilerProvider.GetCurrentProfiler">
<summary>
Returns the current MiniProfiler. This is used by <see cref="P:ServiceStack.MiniProfiler.Profiler.Current"/>.
</summary>
<returns></returns>
</member>
<member name="M:ServiceStack.MiniProfiler.BaseProfilerProvider.SetProfilerActive(ServiceStack.MiniProfiler.Profiler)">
<summary>
Sets <paramref name="profiler"/> to be active (read to start profiling)
This should be called once a new MiniProfiler has been created.
</summary>
<param name="profiler">The profiler to set to active</param>
<exception cref="T:System.ArgumentNullException">If <paramref name="profiler"/> is null</exception>
</member>
<member name="M:ServiceStack.MiniProfiler.BaseProfilerProvider.StopProfiler(ServiceStack.MiniProfiler.Profiler)">
<summary>
Stops the profiler and marks it as inactive.
</summary>
<param name="profiler">The profiler to stop</param>
<returns>True if successful, false if Stop had previously been called on this profiler</returns>
<exception cref="T:System.ArgumentNullException">If <paramref name="profiler"/> is null</exception>
</member>
<member name="M:ServiceStack.MiniProfiler.BaseProfilerProvider.SaveProfiler(ServiceStack.MiniProfiler.Profiler)">
<summary>
Calls <see cref="M:ServiceStack.MiniProfiler.Profiler.Settings.EnsureStorageStrategy"/> to save the current
profiler using the current storage settings
</summary>
<param name="current"></param>
</member>
<member name="M:ServiceStack.MiniProfiler.WebRequestProfilerProvider.#ctor">
<summary>
Public constructor. This also registers any UI routes needed to display results
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.WebRequestProfilerProvider.Start(ServiceStack.MiniProfiler.ProfileLevel)">
<summary>
Starts a new MiniProfiler and associates it with the current <see cref="P:System.Web.HttpContext.Current"/>.
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.WebRequestProfilerProvider.Stop(System.Boolean)">
<summary>
Ends the current profiling session, if one exists.
</summary>
<param name="discardResults">
When true, clears the <see cref="P:ServiceStack.MiniProfiler.Profiler.Current"/> for this HttpContext, allowing profiling to
be prematurely stopped and discarded. Useful for when a specific route does not need to be profiled.
</param>
</member>
<member name="M:ServiceStack.MiniProfiler.WebRequestProfilerProvider.EnsureName(ServiceStack.MiniProfiler.Profiler,System.Web.HttpRequest)">
<summary>
Makes sure 'profiler' has a Name, pulling it from route data or url.
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.WebRequestProfilerProvider.GetCurrentProfiler">
<summary>
Returns the current profiler
</summary>
<returns></returns>
</member>
<member name="P:ServiceStack.MiniProfiler.WebRequestProfilerProvider.Current">
<summary>
Gets the currently running MiniProfiler for the current HttpContext; null if no MiniProfiler was <see cref="M:ServiceStack.MiniProfiler.WebRequestProfilerProvider.Start(ServiceStack.MiniProfiler.ProfileLevel)"/>ed.
</summary>
</member>
<member name="T:ServiceStack.MiniProfiler.WebRequestProfilerProvider.Settings">
<summary>
WebRequestProfilerProvider specific configurations
</summary>
</member>
<member name="P:ServiceStack.MiniProfiler.WebRequestProfilerProvider.Settings.UserProvider">
<summary>
Provides user identification for a given profiling request.
</summary>
</member>
<member name="T:ServiceStack.MiniProfiler.Timing">
<summary>
An individual profiling step that can contain child steps.
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.Timing.RebuildParentTimings">
<summary>
Rebuilds all the parent timings on deserialization calls
</summary>
</member>
<member name="F:ServiceStack.MiniProfiler.Timing._startTicks">
<summary>
Offset from parent MiniProfiler's creation that this Timing was created.
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.Timing.#ctor(ServiceStack.MiniProfiler.Profiler,ServiceStack.MiniProfiler.Timing,System.String)">
<summary>
Creates a new Timing named 'name' in the 'profiler's session, with 'parent' as this Timing's immediate ancestor.
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.Timing.#ctor">
<summary>
Obsolete - used for serialization.
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.Timing.ToString">
<summary>
Returns this Timing's Name.
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.Timing.Equals(System.Object)">
<summary>
Returns true if Ids match.
</summary>
</member>
<member name="M:ServiceStack.MiniProfiler.Timing.GetHashCode">
<summary>
Returns hashcode of Id.
</summary>
</member>