-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMicrosoft.Scripting.xml
More file actions
3812 lines (3700 loc) · 201 KB
/
Microsoft.Scripting.xml
File metadata and controls
3812 lines (3700 loc) · 201 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.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="M:Microsoft.Scripting.Hosting.DocumentationOperations.GetMembers(System.Runtime.Remoting.ObjectHandle)">
<summary>
Gets the available members on the provided remote object.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.DocumentationOperations.GetOverloads(System.Runtime.Remoting.ObjectHandle)">
<summary>
Gets the overloads available for the provided remote object if it is invokable.
</summary>
</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.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.IndexSpan">
<summary>
This structure represents an immutable integer interval that describes a range of values, from Start to End.
It is closed on the left and open on the right: [Start .. End).
</summary>
</member>
<member name="T:Microsoft.Scripting.Runtime.ObjectDictionaryExpando">
<summary>
Wraps a an IDictionary[object, object] and exposes it as an IDynamicMetaObjectProvider so that
users can access string attributes using member accesses.
</summary>
</member>
<member name="T:Microsoft.Scripting.Runtime.DocumentationProvider">
<summary>
Provides language specific documentation for live objects.
</summary>
</member>
<member name="T:Microsoft.Scripting.Runtime.DynamicStackFrame">
<summary>
Helper for storing information about stack frames.
</summary>
</member>
<member name="T:Microsoft.Scripting.Runtime.StringDictionaryExpando">
<summary>
Exposes a IDictionary[string, object] as a dynamic object. Gets/sets/deletes turn
into accesses on the underlying dictionary.
</summary>
</member>
<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="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="M:Microsoft.Scripting.Hosting.CompiledCode.ExecuteAndWrap">
<summary>
Executes the code in an empty scope.
Returns an ObjectHandle wrapping the resulting value of running the code.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.CompiledCode.ExecuteAndWrap(Microsoft.Scripting.Hosting.ScriptScope)">
<summary>
Executes the code in the specified scope.
Returns an ObjectHandle wrapping the resulting value of running the code.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.CompiledCode.ExecuteAndWrap(System.Runtime.Remoting.ObjectHandle@)">
<summary>
Executes the code in an empty scope.
Returns an ObjectHandle wrapping the resulting value of running the code.
If an exception is thrown the exception is caught and an ObjectHandle to
the exception is provided.
</summary>
<remarks>
Use this API to handle non-serializable exceptions (exceptions might not be serializable due to security restrictions)
or if an exception serialization loses information.
</remarks>
</member>
<member name="M:Microsoft.Scripting.Hosting.CompiledCode.ExecuteAndWrap(Microsoft.Scripting.Hosting.ScriptScope,System.Runtime.Remoting.ObjectHandle@)">
<summary>
Executes the expression in the specified scope and return a result.
Returns an ObjectHandle wrapping the resulting value of running the code.
If an exception is thrown the exception is caught and an ObjectHandle to
the exception is provided.
</summary>
<remarks>
Use this API to handle non-serializable exceptions (exceptions might not be serializable due to security restrictions)
or if an exception serialization loses information.
</remarks>
</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="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.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="M:Microsoft.Scripting.Hosting.ObjectOperations.IsCallable(System.Runtime.Remoting.ObjectHandle)">
<summary>
Returns true if the remote object is callable.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Invoke(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle[])">
<summary>
Invokes the specified remote object with the specified remote parameters.
Though delegates are preferable for calls they may not always be usable for remote objects.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Invoke(System.Runtime.Remoting.ObjectHandle,System.Object[])">
<summary>
Invokes the specified remote object with the local parameters which will be serialized
to the remote app domain.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.CreateInstance(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle[])">
<summary>
Creates a new remote instance from the provided remote object using the given parameters, and returns the result.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.CreateInstance(System.Runtime.Remoting.ObjectHandle,System.Object[])">
<summary>
Creates a new remote instance from the provided remote object using the given parameters, and returns the result.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.SetMember(System.Runtime.Remoting.ObjectHandle,System.String,System.Runtime.Remoting.ObjectHandle)">
<summary>
Sets the remote object as a member on the provided remote object.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.SetMember``1(System.Runtime.Remoting.ObjectHandle,System.String,``0)">
<summary>
Sets the member name on the remote 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.Runtime.Remoting.ObjectHandle,System.String)">
<summary>
Gets the member name on the remote object. Throws an exception if the member is not defined or
is write-only.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetMember``1(System.Runtime.Remoting.ObjectHandle,System.String)">
<summary>
Gets the member name on the remote object. Throws an exception if the member is not defined or
is write-only.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryGetMember(System.Runtime.Remoting.ObjectHandle,System.String,System.Runtime.Remoting.ObjectHandle@)">
<summary>
Gets the member name on the remote object. Returns false if the member is not defined or
is write-only.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ContainsMember(System.Runtime.Remoting.ObjectHandle,System.String)">
<summary>
Tests to see if the member name is defined on the remote object.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.RemoveMember(System.Runtime.Remoting.ObjectHandle,System.String)">
<summary>
Removes the member from the remote object
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ConvertTo``1(System.Runtime.Remoting.ObjectHandle)">
<summary>
Converts the remote object into the specified type returning a handle to
the new remote object. The conversion will be explicit or implicit depending on
what the langauge prefers.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ConvertTo(System.Runtime.Remoting.ObjectHandle,System.Type)">
<summary>
Converts the remote object into the specified type returning a handle to
the new remote object. 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.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle@)">
<summary>
Converts the remote object into the specified type returning a handle to
the new remote object. 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.Runtime.Remoting.ObjectHandle,System.Type,System.Runtime.Remoting.ObjectHandle@)">
<summary>
Converts the remote object into the specified type returning a handle to
the new remote object. 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.Runtime.Remoting.ObjectHandle)">
<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.Runtime.Remoting.ObjectHandle,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.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle@)">
<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.Runtime.Remoting.ObjectHandle,System.Type,System.Runtime.Remoting.ObjectHandle@)">
<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.Runtime.Remoting.ObjectHandle)">
<summary>
Converts the object obj to the type T including implicit conversions.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ImplicitConvertTo(System.Runtime.Remoting.ObjectHandle,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.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle@)">
<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.Runtime.Remoting.ObjectHandle,System.Type,System.Runtime.Remoting.ObjectHandle@)">
<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.Unwrap``1(System.Runtime.Remoting.ObjectHandle)">
<summary>
Unwraps the remote object and converts it into the specified type before
returning it.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.DoOperation(System.Linq.Expressions.ExpressionType,System.Runtime.Remoting.ObjectHandle)">
<summary>
Performs the specified unary operator on the remote object.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.DoOperation(System.Linq.Expressions.ExpressionType,System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
<summary>
Performs the specified binary operator on the remote object.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Add(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
<summary>
Adds the two remote objects. Throws an exception if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Subtract(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
<summary>
Subtracts the 1st remote object from the second. Throws an exception if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Power(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
<summary>
Raises the 1st remote object to the power of the 2nd. Throws an exception if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Multiply(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
<summary>
Multiplies the two remote objects. Throws an exception if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Divide(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
<summary>
Divides the 1st remote object by the 2nd. Throws an exception if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Modulo(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
<summary>
Performs modulus on the 1st remote object by the 2nd. Throws an exception if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.LeftShift(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
<summary>
Shifts the 1st remote object left by the 2nd remote object. Throws an exception if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.RightShift(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
<summary>
Shifts the 1st remote object right by the 2nd remote object. Throws an exception if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.BitwiseAnd(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
<summary>
Performs bitwise-and on the two remote objects. Throws an exception if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.BitwiseOr(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
<summary>
Performs bitwise-or on the two remote objects. Throws an exception if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ExclusiveOr(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
<summary>
Performs exclusive-or on the two remote objects. Throws an exception if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.LessThan(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
<summary>
Compares the two remote objects and returns true if the 1st is less than the 2nd. Throws an exception if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GreaterThan(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
<summary>
Compares the two remote objects and returns true if the 1st is greater than the 2nd. Throws an exception if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.LessThanOrEqual(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
<summary>
Compares the two remote objects and returns true if the 1st is less than or equal to the 2nd. Throws an exception if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GreaterThanOrEqual(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
<summary>
Compares the two remote objects and returns true if the 1st is greater than or equal to than the 2nd. Throws an exception if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Equal(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
<summary>
Compares the two remote objects and returns true if the 1st is equal to the 2nd. Throws an exception if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.NotEqual(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
<summary>
Compares the two remote objects and returns true if the 1st is not equal to the 2nd. Throws an exception if the operation cannot be performed.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Format(System.Runtime.Remoting.ObjectHandle)">
<summary>
Returns a string representation of the object in a langauge specific object display format.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetMemberNames(System.Runtime.Remoting.ObjectHandle)">
<summary>
Returns a list of strings which contain the known members of the remote object.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetDocumentation(System.Runtime.Remoting.ObjectHandle)">
<summary>
Returns a string providing documentation for the specified remote object.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetCallSignatures(System.Runtime.Remoting.ObjectHandle)">
<summary>
Returns a list of signatures applicable for calling the specified object in a form displayable to the user.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetLocalObject(System.Runtime.Remoting.ObjectHandle)">
<summary>
Helper to unwrap an object - in the future maybe we should validate the current app domain.
</summary>
</member>
<member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetLocalObjects(System.Runtime.Remoting.ObjectHandle[])">
<summary>
Helper to unwrap multiple objects
</summary>
</member>
<member name="M:Microsoft.Scripting.LanguageOptions.GetStringCollectionOption(System.Collections.Generic.IDictionary{System.String,System.Object},System.String,System.Char[])">
<summary>
Reads an option whose value is expected to be a collection of non-null strings.
Reaturns a read-only copy of the option's value.
</summary>
</member>
<member name="P:Microsoft.Scripting.LanguageOptions.NoAdaptiveCompilation">
<summary>
Dynamically choose between interpreting, simple compilation and compilation
that takes advantage of runtime history.
</summary>
</member>
<member name="P:Microsoft.Scripting.LanguageOptions.CompilationThreshold">
<summary>
The number of iterations before the interpreter starts compiling.s
</summary>
</member>
<member name="P:Microsoft.Scripting.LanguageOptions.ExceptionDetail">
<summary>
Display exception detail (callstack) when exception gets caught
</summary>
</member>
<member name="P:Microsoft.Scripting.LanguageOptions.PerfStats">
<summary>
Whether to gather performance statistics.
</summary>
</member>
<member name="P:Microsoft.Scripting.LanguageOptions.SearchPaths">
<summary>
Initial file search paths provided by the host.
</summary>
</member>
<member name="T:Microsoft.Scripting.PlatformAdaptationLayer">
<summary>
Abstracts system operations that are used by DLR and could potentially be platform specific.
The host can implement its PAL to adapt DLR to the platform it is running on.
For example, the Silverlight host adapts some file operations to work against files on the server.
</summary>
</member>
<member name="M:Microsoft.Scripting.PlatformAdaptationLayer.GetFullPath(System.String)">
<exception cref="T:System.ArgumentException">Invalid path.</exception>
</member>
<member name="M:Microsoft.Scripting.PlatformAdaptationLayer.IsAbsolutePath(System.String)">
<exception cref="T:System.ArgumentException">Invalid path.</exception>
</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>