forked from exodrifter/unity-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMicrosoft.Scripting.xml
More file actions
3407 lines (3303 loc) · 173 KB
/
Microsoft.Scripting.xml
File metadata and controls
3407 lines (3303 loc) · 173 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>Microsoft.Scripting</name>
</assembly>
<members>
<member name="T:Microsoft.Scripting.CompilerOptions">
<summary>
Class that represents compiler options.
Note that this class is likely to change when hosting API becomes part of .Net
</summary>
</member>
<member name="M:Microsoft.Scripting.ErrorSink.Add(System.String,System.String,System.String,System.String,Microsoft.Scripting.SourceSpan,System.Int32,Microsoft.Scripting.Severity)">
<summary>
This overload will be called when a SourceUnit is not available. This can happen if the code is being executed remotely,
since SourceUnit cannot be marshaled across AppDomains.
</summary>
</member>
<member name="T:Microsoft.Scripting.Hosting.CompiledCode">
<summary>
Hosting API counterpart for <see cref="P:Microsoft.Scripting.Hosting.CompiledCode.ScriptCode"/>.
</summary>
</member>
<member name="P:Microsoft.Scripting.Hosting.CompiledCode.Engine">
<summary>
Engine that compiled this code.
</summary>
</member>
<member name="P:Microsoft.Scripting.Hosting.CompiledCode.DefaultScope">
<summary>
Default scope for this code.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.CompiledCode.Execute">
<summary>
Executes code in a default scope.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.CompiledCode.Execute(Microsoft.Scripting.Hosting.ScriptScope)">
<summary>
Execute code within a given scope and returns the result.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.CompiledCode.Execute``1">
<summary>
Executes code in in a default scope and converts to a given type.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.CompiledCode.Execute``1(Microsoft.Scripting.Hosting.ScriptScope)">
<summary>
Execute code within a given scope and converts result to a given type.
</summary>
</member>
<member name="T:Microsoft.Scripting.Hosting.DocumentationOperations">
<summary>
Provides documentation against live objects for use in a REPL window.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.DocumentationOperations.GetMembers(System.Object)">
<summary>
Gets the available members defined on the provided object.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.DocumentationOperations.GetOverloads(System.Object)">
<summary>
Gets the overloads available for the provided object if it is invokable.
</summary>
</member>
<member name="T:Microsoft.Scripting.Hosting.ErrorListener">
<summary>
The host can use this class to track for errors reported during script parsing and compilation.
Hosting API counterpart for <see cref="T:Microsoft.Scripting.ErrorSink"/>.
</summary>
</member>
<member name="T:Microsoft.Scripting.Hosting.ErrorListenerProxySink">
<summary>
Bridges ErrorSink and ErrorListener.
Errors reported by language compilers to ErrorSink are forwarded to the ErrorListener provided by the host.
</summary>
<remarks>
This proxy is created in the scenario when the compiler is processing a single SourceUnit.
Therefore it could maintain one to one mapping from SourceUnit to ScriptSource.
In a case, which shouldn't happen, that the compiler reports an error in a different SourceUnit we just create
a new instance of the ScriptSource each time.
TODO: Consider compilation of multiple source units and creating a hashtable mapping SourceUnits to ScriptSources
within the context of compilation unit.
</remarks>
</member>
<member name="T:Microsoft.Scripting.Hosting.ErrorSinkProxyListener">
<summary>
Bridges ErrorListener and ErrorSink. It provides the reverse functionality as ErrorSinkProxyListener
</summary>
</member>
<member name="T:Microsoft.Scripting.Hosting.LanguageSetup">
<summary>
Stores information needed to setup a language
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.LanguageSetup.#ctor(System.String)">
<summary>
Creates a new LanguageSetup
</summary>
<param name="typeName">assembly qualified type name of the language
provider</param>
</member>
<member name="M:Microsoft.Scripting.Hosting.LanguageSetup.#ctor(System.String,System.String)">
<summary>
Creates a new LanguageSetup with the provided options
TODO: remove this overload?
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.LanguageSetup.#ctor(System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IEnumerable{System.String})">
<summary>
Creates a new LanguageSetup with the provided options
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.LanguageSetup.GetOption``1(System.String,``0)">
<summary>
Gets an option as a strongly typed value.
</summary>
</member>
<member name="P:Microsoft.Scripting.Hosting.LanguageSetup.TypeName">
<summary>
The assembly qualified type name of the language provider
</summary>
</member>
<member name="P:Microsoft.Scripting.Hosting.LanguageSetup.DisplayName">
<summary>
Display name of the language. If empty, it will be set to the first
name in the Names list.
</summary>
</member>
<member name="P:Microsoft.Scripting.Hosting.LanguageSetup.Names">
<remarks>
Case-insensitive language names.
</remarks>
</member>
<member name="P:Microsoft.Scripting.Hosting.LanguageSetup.FileExtensions">
<remarks>
Case-insensitive file extension, optionally starts with a dot.
</remarks>
</member>
<member name="P:Microsoft.Scripting.Hosting.LanguageSetup.Options">
<remarks>
Option names are case-sensitive.
</remarks>
</member>
<member name="T:Microsoft.Scripting.Hosting.MemberDoc">
<summary>
Provides documentation about a member in a live object.
</summary>
</member>
<member name="P:Microsoft.Scripting.Hosting.MemberDoc.Name">
<summary>
The name of the member
</summary>
</member>
<member name="P:Microsoft.Scripting.Hosting.MemberDoc.Kind">
<summary>
The kind of the member if it's known.
</summary>
</member>
<member name="T:Microsoft.Scripting.Hosting.MemberKind">
<summary>
Specifies the type of member.
</summary>
</member>
<member name="T:Microsoft.Scripting.Hosting.ObjectOperations">
<summary>
ObjectOperations provide a large catalogue of object operations such as member access, conversions,
indexing, and things like addition. There are several introspection and tool support services available
for more advanced hosts.
You get ObjectOperation instances from ScriptEngine, and they are bound to their engines for the semantics
of the operations. There is a default instance of ObjectOperations you can share across all uses of the
engine. However, very advanced hosts can create new instances.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.IsCallable(System.Object)">
<summary>
Returns true if the object can be called, false if it cannot.
Even if an object is callable Call may still fail if an incorrect number of arguments or type of arguments are provided.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Invoke(System.Object,System.Object[])">
<summary>
Invokes the provided object with the given parameters and returns the result.
The prefered way of calling objects is to convert the object to a strongly typed delegate
using the ConvertTo methods and then invoking that delegate.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.InvokeMember(System.Object,System.String,System.Object[])">
<summary>
Invokes a member on the provided object with the given parameters and returns the result.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.CreateInstance(System.Object,System.Object[])">
<summary>
Creates a new instance from the provided object using the given parameters, and returns the result.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetMember(System.Object,System.String)">
<summary>
Gets the member name from the object obj. Throws an exception if the member does not exist or is write-only.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetMember``1(System.Object,System.String)">
<summary>
Gets the member name from the object obj and converts it to the type T. Throws an exception if the
member does not exist, is write-only, or cannot be converted.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryGetMember(System.Object,System.String,System.Object@)">
<summary>
Gets the member name from the object obj. Returns true if the member is successfully retrieved and
stores the value in the value out param.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ContainsMember(System.Object,System.String)">
<summary>
Returns true if the object has a member named name, false if the member does not exist.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.RemoveMember(System.Object,System.String)">
<summary>
Removes the member name from the object obj.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.SetMember(System.Object,System.String,System.Object)">
<summary>
Sets the member name on object obj to value.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.SetMember``1(System.Object,System.String,``0)">
<summary>
Sets the member name on object obj to value. This overload can be used to avoid
boxing and casting of strongly typed members.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetMember(System.Object,System.String,System.Boolean)">
<summary>
Gets the member name from the object obj. Throws an exception if the member does not exist or is write-only.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetMember``1(System.Object,System.String,System.Boolean)">
<summary>
Gets the member name from the object obj and converts it to the type T. Throws an exception if the
member does not exist, is write-only, or cannot be converted.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryGetMember(System.Object,System.String,System.Boolean,System.Object@)">
<summary>
Gets the member name from the object obj. Returns true if the member is successfully retrieved and
stores the value in the value out param.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ContainsMember(System.Object,System.String,System.Boolean)">
<summary>
Returns true if the object has a member named name, false if the member does not exist.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.RemoveMember(System.Object,System.String,System.Boolean)">
<summary>
Removes the member name from the object obj.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.SetMember(System.Object,System.String,System.Object,System.Boolean)">
<summary>
Sets the member name on object obj to value.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.SetMember``1(System.Object,System.String,``0,System.Boolean)">
<summary>
Sets the member name on object obj to value. This overload can be used to avoid
boxing and casting of strongly typed members.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ConvertTo``1(System.Object)">
<summary>
Converts the object obj to the type T. The conversion will be explicit or implicit depending on
what the langauge prefers.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ConvertTo(System.Object,System.Type)">
<summary>
Converts the object obj to the type type. The conversion will be explicit or implicit depending on
what the langauge prefers.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryConvertTo``1(System.Object,``0@)">
<summary>
Converts the object obj to the type T. Returns true if the value can be converted, false if it cannot.
The conversion will be explicit or implicit depending on what the langauge prefers.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryConvertTo(System.Object,System.Type,System.Object@)">
<summary>
Converts the object obj to the type type. Returns true if the value can be converted, false if it cannot.
The conversion will be explicit or implicit depending on what the langauge prefers.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ExplicitConvertTo``1(System.Object)">
<summary>
Converts the object obj to the type T including explicit conversions which may lose information.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ExplicitConvertTo(System.Object,System.Type)">
<summary>
Converts the object obj to the type type including explicit conversions which may lose information.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryExplicitConvertTo``1(System.Object,``0@)">
<summary>
Converts the object obj to the type T including explicit conversions which may lose information.
Returns true if the value can be converted, false if it cannot.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryExplicitConvertTo(System.Object,System.Type,System.Object@)">
<summary>
Converts the object obj to the type type including explicit conversions which may lose information.
Returns true if the value can be converted, false if it cannot.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ImplicitConvertTo``1(System.Object)">
<summary>
Converts the object obj to the type T including implicit conversions.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ImplicitConvertTo(System.Object,System.Type)">
<summary>
Converts the object obj to the type type including implicit conversions.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryImplicitConvertTo``1(System.Object,``0@)">
<summary>
Converts the object obj to the type T including implicit conversions.
Returns true if the value can be converted, false if it cannot.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryImplicitConvertTo(System.Object,System.Type,System.Object@)">
<summary>
Converts the object obj to the type type including implicit conversions.
Returns true if the value can be converted, false if it cannot.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.DoOperation(System.Linq.Expressions.ExpressionType,System.Object)">
<summary>
Performs a generic unary operation on the specified target and returns the result.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.DoOperation``2(System.Linq.Expressions.ExpressionType,``0)">
<summary>
Performs a generic unary operation on the strongly typed target and returns the value as the specified type
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.DoOperation(System.Linq.Expressions.ExpressionType,System.Object,System.Object)">
<summary>
Performs the generic binary operation on the specified targets and returns the result.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.DoOperation``3(System.Linq.Expressions.ExpressionType,``0,``1)">
<summary>
Peforms the generic binary operation on the specified strongly typed targets and returns
the strongly typed result.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Add(System.Object,System.Object)">
<summary>
Performs addition on the specified targets and returns the result. Throws an exception
if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Subtract(System.Object,System.Object)">
<summary>
Performs subtraction on the specified targets and returns the result. Throws an exception
if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Power(System.Object,System.Object)">
<summary>
Raises the first object to the power of the second object. Throws an exception
if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Multiply(System.Object,System.Object)">
<summary>
Multiplies the two objects. Throws an exception
if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Divide(System.Object,System.Object)">
<summary>
Divides the first object by the second object. Throws an exception
if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Modulo(System.Object,System.Object)">
<summary>
Performs modulus of the 1st object by the second object. Throws an exception
if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.LeftShift(System.Object,System.Object)">
<summary>
Shifts the left object left by the right object. Throws an exception if the
operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.RightShift(System.Object,System.Object)">
<summary>
Shifts the left object right by the right object. Throws an exception if the
operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.BitwiseAnd(System.Object,System.Object)">
<summary>
Performs a bitwise-and of the two operands. Throws an exception if the operation
cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.BitwiseOr(System.Object,System.Object)">
<summary>
Performs a bitwise-or of the two operands. Throws an exception if the operation
cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ExclusiveOr(System.Object,System.Object)">
<summary>
Performs a exclusive-or of the two operands. Throws an exception if the operation
cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.LessThan(System.Object,System.Object)">
<summary>
Compares the two objects and returns true if the left object is less than the right object.
Throws an exception if hte comparison cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GreaterThan(System.Object,System.Object)">
<summary>
Compares the two objects and returns true if the left object is greater than the right object.
Throws an exception if hte comparison cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.LessThanOrEqual(System.Object,System.Object)">
<summary>
Compares the two objects and returns true if the left object is less than or equal to the right object.
Throws an exception if hte comparison cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GreaterThanOrEqual(System.Object,System.Object)">
<summary>
Compares the two objects and returns true if the left object is greater than or equal to the right object.
Throws an exception if hte comparison cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Equal(System.Object,System.Object)">
<summary>
Compares the two objects and returns true if the left object is equal to the right object.
Throws an exception if the comparison cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.NotEqual(System.Object,System.Object)">
<summary>
Compares the two objects and returns true if the left object is not equal to the right object.
Throws an exception if hte comparison cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetCodeRepresentation(System.Object)">
<summary>
Returns a string which describes the object as it appears in source code
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Format(System.Object)">
<summary>
Returns a string representation of the object in a language specific object display format.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetMemberNames(System.Object)">
<summary>
Returns a list of strings which contain the known members of the object.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetDocumentation(System.Object)">
<summary>
Returns a string providing documentation for the specified object.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetCallSignatures(System.Object)">
<summary>
Returns a list of signatures applicable for calling the specified object in a form displayable to the user.
</summary>
</member>
<member name="T:Microsoft.Scripting.Hosting.OverloadDoc">
<summary>
Provides documentation for a single overload of an invokable object.
</summary>
</member>
<member name="P:Microsoft.Scripting.Hosting.OverloadDoc.Name">
<summary>
The name of the invokable object.
</summary>
</member>
<member name="P:Microsoft.Scripting.Hosting.OverloadDoc.Documentation">
<summary>
The documentation for the overload or null if no documentation is available.
</summary>
</member>
<member name="P:Microsoft.Scripting.Hosting.OverloadDoc.Parameters">
<summary>
The parameters for the invokable object.
</summary>
</member>
<member name="P:Microsoft.Scripting.Hosting.OverloadDoc.ReturnParameter">
<summary>
Information about the return value.
</summary>
</member>
<member name="T:Microsoft.Scripting.Hosting.ParameterDoc">
<summary>
Provides documentation for a single parameter.
</summary>
</member>
<member name="P:Microsoft.Scripting.Hosting.ParameterDoc.Name">
<summary>
The name of the parameter
</summary>
</member>
<member name="P:Microsoft.Scripting.Hosting.ParameterDoc.TypeName">
<summary>
The type name of the parameter or null if no type information is available.
</summary>
</member>
<member name="P:Microsoft.Scripting.Hosting.ParameterDoc.Flags">
<summary>
Provides addition information about the parameter such as if it's a parameter array.
</summary>
</member>
<member name="P:Microsoft.Scripting.Hosting.ParameterDoc.Documentation">
<summary>
Gets the documentation string for this parameter or null if no documentation is available.
</summary>
</member>
<member name="T:Microsoft.Scripting.Hosting.ParameterFlags">
<summary>
Indications extra information about a parameter such as if it's a parameter array.
</summary>
</member>
<member name="T:Microsoft.Scripting.Hosting.Providers.HostingHelpers">
<summary>
Advanced APIs for HAPI providers. These methods should not be used by hosts.
They are provided for other hosting API implementers that would like to leverage existing HAPI and
extend it with language specific functionality, for example.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.Providers.HostingHelpers.GetDomainManager(Microsoft.Scripting.Hosting.ScriptRuntime)">
<exception cref="T:System.ArgumentNullException"><paramref name="runtime"/> is a <c>null</c> reference.</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException"><paramref name="runtime"/> is remote.</exception>
</member>
<member name="M:Microsoft.Scripting.Hosting.Providers.HostingHelpers.GetLanguageContext(Microsoft.Scripting.Hosting.ScriptEngine)">
<exception cref="T:System.ArgumentNullException"><paramref name="engine"/>e is a <c>null</c> reference.</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException"><paramref name="engine"/> is remote.</exception>
</member>
<member name="M:Microsoft.Scripting.Hosting.Providers.HostingHelpers.GetSourceUnit(Microsoft.Scripting.Hosting.ScriptSource)">
<exception cref="T:System.ArgumentNullException"><paramref name="scriptSource"/> is a <c>null</c> reference.</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException"><paramref name="scriptSource"/> is remote.</exception>
</member>
<member name="M:Microsoft.Scripting.Hosting.Providers.HostingHelpers.GetScriptCode(Microsoft.Scripting.Hosting.CompiledCode)">
<exception cref="T:System.ArgumentNullException"><paramref name="compiledCode"/> is a <c>null</c> reference.</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException"><paramref name="compiledCode"/> is remote.</exception>
</member>
<member name="M:Microsoft.Scripting.Hosting.Providers.HostingHelpers.GetSharedIO(Microsoft.Scripting.Hosting.ScriptIO)">
<exception cref="T:System.ArgumentNullException"><paramref name="io"/> is a <c>null</c> reference.</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException"><paramref name="io"/> is remote.</exception>
</member>
<member name="M:Microsoft.Scripting.Hosting.Providers.HostingHelpers.GetScope(Microsoft.Scripting.Hosting.ScriptScope)">
<exception cref="T:System.ArgumentNullException"><paramref name="scriptScope"/> is a <c>null</c> reference.</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException"><paramref name="scriptScope"/> is remote.</exception>
</member>
<member name="M:Microsoft.Scripting.Hosting.Providers.HostingHelpers.CreateScriptScope(Microsoft.Scripting.Hosting.ScriptEngine,Microsoft.Scripting.Runtime.Scope)">
<exception cref="T:System.ArgumentNullException"><paramref name="engine"/> is a <c>null</c> reference.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="scope"/> is a <c>null</c> reference.</exception>
<exception cref="T:System.ArgumentException"><paramref name="engine"/> is a transparent proxy.</exception>
</member>
<member name="M:Microsoft.Scripting.Hosting.Providers.HostingHelpers.CallEngine``2(Microsoft.Scripting.Hosting.ScriptEngine,System.Func{Microsoft.Scripting.Runtime.LanguageContext,``0,``1},``0)">
<summary>
Performs a callback in the ScriptEngine's app domain and returns the result.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.Providers.HostingHelpers.CreateDocumentationOperations(Microsoft.Scripting.Runtime.DocumentationProvider)">
<summary>
Creates a new DocumentationOperations object from the given DocumentationProvider.
</summary>
</member>
<member name="T:Microsoft.Scripting.Hosting.ScriptEngine">
<summary>
Represents a language in Hosting API.
Hosting API counterpart for <see cref="P:Microsoft.Scripting.Hosting.ScriptEngine.LanguageContext"/>.
</summary>
</member>
<member name="P:Microsoft.Scripting.Hosting.ScriptEngine.Operations">
<summary>
Returns a default ObjectOperations for the engine.
Because an ObjectOperations object caches rules for the types of
objects and operations it processes, using the default ObjectOperations for
many objects could degrade the caching benefits. Eventually the cache for
some operations could degrade to a point where ObjectOperations stops caching and
does a full search for an implementation of the requested operation for the given objects.
Another reason to create a new ObjectOperations instance is to have it bound
to the specific view of a ScriptScope. Languages may attach per-language
behavior to a ScriptScope which would alter how the operations are performed.
For simple hosting situations, this is sufficient behavior.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateOperations">
<summary>
Returns a new ObjectOperations object. See the Operations property for why you might want to call this.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateOperations(Microsoft.Scripting.Hosting.ScriptScope)">
<summary>
Returns a new ObjectOperations object that inherits any semantics particular to the provided ScriptScope.
See the Operations property for why you might want to call this.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.Execute(System.String)">
<summary>
Executes an expression. The execution is not bound to any particular scope.
</summary>
<exception cref="T:System.NotSupportedException">The engine doesn't support code execution.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="expression"/> is a <c>null</c> reference.</exception>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.Execute(System.String,Microsoft.Scripting.Hosting.ScriptScope)">
<summary>
Executes an expression within the specified scope.
</summary>
<exception cref="T:System.NotSupportedException">The engine doesn't support code execution.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="expression"/> is a <c>null</c> reference.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="scope"/> is a <c>null</c> reference.</exception>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.Execute``1(System.String)">
<summary>
Executes an expression within a new scope and converts result to the given type.
</summary>
<exception cref="T:System.NotSupportedException">The engine doesn't support code execution.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="expression"/> is a <c>null</c> reference.</exception>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.Execute``1(System.String,Microsoft.Scripting.Hosting.ScriptScope)">
<summary>
Executes an expression within the specified scope and converts result to the given type.
</summary>
<exception cref="T:System.NotSupportedException">The engine doesn't support code execution.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="expression"/> is a <c>null</c> reference.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="scope"/> is a <c>null</c> reference.</exception>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.ExecuteFile(System.String)">
<summary>
Executes content of the specified file in a new scope and returns that scope.
</summary>
<exception cref="T:System.NotSupportedException">The engine doesn't support code execution.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="path"/> is a <c>null</c> reference.</exception>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.ExecuteFile(System.String,Microsoft.Scripting.Hosting.ScriptScope)">
<summary>
Executes content of the specified file against the given scope.
</summary>
<returns>The <paramref name="scope"/>.</returns>
<exception cref="T:System.NotSupportedException">The engine doesn't support code execution.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="path"/> is a <c>null</c> reference.</exception>
<exception cref="T:System.ArgumentNullException"><paramref name="scope"/> is a <c>null</c> reference.</exception>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScope">
<summary>
Creates a new ScriptScope using the default storage container
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScope(System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>
Creates a new ScriptScope whose storage contains the provided dictionary of objects
Accesses to the ScriptScope will turn into get,set, and delete members against this dictionary
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScope(System.Dynamic.IDynamicMetaObjectProvider)">
<summary>
Creates a new ScriptScope whose storage is an arbitrary object.
Accesses to the ScriptScope will turn into get, set, and delete members against the object.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.GetScope(System.String)">
<summary>
This method returns the ScriptScope in which a ScriptSource of given path was executed.
The ScriptSource.Path property is the key to finding the ScriptScope. Hosts need
to make sure they create a ScriptSource and set its Path property appropriately.
GetScope is primarily useful for tools that need to map files to their execution scopes. For example,
an editor and interpreter tool might run a file Foo that imports or requires a file Bar.
The editor's user might later open the file Bar and want to execute expressions in its context.
The tool would need to find Bar's ScriptScope for setting the appropriate context in its interpreter window.
This method helps with this scenario.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSourceFromString(System.String)">
<summary>
Return a ScriptSource object from string contents with the current engine as the language binding.
The default SourceCodeKind is AutoDetect.
The ScriptSource's Path property defaults to <c>null</c>.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSourceFromString(System.String,Microsoft.Scripting.SourceCodeKind)">
<summary>
Return a ScriptSource object from string contents with the current engine as the language binding.
The ScriptSource's Path property defaults to <c>null</c>.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSourceFromString(System.String,System.String)">
<summary>
Return a ScriptSource object from string contents with the current engine as the language binding.
The default SourceCodeKind is AutoDetect.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSourceFromString(System.String,System.String,Microsoft.Scripting.SourceCodeKind)">
<summary>
Return a ScriptSource object from string contents. These are helpers for creating ScriptSources' with the right language binding.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSourceFromFile(System.String)">
<summary>
Return a ScriptSource object from file contents with the current engine as the language binding.
The path's extension does NOT have to be in ScriptRuntime.GetRegisteredFileExtensions
or map to this language engine with ScriptRuntime.GetEngineByFileExtension.
The default SourceCodeKind is File.
The ScriptSource's Path property will be the path argument.
The encoding defaults to System.Text.Encoding.Default.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSourceFromFile(System.String,System.Text.Encoding)">
<summary>
Return a ScriptSource object from file contents with the current engine as the language binding.
The path's extension does NOT have to be in ScriptRuntime.GetRegisteredFileExtensions
or map to this language engine with ScriptRuntime.GetEngineByFileExtension.
The default SourceCodeKind is File.
The ScriptSource's Path property will be the path argument.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSourceFromFile(System.String,System.Text.Encoding,Microsoft.Scripting.SourceCodeKind)">
<summary>
Return a ScriptSource object from file contents with the current engine as the language binding.
The path's extension does NOT have to be in ScriptRuntime.GetRegisteredFileExtensions
or map to this language engine with ScriptRuntime.GetEngineByFileExtension.
The ScriptSource's Path property will be the path argument.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSource(System.CodeDom.CodeObject)">
<summary>
This method returns a ScriptSource object from a System.CodeDom.CodeObject.
This is a factory method for creating a ScriptSources with this language binding.
The expected CodeDom support is extremely minimal for syntax-independent expression of semantics.
Languages may do more, but hosts should only expect CodeMemberMethod support,
and only sub nodes consisting of the following:
CodeSnippetStatement
CodeSnippetExpression
CodePrimitiveExpression
CodeMethodInvokeExpression
CodeExpressionStatement (for holding MethodInvoke)
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSource(System.CodeDom.CodeObject,System.String)">
<summary>
This method returns a ScriptSource object from a System.CodeDom.CodeObject.
This is a factory method for creating a ScriptSources with this language binding.
The expected CodeDom support is extremely minimal for syntax-independent expression of semantics.
Languages may do more, but hosts should only expect CodeMemberMethod support,
and only sub nodes consisting of the following:
CodeSnippetStatement
CodeSnippetExpression
CodePrimitiveExpression
CodeMethodInvokeExpression
CodeExpressionStatement (for holding MethodInvoke)
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSource(System.CodeDom.CodeObject,Microsoft.Scripting.SourceCodeKind)">
<summary>
This method returns a ScriptSource object from a System.CodeDom.CodeObject.
This is a factory method for creating a ScriptSources with this language binding.
The expected CodeDom support is extremely minimal for syntax-independent expression of semantics.
Languages may do more, but hosts should only expect CodeMemberMethod support,
and only sub nodes consisting of the following:
CodeSnippetStatement
CodeSnippetExpression
CodePrimitiveExpression
CodeMethodInvokeExpression
CodeExpressionStatement (for holding MethodInvoke)
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSource(System.CodeDom.CodeObject,System.String,Microsoft.Scripting.SourceCodeKind)">
<summary>
This method returns a ScriptSource object from a System.CodeDom.CodeObject.
This is a factory method for creating a ScriptSources with this language binding.
The expected CodeDom support is extremely minimal for syntax-independent expression of semantics.
Languages may do more, but hosts should only expect CodeMemberMethod support,
and only sub nodes consisting of the following:
CodeSnippetStatement
CodeSnippetExpression
CodePrimitiveExpression
CodeMethodInvokeExpression
CodeExpressionStatement (for holding MethodInvoke)
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSource(Microsoft.Scripting.StreamContentProvider,System.String)">
<summary>
These methods return ScriptSource objects from stream contents with the current engine as the language binding.
The default SourceCodeKind is File.
The encoding defaults to Encoding.Default.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSource(Microsoft.Scripting.StreamContentProvider,System.String,System.Text.Encoding)">
<summary>
These methods return ScriptSource objects from stream contents with the current engine as the language binding.
The default SourceCodeKind is File.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSource(Microsoft.Scripting.StreamContentProvider,System.String,System.Text.Encoding,Microsoft.Scripting.SourceCodeKind)">
<summary>
These methods return ScriptSource objects from stream contents with the current engine as the language binding.
The encoding defaults to Encoding.Default.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSource(Microsoft.Scripting.TextContentProvider,System.String,Microsoft.Scripting.SourceCodeKind)">
<summary>
This method returns a ScriptSource with the content provider supplied with the current engine as the language binding.
This helper lets you own the content provider so that you can implement a stream over internal host data structures, such as an editor's text representation.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.GetService``1(System.Object[])">
<summary>
This method returns a language-specific service.
It provides a point of extensibility for a language implementation
to offer more functionality than the standard engine members discussed here.
Commonly available services include:
TokenCategorizer
Provides standardized tokenization of source code
ExceptionOperations
Provides formatting of exception objects.
DocumentationProvidera
Provides documentation for live object.
</summary>
</member>
<member name="P:Microsoft.Scripting.Hosting.ScriptEngine.Setup">
<summary>
This property returns readon-only LanguageOptions this engine is using.
</summary>
<remarks>
The values are determined during runtime initialization and read-only afterwards.
You can change the settings via a configuration file or explicitly using ScriptRuntimeSetup class.
</remarks>
</member>
<member name="P:Microsoft.Scripting.Hosting.ScriptEngine.Runtime">
<summary>
This property returns the ScriptRuntime for the context in which this engine executes.
</summary>
</member>
<member name="P:Microsoft.Scripting.Hosting.ScriptEngine.LanguageVersion">
<summary>
This property returns the engine's version as a string. The format is language-dependent.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.SetSearchPaths(System.Collections.Generic.ICollection{System.String})">
<summary>
Sets the search paths used by the engine for loading files when a script wants
to import or require another file of code.
</summary>
<exception cref="T:System.NotSupportedException">The language doesn't allow to set search paths.</exception>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptEngine.GetSearchPaths">
<summary>
Gets the search paths used by the engine for loading files when a script wants
to import or require another file of code.
</summary>
</member>
<member name="T:Microsoft.Scripting.Hosting.ScriptHost">
<summary>
ScriptHost is collocated with ScriptRuntime in the same app-domain.
The host can implement a derived class to consume some notifications and/or
customize operations like TryGetSourceUnit,ResolveSourceUnit, etc.
The areguments to the the constructor of the derived class are specified in ScriptRuntimeSetup
instance that enters ScriptRuntime initialization.
If the host is remote with respect to DLR (i.e. also with respect to ScriptHost)
and needs to access objects living in its app-domain it can pass MarshalByRefObject
as an argument to its ScriptHost subclass constructor.
</summary>
</member>
<member name="F:Microsoft.Scripting.Hosting.ScriptHost._runtime">
<summary>
The runtime the host is attached to.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptHost.RuntimeAttached">
<summary>
Invoked after the initialization of the associated Runtime is finished.
The host can override this method to perform additional initialization of runtime (like loading assemblies etc.).
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptHost.EngineCreated(Microsoft.Scripting.Hosting.ScriptEngine)">
<summary>
Invoked after a new language is loaded into the Runtime.
The host can override this method to perform additional initialization of language engines.
</summary>
</member>
<member name="T:Microsoft.Scripting.Hosting.ScriptHostProxy">
<summary>
Provides hosting to DLR. Forwards DLR requests to the ScriptHost.
</summary>
</member>
<member name="T:Microsoft.Scripting.Hosting.ScriptIO">
<summary>
Provides host-redirectable IO streams used by DLR languages for default IO.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptIO.SetOutput(System.IO.Stream,System.Text.Encoding)">
<summary>
Used if the host stores the output as binary data.
</summary>
<param name="stream">Binary stream to write data to.</param>
<param name="encoding">Encoding used to convert textual data written to the output by the script.</param>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptIO.SetOutput(System.IO.Stream,System.IO.TextWriter)">
<summary>
Used if the host handles both kinds of data (textual and binary) by itself.
</summary>
</member>
<member name="T:Microsoft.Scripting.Hosting.ScriptRuntime">
<summary>
Represents a Dynamic Language Runtime in Hosting API.
Hosting API counterpart for <see cref="T:Microsoft.Scripting.Runtime.ScriptDomainManager"/>.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptRuntime.#ctor(Microsoft.Scripting.Hosting.ScriptRuntimeSetup)">
<summary>
Creates ScriptRuntime in the current app-domain and initialized according to the the specified settings.
Creates an instance of host class specified in the setup and associates it with the created runtime.
Both Runtime and ScriptHost are collocated in the current app-domain.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptRuntime.CreateFromConfiguration">
<summary>
Creates a new runtime with languages set up according to the current application configuration
(using System.Configuration).
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ScriptRuntime.GetEngineByFileExtension(System.String)">
<exception cref="T:System.ArgumentException"></exception>