Diff of /trunk/cforge/packages/IronPython-2.7.8/Net45/Microsoft.Scripting.xml [000000] .. [r33]  Maximize  Restore

Switch to unified view

a b/trunk/cforge/packages/IronPython-2.7.8/Net45/Microsoft.Scripting.xml
1
<?xml version="1.0"?>
2
<doc>
3
    <assembly>
4
        <name>Microsoft.Scripting</name>
5
    </assembly>
6
    <members>
7
        <member name="T:Microsoft.Scripting.CompilerOptions">
8
            <summary>
9
            Class that represents compiler options.
10
            Note that this class is likely to change when hosting API becomes part of .Net
11
            </summary>
12
        </member>
13
        <member name="M:Microsoft.Scripting.ErrorSink.Add(System.String,System.String,System.String,System.String,Microsoft.Scripting.SourceSpan,System.Int32,Microsoft.Scripting.Severity)">
14
            <summary>
15
            This overload will be called when a SourceUnit is not available. This can happen if the code is being executed remotely,
16
            since SourceUnit cannot be marshaled across AppDomains.
17
            </summary>
18
        </member>
19
        <member name="T:Microsoft.Scripting.Hosting.CompiledCode">
20
            <summary>
21
            Hosting API counterpart for <see cref="P:Microsoft.Scripting.Hosting.CompiledCode.ScriptCode"/>.
22
            </summary>
23
        </member>
24
        <member name="P:Microsoft.Scripting.Hosting.CompiledCode.Engine">
25
            <summary>
26
            Engine that compiled this code.
27
            </summary>
28
        </member>
29
        <member name="P:Microsoft.Scripting.Hosting.CompiledCode.DefaultScope">
30
            <summary>
31
            Default scope for this code.
32
            </summary>
33
        </member>
34
        <member name="M:Microsoft.Scripting.Hosting.CompiledCode.Execute">
35
            <summary>
36
            Executes code in a default scope.
37
            </summary>
38
        </member>
39
        <member name="M:Microsoft.Scripting.Hosting.CompiledCode.Execute(Microsoft.Scripting.Hosting.ScriptScope)">
40
            <summary>
41
            Execute code within a given scope and returns the result.
42
            </summary>
43
        </member>
44
        <member name="M:Microsoft.Scripting.Hosting.CompiledCode.Execute``1">
45
            <summary>
46
            Executes code in in a default scope and converts to a given type.
47
            </summary>
48
        </member>
49
        <member name="M:Microsoft.Scripting.Hosting.CompiledCode.Execute``1(Microsoft.Scripting.Hosting.ScriptScope)">
50
            <summary>
51
            Execute code within a given scope and converts result to a given type.
52
            </summary>
53
        </member>
54
        <member name="M:Microsoft.Scripting.Hosting.CompiledCode.ExecuteAndWrap">
55
            <summary>
56
            Executes the code in an empty scope.
57
            Returns an ObjectHandle wrapping the resulting value of running the code.  
58
            </summary>
59
        </member>
60
        <member name="M:Microsoft.Scripting.Hosting.CompiledCode.ExecuteAndWrap(Microsoft.Scripting.Hosting.ScriptScope)">
61
            <summary>
62
            Executes the code in the specified scope.
63
            Returns an ObjectHandle wrapping the resulting value of running the code.  
64
            </summary>
65
        </member>
66
        <member name="M:Microsoft.Scripting.Hosting.CompiledCode.ExecuteAndWrap(System.Runtime.Remoting.ObjectHandle@)">
67
            <summary>
68
            Executes the code in an empty scope.
69
            Returns an ObjectHandle wrapping the resulting value of running the code.  
70
            
71
            If an exception is thrown the exception is caught and an ObjectHandle to
72
            the exception is provided.
73
            </summary>
74
            <remarks>
75
            Use this API to handle non-serializable exceptions (exceptions might not be serializable due to security restrictions) 
76
            or if an exception serialization loses information.
77
            </remarks>
78
        </member>
79
        <member name="M:Microsoft.Scripting.Hosting.CompiledCode.ExecuteAndWrap(Microsoft.Scripting.Hosting.ScriptScope,System.Runtime.Remoting.ObjectHandle@)">
80
            <summary>
81
            Executes the expression in the specified scope and return a result.
82
            Returns an ObjectHandle wrapping the resulting value of running the code.  
83
            
84
            If an exception is thrown the exception is caught and an ObjectHandle to
85
            the exception is provided.
86
            </summary>
87
            <remarks>
88
            Use this API to handle non-serializable exceptions (exceptions might not be serializable due to security restrictions) 
89
            or if an exception serialization loses information.
90
            </remarks>
91
        </member>
92
        <member name="T:Microsoft.Scripting.Hosting.DocumentationOperations">
93
            <summary>
94
            Provides documentation against live objects for use in a REPL window.
95
            </summary>
96
        </member>
97
        <member name="M:Microsoft.Scripting.Hosting.DocumentationOperations.GetMembers(System.Object)">
98
            <summary>
99
            Gets the available members defined on the provided object.
100
            </summary>
101
        </member>
102
        <member name="M:Microsoft.Scripting.Hosting.DocumentationOperations.GetOverloads(System.Object)">
103
            <summary>
104
            Gets the overloads available for the provided object if it is invokable.
105
            </summary>
106
        </member>
107
        <member name="M:Microsoft.Scripting.Hosting.DocumentationOperations.GetMembers(System.Runtime.Remoting.ObjectHandle)">
108
            <summary>
109
            Gets the available members on the provided remote object.
110
            </summary>
111
        </member>
112
        <member name="M:Microsoft.Scripting.Hosting.DocumentationOperations.GetOverloads(System.Runtime.Remoting.ObjectHandle)">
113
            <summary>
114
            Gets the overloads available for the provided remote object if it is invokable.
115
            </summary>
116
        </member>
117
        <member name="T:Microsoft.Scripting.Hosting.ErrorListener">
118
            <summary>
119
            The host can use this class to track for errors reported during script parsing and compilation.
120
            Hosting API counterpart for <see cref="T:Microsoft.Scripting.ErrorSink"/>.
121
            </summary>
122
        </member>
123
        <member name="T:Microsoft.Scripting.Hosting.ErrorListenerProxySink">
124
            <summary>
125
            Bridges ErrorSink and ErrorListener. 
126
            Errors reported by language compilers to ErrorSink are forwarded to the ErrorListener provided by the host.
127
            </summary>
128
            <remarks>
129
            This proxy is created in the scenario when the compiler is processing a single SourceUnit.
130
            Therefore it could maintain one to one mapping from SourceUnit to ScriptSource.
131
            In a case, which shouldn't happen, that the compiler reports an error in a different SourceUnit we just create 
132
            a new instance of the ScriptSource each time. 
133
            
134
            TODO: Consider compilation of multiple source units and creating a hashtable mapping SourceUnits to ScriptSources
135
            within the context of compilation unit.
136
            </remarks>
137
        </member>
138
        <member name="T:Microsoft.Scripting.Hosting.ErrorSinkProxyListener">
139
            <summary>
140
            Bridges ErrorListener and ErrorSink. It provides the reverse functionality as ErrorSinkProxyListener
141
            </summary>
142
        </member>
143
        <member name="T:Microsoft.Scripting.Hosting.LanguageSetup">
144
            <summary>
145
            Stores information needed to setup a language
146
            </summary>
147
        </member>
148
        <member name="M:Microsoft.Scripting.Hosting.LanguageSetup.#ctor(System.String)">
149
            <summary>
150
            Creates a new LanguageSetup
151
            </summary>
152
            <param name="typeName">assembly qualified type name of the language
153
            provider</param>
154
        </member>
155
        <member name="M:Microsoft.Scripting.Hosting.LanguageSetup.#ctor(System.String,System.String)">
156
            <summary>
157
            Creates a new LanguageSetup with the provided options
158
            TODO: remove this overload?
159
            </summary>
160
        </member>
161
        <member name="M:Microsoft.Scripting.Hosting.LanguageSetup.#ctor(System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Collections.Generic.IEnumerable{System.String})">
162
            <summary>
163
            Creates a new LanguageSetup with the provided options
164
            </summary>
165
        </member>
166
        <member name="M:Microsoft.Scripting.Hosting.LanguageSetup.GetOption``1(System.String,``0)">
167
            <summary>
168
            Gets an option as a strongly typed value.
169
            </summary>
170
        </member>
171
        <member name="P:Microsoft.Scripting.Hosting.LanguageSetup.TypeName">
172
            <summary>
173
            The assembly qualified type name of the language provider
174
            </summary>
175
        </member>
176
        <member name="P:Microsoft.Scripting.Hosting.LanguageSetup.DisplayName">
177
            <summary>
178
            Display name of the language. If empty, it will be set to the first
179
            name in the Names list.
180
            </summary>
181
        </member>
182
        <member name="P:Microsoft.Scripting.Hosting.LanguageSetup.Names">
183
            <remarks>
184
            Case-insensitive language names.
185
            </remarks>
186
        </member>
187
        <member name="P:Microsoft.Scripting.Hosting.LanguageSetup.FileExtensions">
188
            <remarks>
189
            Case-insensitive file extension, optionally starts with a dot.
190
            </remarks>
191
        </member>
192
        <member name="P:Microsoft.Scripting.Hosting.LanguageSetup.Options">
193
            <remarks>
194
            Option names are case-sensitive.
195
            </remarks>
196
        </member>
197
        <member name="T:Microsoft.Scripting.Hosting.MemberDoc">
198
            <summary>
199
            Provides documentation about a member in a live object.
200
            </summary>
201
        </member>
202
        <member name="P:Microsoft.Scripting.Hosting.MemberDoc.Name">
203
            <summary>
204
            The name of the member
205
            </summary>
206
        </member>
207
        <member name="P:Microsoft.Scripting.Hosting.MemberDoc.Kind">
208
            <summary>
209
            The kind of the member if it's known.
210
            </summary>
211
        </member>
212
        <member name="T:Microsoft.Scripting.Hosting.MemberKind">
213
            <summary>
214
            Specifies the type of member.
215
            </summary>
216
        </member>
217
        <member name="T:Microsoft.Scripting.Hosting.ObjectOperations">
218
            <summary>
219
            ObjectOperations provide a large catalogue of object operations such as member access, conversions, 
220
            indexing, and things like addition.  There are several introspection and tool support services available
221
            for more advanced hosts.  
222
            
223
            You get ObjectOperation instances from ScriptEngine, and they are bound to their engines for the semantics 
224
            of the operations.  There is a default instance of ObjectOperations you can share across all uses of the 
225
            engine.  However, very advanced hosts can create new instances.
226
            </summary>
227
        </member>
228
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.IsCallable(System.Object)">
229
            <summary>
230
            Returns true if the object can be called, false if it cannot.  
231
            
232
            Even if an object is callable Call may still fail if an incorrect number of arguments or type of arguments are provided.
233
            </summary>
234
        </member>
235
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Invoke(System.Object,System.Object[])">
236
            <summary>
237
            Invokes the provided object with the given parameters and returns the result.
238
            
239
            The prefered way of calling objects is to convert the object to a strongly typed delegate 
240
            using the ConvertTo methods and then invoking that delegate.
241
            </summary>
242
        </member>
243
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.InvokeMember(System.Object,System.String,System.Object[])">
244
            <summary>
245
            Invokes a member on the provided object with the given parameters and returns the result.
246
            </summary>
247
        </member>
248
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.CreateInstance(System.Object,System.Object[])">
249
            <summary>
250
            Creates a new instance from the provided object using the given parameters, and returns the result.
251
            </summary>
252
        </member>
253
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetMember(System.Object,System.String)">
254
            <summary>
255
            Gets the member name from the object obj.  Throws an exception if the member does not exist or is write-only.
256
            </summary>
257
        </member>
258
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetMember``1(System.Object,System.String)">
259
            <summary>
260
            Gets the member name from the object obj and converts it to the type T.  Throws an exception if the
261
            member does not exist, is write-only, or cannot be converted.
262
            </summary>
263
        </member>
264
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryGetMember(System.Object,System.String,System.Object@)">
265
            <summary>
266
            Gets the member name from the object obj.  Returns true if the member is successfully retrieved and 
267
            stores the value in the value out param.
268
            </summary>
269
        </member>
270
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ContainsMember(System.Object,System.String)">
271
            <summary>
272
            Returns true if the object has a member named name, false if the member does not exist.
273
            </summary>
274
        </member>
275
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.RemoveMember(System.Object,System.String)">
276
            <summary>
277
            Removes the member name from the object obj.  
278
            </summary>
279
        </member>
280
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.SetMember(System.Object,System.String,System.Object)">
281
            <summary>
282
            Sets the member name on object obj to value.
283
            </summary>
284
        </member>
285
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.SetMember``1(System.Object,System.String,``0)">
286
            <summary>
287
            Sets the member name on object obj to value.  This overload can be used to avoid
288
            boxing and casting of strongly typed members.
289
            </summary>
290
        </member>
291
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetMember(System.Object,System.String,System.Boolean)">
292
            <summary>
293
            Gets the member name from the object obj.  Throws an exception if the member does not exist or is write-only.
294
            </summary>
295
        </member>
296
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetMember``1(System.Object,System.String,System.Boolean)">
297
            <summary>
298
            Gets the member name from the object obj and converts it to the type T.  Throws an exception if the
299
            member does not exist, is write-only, or cannot be converted.
300
            </summary>
301
        </member>
302
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryGetMember(System.Object,System.String,System.Boolean,System.Object@)">
303
            <summary>
304
            Gets the member name from the object obj.  Returns true if the member is successfully retrieved and 
305
            stores the value in the value out param.
306
            </summary>
307
        </member>
308
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ContainsMember(System.Object,System.String,System.Boolean)">
309
            <summary>
310
            Returns true if the object has a member named name, false if the member does not exist.
311
            </summary>
312
        </member>
313
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.RemoveMember(System.Object,System.String,System.Boolean)">
314
            <summary>
315
            Removes the member name from the object obj.  
316
            </summary>
317
        </member>
318
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.SetMember(System.Object,System.String,System.Object,System.Boolean)">
319
            <summary>
320
            Sets the member name on object obj to value.
321
            </summary>
322
        </member>
323
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.SetMember``1(System.Object,System.String,``0,System.Boolean)">
324
            <summary>
325
            Sets the member name on object obj to value.  This overload can be used to avoid
326
            boxing and casting of strongly typed members.
327
            </summary>
328
        </member>
329
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ConvertTo``1(System.Object)">
330
            <summary>
331
            Converts the object obj to the type T.  The conversion will be explicit or implicit depending on 
332
            what the langauge prefers.
333
            </summary>
334
        </member>
335
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ConvertTo(System.Object,System.Type)">
336
            <summary>
337
            Converts the object obj to the type type. The conversion will be explicit or implicit depending on 
338
            what the langauge prefers.
339
            </summary>
340
        </member>
341
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryConvertTo``1(System.Object,``0@)">
342
            <summary>
343
            Converts the object obj to the type T.  Returns true if the value can be converted, false if it cannot.
344
            
345
            The conversion will be explicit or implicit depending on what the langauge prefers.
346
            </summary>
347
        </member>
348
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryConvertTo(System.Object,System.Type,System.Object@)">
349
            <summary>
350
            Converts the object obj to the type type.  Returns true if the value can be converted, false if it cannot.
351
            
352
            The conversion will be explicit or implicit depending on what the langauge prefers.
353
            </summary>
354
        </member>
355
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ExplicitConvertTo``1(System.Object)">
356
            <summary>
357
            Converts the object obj to the type T including explicit conversions which may lose information.
358
            </summary>
359
        </member>
360
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ExplicitConvertTo(System.Object,System.Type)">
361
            <summary>
362
            Converts the object obj to the type type including explicit conversions which may lose information.
363
            </summary>
364
        </member>
365
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryExplicitConvertTo``1(System.Object,``0@)">
366
            <summary>
367
            Converts the object obj to the type T including explicit conversions which may lose information.
368
            
369
            Returns true if the value can be converted, false if it cannot.
370
            </summary>
371
        </member>
372
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryExplicitConvertTo(System.Object,System.Type,System.Object@)">
373
            <summary>
374
            Converts the object obj to the type type including explicit conversions which may lose information.  
375
            
376
            Returns true if the value can be converted, false if it cannot.
377
            </summary>
378
        </member>
379
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ImplicitConvertTo``1(System.Object)">
380
            <summary>
381
            Converts the object obj to the type T including implicit conversions.
382
            </summary>
383
        </member>
384
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ImplicitConvertTo(System.Object,System.Type)">
385
            <summary>
386
            Converts the object obj to the type type including implicit conversions.
387
            </summary>
388
        </member>
389
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryImplicitConvertTo``1(System.Object,``0@)">
390
            <summary>
391
            Converts the object obj to the type T including implicit conversions.
392
            
393
            Returns true if the value can be converted, false if it cannot.
394
            </summary>
395
        </member>
396
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryImplicitConvertTo(System.Object,System.Type,System.Object@)">
397
            <summary>
398
            Converts the object obj to the type type including implicit conversions.  
399
            
400
            Returns true if the value can be converted, false if it cannot.
401
            </summary>
402
        </member>
403
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.DoOperation(System.Linq.Expressions.ExpressionType,System.Object)">
404
            <summary>
405
            Performs a generic unary operation on the specified target and returns the result.
406
            </summary>
407
        </member>
408
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.DoOperation``2(System.Linq.Expressions.ExpressionType,``0)">
409
            <summary>
410
            Performs a generic unary operation on the strongly typed target and returns the value as the specified type
411
            </summary>
412
        </member>
413
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.DoOperation(System.Linq.Expressions.ExpressionType,System.Object,System.Object)">
414
            <summary>
415
            Performs the generic binary operation on the specified targets and returns the result.
416
            </summary>
417
        </member>
418
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.DoOperation``3(System.Linq.Expressions.ExpressionType,``0,``1)">
419
            <summary>
420
            Peforms the generic binary operation on the specified strongly typed targets and returns
421
            the strongly typed result.
422
            </summary>
423
        </member>
424
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Add(System.Object,System.Object)">
425
            <summary>
426
            Performs addition on the specified targets and returns the result.  Throws an exception
427
            if the operation cannot be performed.
428
            </summary>
429
        </member>
430
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Subtract(System.Object,System.Object)">
431
            <summary>
432
            Performs subtraction on the specified targets and returns the result.  Throws an exception
433
            if the operation cannot be performed.
434
            </summary>
435
        </member>
436
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Power(System.Object,System.Object)">
437
            <summary>
438
            Raises the first object to the power of the second object.  Throws an exception
439
            if the operation cannot be performed.
440
            </summary>
441
        </member>
442
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Multiply(System.Object,System.Object)">
443
            <summary>
444
            Multiplies the two objects.  Throws an exception
445
            if the operation cannot be performed.
446
            </summary>
447
        </member>
448
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Divide(System.Object,System.Object)">
449
            <summary>
450
            Divides the first object by the second object.  Throws an exception
451
            if the operation cannot be performed.
452
            </summary>
453
        </member>
454
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Modulo(System.Object,System.Object)">
455
            <summary>
456
            Performs modulus of the 1st object by the second object.  Throws an exception
457
            if the operation cannot be performed.
458
            </summary>
459
        </member>
460
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.LeftShift(System.Object,System.Object)">
461
            <summary>
462
            Shifts the left object left by the right object.  Throws an exception if the
463
            operation cannot be performed.
464
            </summary>
465
        </member>
466
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.RightShift(System.Object,System.Object)">
467
            <summary>
468
            Shifts the left object right by the right object.  Throws an exception if the
469
            operation cannot be performed.
470
            </summary>
471
        </member>
472
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.BitwiseAnd(System.Object,System.Object)">
473
            <summary>
474
            Performs a bitwise-and of the two operands.  Throws an exception if the operation 
475
            cannot be performed.
476
            </summary>
477
        </member>
478
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.BitwiseOr(System.Object,System.Object)">
479
            <summary>
480
            Performs a bitwise-or of the two operands.  Throws an exception if the operation 
481
            cannot be performed.
482
            </summary>
483
        </member>
484
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ExclusiveOr(System.Object,System.Object)">
485
            <summary>
486
            Performs a exclusive-or of the two operands.  Throws an exception if the operation 
487
            cannot be performed.
488
            </summary>
489
        </member>
490
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.LessThan(System.Object,System.Object)">
491
            <summary>
492
            Compares the two objects and returns true if the left object is less than the right object.
493
            Throws an exception if hte comparison cannot be performed.
494
            </summary>
495
        </member>
496
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GreaterThan(System.Object,System.Object)">
497
            <summary>
498
            Compares the two objects and returns true if the left object is greater than the right object.
499
            Throws an exception if hte comparison cannot be performed.
500
            </summary>
501
        </member>
502
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.LessThanOrEqual(System.Object,System.Object)">
503
            <summary>
504
            Compares the two objects and returns true if the left object is less than or equal to the right object.
505
            Throws an exception if hte comparison cannot be performed.
506
            </summary>
507
        </member>
508
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GreaterThanOrEqual(System.Object,System.Object)">
509
            <summary>
510
            Compares the two objects and returns true if the left object is greater than or equal to the right object.
511
            Throws an exception if hte comparison cannot be performed.
512
            </summary>
513
        </member>
514
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Equal(System.Object,System.Object)">
515
            <summary>
516
            Compares the two objects and returns true if the left object is equal to the right object.
517
            Throws an exception if the comparison cannot be performed.
518
            </summary>
519
        </member>
520
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.NotEqual(System.Object,System.Object)">
521
            <summary>
522
            Compares the two objects and returns true if the left object is not equal to the right object.
523
            Throws an exception if hte comparison cannot be performed.
524
            </summary>
525
        </member>
526
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetCodeRepresentation(System.Object)">
527
            <summary>
528
            Returns a string which describes the object as it appears in source code
529
            </summary>
530
        </member>
531
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Format(System.Object)">
532
            <summary>
533
            Returns a string representation of the object in a language specific object display format.
534
            </summary>
535
        </member>
536
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetMemberNames(System.Object)">
537
            <summary>
538
            Returns a list of strings which contain the known members of the object.
539
            </summary>
540
        </member>
541
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetDocumentation(System.Object)">
542
            <summary>
543
            Returns a string providing documentation for the specified object.
544
            </summary>
545
        </member>
546
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetCallSignatures(System.Object)">
547
            <summary>
548
            Returns a list of signatures applicable for calling the specified object in a form displayable to the user.
549
            </summary>
550
        </member>
551
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.IsCallable(System.Runtime.Remoting.ObjectHandle)">
552
            <summary>
553
            Returns true if the remote object is callable.
554
            </summary>
555
        </member>
556
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Invoke(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle[])">
557
            <summary>
558
            Invokes the specified remote object with the specified remote parameters.
559
            
560
            Though delegates are preferable for calls they may not always be usable for remote objects.
561
            </summary>
562
        </member>
563
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Invoke(System.Runtime.Remoting.ObjectHandle,System.Object[])">
564
            <summary>
565
            Invokes the specified remote object with the local parameters which will be serialized
566
            to the remote app domain.
567
            </summary>
568
        </member>
569
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.CreateInstance(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle[])">
570
            <summary>
571
            Creates a new remote instance from the provided remote object using the given parameters, and returns the result.
572
            </summary>
573
        </member>
574
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.CreateInstance(System.Runtime.Remoting.ObjectHandle,System.Object[])">
575
            <summary>
576
            Creates a new remote instance from the provided remote object using the given parameters, and returns the result.
577
            </summary>
578
        </member>
579
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.SetMember(System.Runtime.Remoting.ObjectHandle,System.String,System.Runtime.Remoting.ObjectHandle)">
580
            <summary>
581
            Sets the remote object as a member on the provided remote object.
582
            </summary>
583
        </member>
584
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.SetMember``1(System.Runtime.Remoting.ObjectHandle,System.String,``0)">
585
            <summary>
586
            Sets the member name on the remote object obj to value.  This overload can be used to avoid
587
            boxing and casting of strongly typed members.
588
            </summary>
589
        </member>
590
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetMember(System.Runtime.Remoting.ObjectHandle,System.String)">
591
            <summary>
592
            Gets the member name on the remote object.  Throws an exception if the member is not defined or
593
            is write-only.
594
            </summary>
595
        </member>
596
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetMember``1(System.Runtime.Remoting.ObjectHandle,System.String)">
597
            <summary>
598
            Gets the member name on the remote object.  Throws an exception if the member is not defined or
599
            is write-only.
600
            </summary>
601
        </member>
602
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryGetMember(System.Runtime.Remoting.ObjectHandle,System.String,System.Runtime.Remoting.ObjectHandle@)">
603
            <summary>
604
            Gets the member name on the remote object.  Returns false if the member is not defined or
605
            is write-only.
606
            </summary>
607
        </member>
608
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ContainsMember(System.Runtime.Remoting.ObjectHandle,System.String)">
609
            <summary>
610
            Tests to see if the member name is defined on the remote object.  
611
            </summary>
612
        </member>
613
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.RemoveMember(System.Runtime.Remoting.ObjectHandle,System.String)">
614
            <summary>
615
            Removes the member from the remote object
616
            </summary>
617
        </member>
618
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ConvertTo``1(System.Runtime.Remoting.ObjectHandle)">
619
            <summary>
620
            Converts the remote object into the specified type returning a handle to
621
            the new remote object. The conversion will be explicit or implicit depending on 
622
            what the langauge prefers.
623
            </summary>
624
        </member>
625
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ConvertTo(System.Runtime.Remoting.ObjectHandle,System.Type)">
626
            <summary>
627
            Converts the remote object into the specified type returning a handle to
628
            the new remote object. The conversion will be explicit or implicit depending on 
629
            what the langauge prefers.
630
            </summary>
631
        </member>
632
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryConvertTo``1(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle@)">
633
            <summary>
634
            Converts the remote object into the specified type returning a handle to
635
            the new remote object. Returns true if the value can be converted,
636
            false if it cannot. The conversion will be explicit or implicit depending on 
637
            what the langauge prefers.
638
            </summary>
639
        </member>
640
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryConvertTo(System.Runtime.Remoting.ObjectHandle,System.Type,System.Runtime.Remoting.ObjectHandle@)">
641
            <summary>
642
            Converts the remote object into the specified type returning a handle to
643
            the new remote object. Returns true if the value can be converted,
644
            false if it cannot. The conversion will be explicit or implicit depending on 
645
            what the langauge prefers.
646
            </summary>
647
        </member>
648
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ExplicitConvertTo``1(System.Runtime.Remoting.ObjectHandle)">
649
            <summary>
650
            Converts the object obj to the type T including explicit conversions which may lose information.
651
            </summary>
652
        </member>
653
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ExplicitConvertTo(System.Runtime.Remoting.ObjectHandle,System.Type)">
654
            <summary>
655
            Converts the object obj to the type type including explicit conversions which may lose information.
656
            </summary>
657
        </member>
658
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryExplicitConvertTo``1(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle@)">
659
            <summary>
660
            Converts the object obj to the type T including explicit conversions which may lose information.
661
            
662
            Returns true if the value can be converted, false if it cannot.
663
            </summary>
664
        </member>
665
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryExplicitConvertTo(System.Runtime.Remoting.ObjectHandle,System.Type,System.Runtime.Remoting.ObjectHandle@)">
666
            <summary>
667
            Converts the object obj to the type type including explicit conversions which may lose information.  
668
            
669
            Returns true if the value can be converted, false if it cannot.
670
            </summary>
671
        </member>
672
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ImplicitConvertTo``1(System.Runtime.Remoting.ObjectHandle)">
673
            <summary>
674
            Converts the object obj to the type T including implicit conversions.
675
            </summary>
676
        </member>
677
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ImplicitConvertTo(System.Runtime.Remoting.ObjectHandle,System.Type)">
678
            <summary>
679
            Converts the object obj to the type type including implicit conversions.
680
            </summary>
681
        </member>
682
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryImplicitConvertTo``1(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle@)">
683
            <summary>
684
            Converts the object obj to the type T including implicit conversions.
685
            
686
            Returns true if the value can be converted, false if it cannot.
687
            </summary>
688
        </member>
689
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.TryImplicitConvertTo(System.Runtime.Remoting.ObjectHandle,System.Type,System.Runtime.Remoting.ObjectHandle@)">
690
            <summary>
691
            Converts the object obj to the type type including implicit conversions.  
692
            
693
            Returns true if the value can be converted, false if it cannot.
694
            </summary>
695
        </member>
696
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Unwrap``1(System.Runtime.Remoting.ObjectHandle)">
697
            <summary>
698
            Unwraps the remote object and converts it into the specified type before
699
            returning it.
700
            </summary>
701
        </member>
702
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.DoOperation(System.Linq.Expressions.ExpressionType,System.Runtime.Remoting.ObjectHandle)">
703
            <summary>
704
            Performs the specified unary operator on the remote object.
705
            </summary>
706
        </member>
707
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.DoOperation(System.Linq.Expressions.ExpressionType,System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
708
            <summary>
709
            Performs the specified binary operator on the remote object.
710
            </summary>
711
        </member>
712
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Add(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
713
            <summary>
714
            Adds the two remote objects.  Throws an exception if the operation cannot be performed.
715
            </summary>
716
        </member>
717
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Subtract(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
718
            <summary>
719
            Subtracts the 1st remote object from the second.  Throws an exception if the operation cannot be performed.
720
            </summary>
721
        </member>
722
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Power(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
723
            <summary>
724
            Raises the 1st remote object to the power of the 2nd.  Throws an exception if the operation cannot be performed.
725
            </summary>
726
        </member>
727
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Multiply(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
728
            <summary>
729
            Multiplies the two remote objects.  Throws an exception if the operation cannot be performed.
730
            </summary>
731
        </member>
732
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Divide(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
733
            <summary>
734
            Divides the 1st remote object by the 2nd. Throws an exception if the operation cannot be performed.
735
            </summary>
736
        </member>
737
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Modulo(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
738
            <summary>
739
            Performs modulus on the 1st remote object by the 2nd.  Throws an exception if the operation cannot be performed.
740
            </summary>        
741
        </member>
742
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.LeftShift(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
743
            <summary>
744
            Shifts the 1st remote object left by the 2nd remote object.  Throws an exception if the operation cannot be performed.
745
            </summary>
746
        </member>
747
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.RightShift(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
748
            <summary>
749
            Shifts the 1st remote  object right by the 2nd remote object.  Throws an exception if the operation cannot be performed.
750
            </summary>
751
        </member>
752
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.BitwiseAnd(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
753
            <summary>
754
            Performs bitwise-and on the two remote objects.  Throws an exception if the operation cannot be performed.
755
            </summary>
756
        </member>
757
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.BitwiseOr(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
758
            <summary>
759
            Performs bitwise-or on the two remote objects.  Throws an exception if the operation cannot be performed.
760
            </summary>
761
        </member>
762
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.ExclusiveOr(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
763
            <summary>
764
            Performs exclusive-or on the two remote objects.  Throws an exception if the operation cannot be performed.
765
            </summary>
766
        </member>
767
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.LessThan(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
768
            <summary>
769
            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.
770
            </summary>
771
        </member>
772
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GreaterThan(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
773
            <summary>
774
            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.
775
            </summary>
776
        </member>
777
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.LessThanOrEqual(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
778
            <summary>
779
            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.
780
            </summary>
781
        </member>
782
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GreaterThanOrEqual(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
783
            <summary>
784
            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.
785
            </summary>
786
        </member>
787
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Equal(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
788
            <summary>
789
            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.
790
            </summary>
791
        </member>
792
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.NotEqual(System.Runtime.Remoting.ObjectHandle,System.Runtime.Remoting.ObjectHandle)">
793
            <summary>
794
            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.
795
            </summary>
796
        </member>
797
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.Format(System.Runtime.Remoting.ObjectHandle)">
798
            <summary>
799
            Returns a string representation of the object in a langauge specific object display format.
800
            </summary>
801
        </member>
802
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetMemberNames(System.Runtime.Remoting.ObjectHandle)">
803
            <summary>
804
            Returns a list of strings which contain the known members of the remote object.
805
            </summary>
806
        </member>
807
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetDocumentation(System.Runtime.Remoting.ObjectHandle)">
808
            <summary>
809
            Returns a string providing documentation for the specified remote object.
810
            </summary>
811
        </member>
812
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetCallSignatures(System.Runtime.Remoting.ObjectHandle)">
813
            <summary>
814
            Returns a list of signatures applicable for calling the specified object in a form displayable to the user.
815
            </summary>
816
        </member>
817
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetLocalObject(System.Runtime.Remoting.ObjectHandle)">
818
            <summary>
819
            Helper to unwrap an object - in the future maybe we should validate the current app domain.
820
            </summary>
821
        </member>
822
        <member name="M:Microsoft.Scripting.Hosting.ObjectOperations.GetLocalObjects(System.Runtime.Remoting.ObjectHandle[])">
823
            <summary>
824
            Helper to unwrap multiple objects
825
            </summary>
826
        </member>
827
        <member name="T:Microsoft.Scripting.Hosting.OverloadDoc">
828
            <summary>
829
            Provides documentation for a single overload of an invokable object.
830
            </summary>
831
        </member>
832
        <member name="P:Microsoft.Scripting.Hosting.OverloadDoc.Name">
833
            <summary>
834
            The name of the invokable object.
835
            </summary>
836
        </member>
837
        <member name="P:Microsoft.Scripting.Hosting.OverloadDoc.Documentation">
838
            <summary>
839
            The documentation for the overload or null if no documentation is available.
840
            </summary>
841
        </member>
842
        <member name="P:Microsoft.Scripting.Hosting.OverloadDoc.Parameters">
843
            <summary>
844
            The parameters for the invokable object.
845
            </summary>
846
        </member>
847
        <member name="P:Microsoft.Scripting.Hosting.OverloadDoc.ReturnParameter">
848
            <summary>
849
            Information about the return value.
850
            </summary>
851
        </member>
852
        <member name="T:Microsoft.Scripting.Hosting.ParameterDoc">
853
            <summary>
854
            Provides documentation for a single parameter.
855
            </summary>
856
        </member>
857
        <member name="P:Microsoft.Scripting.Hosting.ParameterDoc.Name">
858
            <summary>
859
            The name of the parameter
860
            </summary>
861
        </member>
862
        <member name="P:Microsoft.Scripting.Hosting.ParameterDoc.TypeName">
863
            <summary>
864
            The type name of the parameter or null if no type information is available.
865
            </summary>
866
        </member>
867
        <member name="P:Microsoft.Scripting.Hosting.ParameterDoc.Flags">
868
            <summary>
869
            Provides addition information about the parameter such as if it's a parameter array.
870
            </summary>
871
        </member>
872
        <member name="P:Microsoft.Scripting.Hosting.ParameterDoc.Documentation">
873
            <summary>
874
            Gets the documentation string for this parameter or null if no documentation is available.
875
            </summary>
876
        </member>
877
        <member name="T:Microsoft.Scripting.Hosting.ParameterFlags">
878
            <summary>
879
            Indications extra information about a parameter such as if it's a parameter array.
880
            </summary>
881
        </member>
882
        <member name="T:Microsoft.Scripting.Hosting.Providers.HostingHelpers">
883
            <summary>
884
            Advanced APIs for HAPI providers. These methods should not be used by hosts. 
885
            They are provided for other hosting API implementers that would like to leverage existing HAPI and 
886
            extend it with language specific functionality, for example. 
887
            </summary>
888
        </member>
889
        <member name="M:Microsoft.Scripting.Hosting.Providers.HostingHelpers.GetDomainManager(Microsoft.Scripting.Hosting.ScriptRuntime)">
890
            <exception cref="T:System.ArgumentNullException"><paramref name="runtime"/> is a <c>null</c> reference.</exception>
891
            <exception cref="T:System.Runtime.Serialization.SerializationException"><paramref name="runtime"/> is remote.</exception>
892
        </member>
893
        <member name="M:Microsoft.Scripting.Hosting.Providers.HostingHelpers.GetLanguageContext(Microsoft.Scripting.Hosting.ScriptEngine)">
894
            <exception cref="T:System.ArgumentNullException"><paramref name="engine"/>e is a <c>null</c> reference.</exception>
895
            <exception cref="T:System.Runtime.Serialization.SerializationException"><paramref name="engine"/> is remote.</exception>
896
        </member>
897
        <member name="M:Microsoft.Scripting.Hosting.Providers.HostingHelpers.GetSourceUnit(Microsoft.Scripting.Hosting.ScriptSource)">
898
            <exception cref="T:System.ArgumentNullException"><paramref name="scriptSource"/> is a <c>null</c> reference.</exception>
899
            <exception cref="T:System.Runtime.Serialization.SerializationException"><paramref name="scriptSource"/> is remote.</exception>
900
        </member>
901
        <member name="M:Microsoft.Scripting.Hosting.Providers.HostingHelpers.GetScriptCode(Microsoft.Scripting.Hosting.CompiledCode)">
902
            <exception cref="T:System.ArgumentNullException"><paramref name="compiledCode"/> is a <c>null</c> reference.</exception>
903
            <exception cref="T:System.Runtime.Serialization.SerializationException"><paramref name="compiledCode"/> is remote.</exception>
904
        </member>
905
        <member name="M:Microsoft.Scripting.Hosting.Providers.HostingHelpers.GetSharedIO(Microsoft.Scripting.Hosting.ScriptIO)">
906
            <exception cref="T:System.ArgumentNullException"><paramref name="io"/> is a <c>null</c> reference.</exception>
907
            <exception cref="T:System.Runtime.Serialization.SerializationException"><paramref name="io"/> is remote.</exception>
908
        </member>
909
        <member name="M:Microsoft.Scripting.Hosting.Providers.HostingHelpers.GetScope(Microsoft.Scripting.Hosting.ScriptScope)">
910
            <exception cref="T:System.ArgumentNullException"><paramref name="scriptScope"/> is a <c>null</c> reference.</exception>
911
            <exception cref="T:System.Runtime.Serialization.SerializationException"><paramref name="scriptScope"/> is remote.</exception>
912
        </member>
913
        <member name="M:Microsoft.Scripting.Hosting.Providers.HostingHelpers.CreateScriptScope(Microsoft.Scripting.Hosting.ScriptEngine,Microsoft.Scripting.Runtime.Scope)">
914
            <exception cref="T:System.ArgumentNullException"><paramref name="engine"/> is a <c>null</c> reference.</exception>
915
            <exception cref="T:System.ArgumentNullException"><paramref name="scope"/> is a <c>null</c> reference.</exception>
916
            <exception cref="T:System.ArgumentException"><paramref name="engine"/> is a transparent proxy.</exception>
917
        </member>
918
        <member name="M:Microsoft.Scripting.Hosting.Providers.HostingHelpers.CallEngine``2(Microsoft.Scripting.Hosting.ScriptEngine,System.Func{Microsoft.Scripting.Runtime.LanguageContext,``0,``1},``0)">
919
            <summary>
920
            Performs a callback in the ScriptEngine's app domain and returns the result.
921
            </summary>
922
        </member>
923
        <member name="M:Microsoft.Scripting.Hosting.Providers.HostingHelpers.CreateDocumentationOperations(Microsoft.Scripting.Runtime.DocumentationProvider)">
924
            <summary>
925
            Creates a new DocumentationOperations object from the given DocumentationProvider.
926
            </summary>
927
        </member>
928
        <member name="T:Microsoft.Scripting.Hosting.ScriptEngine">
929
            <summary>
930
            Represents a language in Hosting API. 
931
            Hosting API counterpart for <see cref="P:Microsoft.Scripting.Hosting.ScriptEngine.LanguageContext"/>.
932
            </summary>
933
        </member>
934
        <member name="P:Microsoft.Scripting.Hosting.ScriptEngine.Operations">
935
            <summary>
936
            Returns a default ObjectOperations for the engine.  
937
            
938
            Because an ObjectOperations object caches rules for the types of 
939
            objects and operations it processes, using the default ObjectOperations for 
940
            many objects could degrade the caching benefits.  Eventually the cache for 
941
            some operations could degrade to a point where ObjectOperations stops caching and 
942
            does a full search for an implementation of the requested operation for the given objects.  
943
            
944
            Another reason to create a new ObjectOperations instance is to have it bound
945
            to the specific view of a ScriptScope.  Languages may attach per-language
946
            behavior to a ScriptScope which would alter how the operations are performed.
947
            
948
            For simple hosting situations, this is sufficient behavior.
949
            
950
            
951
            </summary>
952
        </member>
953
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateOperations">
954
            <summary>
955
            Returns a new ObjectOperations object.  See the Operations property for why you might want to call this.
956
            </summary>
957
        </member>
958
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateOperations(Microsoft.Scripting.Hosting.ScriptScope)">
959
            <summary>
960
            Returns a new ObjectOperations object that inherits any semantics particular to the provided ScriptScope.  
961
            
962
            See the Operations property for why you might want to call this.
963
            </summary>
964
        </member>
965
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.Execute(System.String)">
966
            <summary>
967
            Executes an expression. The execution is not bound to any particular scope.
968
            </summary>
969
            <exception cref="T:System.NotSupportedException">The engine doesn't support code execution.</exception>
970
            <exception cref="T:System.ArgumentNullException"><paramref name="expression"/> is a <c>null</c> reference.</exception>
971
        </member>
972
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.Execute(System.String,Microsoft.Scripting.Hosting.ScriptScope)">
973
            <summary>
974
            Executes an expression within the specified scope.
975
            </summary>
976
            <exception cref="T:System.NotSupportedException">The engine doesn't support code execution.</exception>
977
            <exception cref="T:System.ArgumentNullException"><paramref name="expression"/> is a <c>null</c> reference.</exception>
978
            <exception cref="T:System.ArgumentNullException"><paramref name="scope"/> is a <c>null</c> reference.</exception>
979
        </member>
980
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.Execute``1(System.String)">
981
            <summary>
982
            Executes an expression within a new scope and converts result to the given type.
983
            </summary>
984
            <exception cref="T:System.NotSupportedException">The engine doesn't support code execution.</exception>
985
            <exception cref="T:System.ArgumentNullException"><paramref name="expression"/> is a <c>null</c> reference.</exception>
986
        </member>
987
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.Execute``1(System.String,Microsoft.Scripting.Hosting.ScriptScope)">
988
            <summary>
989
            Executes an expression within the specified scope and converts result to the given type.
990
            </summary>
991
            <exception cref="T:System.NotSupportedException">The engine doesn't support code execution.</exception>
992
            <exception cref="T:System.ArgumentNullException"><paramref name="expression"/> is a <c>null</c> reference.</exception>
993
            <exception cref="T:System.ArgumentNullException"><paramref name="scope"/> is a <c>null</c> reference.</exception>
994
        </member>
995
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.ExecuteFile(System.String)">
996
            <summary>
997
            Executes content of the specified file in a new scope and returns that scope.
998
            </summary>
999
            <exception cref="T:System.NotSupportedException">The engine doesn't support code execution.</exception>
1000
            <exception cref="T:System.ArgumentNullException"><paramref name="path"/> is a <c>null</c> reference.</exception>
1001
        </member>
1002
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.ExecuteFile(System.String,Microsoft.Scripting.Hosting.ScriptScope)">
1003
            <summary>
1004
            Executes content of the specified file against the given scope.
1005
            </summary>
1006
            <returns>The <paramref name="scope"/>.</returns>
1007
            <exception cref="T:System.NotSupportedException">The engine doesn't support code execution.</exception>
1008
            <exception cref="T:System.ArgumentNullException"><paramref name="path"/> is a <c>null</c> reference.</exception>
1009
            <exception cref="T:System.ArgumentNullException"><paramref name="scope"/> is a <c>null</c> reference.</exception>
1010
        </member>
1011
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.ExecuteAndWrap(System.String,Microsoft.Scripting.Hosting.ScriptScope)">
1012
            <summary>
1013
            Executes the expression in the specified scope and return a result.
1014
            Returns an ObjectHandle wrapping the resulting value of running the code.  
1015
            </summary>
1016
        </member>
1017
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.ExecuteAndWrap(System.String)">
1018
            <summary>
1019
            Executes the code in an empty scope.
1020
            Returns an ObjectHandle wrapping the resulting value of running the code.  
1021
            </summary>
1022
        </member>
1023
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.ExecuteAndWrap(System.String,Microsoft.Scripting.Hosting.ScriptScope,System.Runtime.Remoting.ObjectHandle@)">
1024
            <summary>
1025
            Executes the expression in the specified scope and return a result.
1026
            Returns an ObjectHandle wrapping the resulting value of running the code.  
1027
            
1028
            If an exception is thrown the exception is caught and an ObjectHandle to
1029
            the exception is provided.
1030
            </summary>
1031
            <remarks>
1032
            Use this API in case the exception is not serializable (for example, due to security restrictions) or its serialization 
1033
            loses information that you need to access.
1034
            </remarks>
1035
        </member>
1036
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.ExecuteAndWrap(System.String,System.Runtime.Remoting.ObjectHandle@)">
1037
            <summary>
1038
            Executes the code in an empty scope.
1039
            Returns an ObjectHandle wrapping the resulting value of running the code.  
1040
            
1041
            If an exception is thrown the exception is caught and an ObjectHandle to
1042
            the exception is provided.
1043
            </summary>
1044
            <remarks>
1045
            Use this API in case the exception is not serializable (for example, due to security restrictions) or its serialization 
1046
            loses information that you need to access.
1047
            </remarks>
1048
        </member>
1049
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScope">
1050
            <summary>
1051
            Creates a new ScriptScope using the default storage container
1052
            </summary>
1053
        </member>
1054
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScope(System.Collections.Generic.IDictionary{System.String,System.Object})">
1055
            <summary>
1056
            Creates a new ScriptScope whose storage contains the provided dictionary of objects
1057
            
1058
            Accesses to the ScriptScope will turn into get,set, and delete members against this dictionary
1059
            </summary>
1060
        </member>
1061
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScope(System.Dynamic.IDynamicMetaObjectProvider)">
1062
            <summary>
1063
            Creates a new ScriptScope whose storage is an arbitrary object.
1064
            
1065
            Accesses to the ScriptScope will turn into get, set, and delete members against the object.
1066
            </summary>
1067
        </member>
1068
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.GetScope(System.String)">
1069
            <summary>
1070
            This method returns the ScriptScope in which a ScriptSource of given path was executed.  
1071
            
1072
            The ScriptSource.Path property is the key to finding the ScriptScope.  Hosts need 
1073
            to make sure they create a ScriptSource and set its Path property appropriately.
1074
            
1075
            GetScope is primarily useful for tools that need to map files to their execution scopes. For example, 
1076
            an editor and interpreter tool might run a file Foo that imports or requires a file Bar.  
1077
            
1078
            The editor's user might later open the file Bar and want to execute expressions in its context.  
1079
            The tool would need to find Bar's ScriptScope for setting the appropriate context in its interpreter window. 
1080
            This method helps with this scenario.
1081
            </summary>
1082
        </member>
1083
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSourceFromString(System.String)">
1084
            <summary>
1085
            Return a ScriptSource object from string contents with the current engine as the language binding.
1086
            
1087
            The default SourceCodeKind is AutoDetect.
1088
            
1089
            The ScriptSource's Path property defaults to <c>null</c>.
1090
            </summary>
1091
        </member>
1092
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSourceFromString(System.String,Microsoft.Scripting.SourceCodeKind)">
1093
            <summary>
1094
            Return a ScriptSource object from string contents with the current engine as the language binding.
1095
            
1096
            The ScriptSource's Path property defaults to <c>null</c>.
1097
            </summary>
1098
        </member>
1099
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSourceFromString(System.String,System.String)">
1100
            <summary>
1101
            Return a ScriptSource object from string contents with the current engine as the language binding.
1102
            
1103
            The default SourceCodeKind is AutoDetect.
1104
            </summary>
1105
        </member>
1106
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSourceFromString(System.String,System.String,Microsoft.Scripting.SourceCodeKind)">
1107
            <summary>
1108
            Return a ScriptSource object from string contents.  These are helpers for creating ScriptSources' with the right language binding.
1109
            </summary>
1110
        </member>
1111
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSourceFromFile(System.String)">
1112
            <summary>
1113
            Return a ScriptSource object from file contents with the current engine as the language binding.  
1114
            
1115
            The path's extension does NOT have to be in ScriptRuntime.GetRegisteredFileExtensions 
1116
            or map to this language engine with ScriptRuntime.GetEngineByFileExtension.
1117
            
1118
            The default SourceCodeKind is File.
1119
            
1120
            The ScriptSource's Path property will be the path argument.
1121
            
1122
            The encoding defaults to System.Text.Encoding.Default.
1123
            </summary>
1124
        </member>
1125
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSourceFromFile(System.String,System.Text.Encoding)">
1126
            <summary>
1127
            Return a ScriptSource object from file contents with the current engine as the language binding.  
1128
            
1129
            The path's extension does NOT have to be in ScriptRuntime.GetRegisteredFileExtensions 
1130
            or map to this language engine with ScriptRuntime.GetEngineByFileExtension.
1131
            
1132
            The default SourceCodeKind is File.
1133
            
1134
            The ScriptSource's Path property will be the path argument.
1135
            </summary>
1136
        </member>
1137
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSourceFromFile(System.String,System.Text.Encoding,Microsoft.Scripting.SourceCodeKind)">
1138
            <summary>
1139
            Return a ScriptSource object from file contents with the current engine as the language binding.  
1140
            
1141
            The path's extension does NOT have to be in ScriptRuntime.GetRegisteredFileExtensions 
1142
            or map to this language engine with ScriptRuntime.GetEngineByFileExtension.
1143
            
1144
            The ScriptSource's Path property will be the path argument.
1145
            </summary>
1146
        </member>
1147
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSource(System.CodeDom.CodeObject)">
1148
            <summary>
1149
            This method returns a ScriptSource object from a System.CodeDom.CodeObject.  
1150
            This is a factory method for creating a ScriptSources with this language binding.
1151
            
1152
            The expected CodeDom support is extremely minimal for syntax-independent expression of semantics.  
1153
            
1154
            Languages may do more, but hosts should only expect CodeMemberMethod support, 
1155
            and only sub nodes consisting of the following:
1156
                CodeSnippetStatement
1157
                CodeSnippetExpression
1158
                CodePrimitiveExpression
1159
                CodeMethodInvokeExpression
1160
                CodeExpressionStatement (for holding MethodInvoke)
1161
            </summary>
1162
        </member>
1163
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSource(System.CodeDom.CodeObject,System.String)">
1164
            <summary>
1165
            This method returns a ScriptSource object from a System.CodeDom.CodeObject.  
1166
            This is a factory method for creating a ScriptSources with this language binding.
1167
            
1168
            The expected CodeDom support is extremely minimal for syntax-independent expression of semantics.  
1169
            
1170
            Languages may do more, but hosts should only expect CodeMemberMethod support, 
1171
            and only sub nodes consisting of the following:
1172
                CodeSnippetStatement
1173
                CodeSnippetExpression
1174
                CodePrimitiveExpression
1175
                CodeMethodInvokeExpression
1176
                CodeExpressionStatement (for holding MethodInvoke)
1177
            </summary>
1178
        </member>
1179
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSource(System.CodeDom.CodeObject,Microsoft.Scripting.SourceCodeKind)">
1180
            <summary>
1181
            This method returns a ScriptSource object from a System.CodeDom.CodeObject.  
1182
            This is a factory method for creating a ScriptSources with this language binding.
1183
            
1184
            The expected CodeDom support is extremely minimal for syntax-independent expression of semantics.  
1185
            
1186
            Languages may do more, but hosts should only expect CodeMemberMethod support, 
1187
            and only sub nodes consisting of the following:
1188
                CodeSnippetStatement
1189
                CodeSnippetExpression
1190
                CodePrimitiveExpression
1191
                CodeMethodInvokeExpression
1192
                CodeExpressionStatement (for holding MethodInvoke)
1193
            </summary>
1194
        </member>
1195
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSource(System.CodeDom.CodeObject,System.String,Microsoft.Scripting.SourceCodeKind)">
1196
            <summary>
1197
            This method returns a ScriptSource object from a System.CodeDom.CodeObject.  
1198
            This is a factory method for creating a ScriptSources with this language binding.
1199
            
1200
            The expected CodeDom support is extremely minimal for syntax-independent expression of semantics.  
1201
            
1202
            Languages may do more, but hosts should only expect CodeMemberMethod support, 
1203
            and only sub nodes consisting of the following:
1204
                CodeSnippetStatement
1205
                CodeSnippetExpression
1206
                CodePrimitiveExpression
1207
                CodeMethodInvokeExpression
1208
                CodeExpressionStatement (for holding MethodInvoke)
1209
            </summary>
1210
        </member>
1211
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSource(Microsoft.Scripting.StreamContentProvider,System.String)">
1212
            <summary>
1213
            These methods return ScriptSource objects from stream contents with the current engine as the language binding.  
1214
            
1215
            The default SourceCodeKind is File.
1216
            
1217
            The encoding defaults to Encoding.Default.
1218
            </summary>
1219
        </member>
1220
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSource(Microsoft.Scripting.StreamContentProvider,System.String,System.Text.Encoding)">
1221
            <summary>
1222
            These methods return ScriptSource objects from stream contents with the current engine as the language binding.  
1223
            
1224
            The default SourceCodeKind is File.
1225
            </summary>
1226
        </member>
1227
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSource(Microsoft.Scripting.StreamContentProvider,System.String,System.Text.Encoding,Microsoft.Scripting.SourceCodeKind)">
1228
            <summary>
1229
            These methods return ScriptSource objects from stream contents with the current engine as the language binding.  
1230
            
1231
            The encoding defaults to Encoding.Default.
1232
            </summary>
1233
        </member>
1234
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.CreateScriptSource(Microsoft.Scripting.TextContentProvider,System.String,Microsoft.Scripting.SourceCodeKind)">
1235
            <summary>
1236
            This method returns a ScriptSource with the content provider supplied with the current engine as the language binding.
1237
            
1238
            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.
1239
            </summary>
1240
        </member>
1241
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.GetService``1(System.Object[])">
1242
            <summary>
1243
            This method returns a language-specific service.  
1244
            
1245
            It provides a point of extensibility for a language implementation 
1246
            to offer more functionality than the standard engine members discussed here.
1247
            
1248
            Commonly available services include:
1249
                TokenCategorizer
1250
                    Provides standardized tokenization of source code
1251
                ExceptionOperations
1252
                    Provides formatting of exception objects.
1253
                DocumentationProvidera
1254
                    Provides documentation for live object.
1255
            </summary>
1256
        </member>
1257
        <member name="P:Microsoft.Scripting.Hosting.ScriptEngine.Setup">
1258
            <summary>
1259
            This property returns readon-only LanguageOptions this engine is using.
1260
            </summary>
1261
            <remarks>
1262
            The values are determined during runtime initialization and read-only afterwards. 
1263
            You can change the settings via a configuration file or explicitly using ScriptRuntimeSetup class.
1264
            </remarks>
1265
        </member>
1266
        <member name="P:Microsoft.Scripting.Hosting.ScriptEngine.Runtime">
1267
            <summary>
1268
            This property returns the ScriptRuntime for the context in which this engine executes.
1269
            </summary>
1270
        </member>
1271
        <member name="P:Microsoft.Scripting.Hosting.ScriptEngine.LanguageVersion">
1272
            <summary>
1273
            This property returns the engine's version as a string.  The format is language-dependent.
1274
            </summary>
1275
        </member>
1276
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.SetSearchPaths(System.Collections.Generic.ICollection{System.String})">
1277
            <summary>
1278
            Sets the search paths used by the engine for loading files when a script wants 
1279
            to import or require another file of code.  
1280
            </summary>
1281
            <exception cref="T:System.NotSupportedException">The language doesn't allow to set search paths.</exception>
1282
        </member>
1283
        <member name="M:Microsoft.Scripting.Hosting.ScriptEngine.GetSearchPaths">
1284
            <summary>
1285
            Gets the search paths used by the engine for loading files when a script wants 
1286
            to import or require another file of code.  
1287
            </summary>
1288
        </member>
1289
        <member name="T:Microsoft.Scripting.Hosting.ScriptHost">
1290
             <summary>
1291
             ScriptHost is collocated with ScriptRuntime in the same app-domain. 
1292
             The host can implement a derived class to consume some notifications and/or 
1293
             customize operations like TryGetSourceUnit,ResolveSourceUnit, etc.
1294
            
1295
             The areguments to the the constructor of the derived class are specified in ScriptRuntimeSetup 
1296
             instance that enters ScriptRuntime initialization.
1297
             
1298
             If the host is remote with respect to DLR (i.e. also with respect to ScriptHost)
1299
             and needs to access objects living in its app-domain it can pass MarshalByRefObject 
1300
             as an argument to its ScriptHost subclass constructor.
1301
             </summary>
1302
        </member>
1303
        <member name="F:Microsoft.Scripting.Hosting.ScriptHost._runtime">
1304
            <summary>
1305
            The runtime the host is attached to.
1306
            </summary>
1307
        </member>
1308
        <member name="M:Microsoft.Scripting.Hosting.ScriptHost.RuntimeAttached">
1309
            <summary>
1310
            Invoked after the initialization of the associated Runtime is finished.
1311
            The host can override this method to perform additional initialization of runtime (like loading assemblies etc.).
1312
            </summary>
1313
        </member>
1314
        <member name="M:Microsoft.Scripting.Hosting.ScriptHost.EngineCreated(Microsoft.Scripting.Hosting.ScriptEngine)">
1315
            <summary>
1316
            Invoked after a new language is loaded into the Runtime.
1317
            The host can override this method to perform additional initialization of language engines.
1318
            </summary>
1319
        </member>
1320
        <member name="T:Microsoft.Scripting.Hosting.ScriptHostProxy">
1321
            <summary>
1322
            Provides hosting to DLR. Forwards DLR requests to the ScriptHost. 
1323
            </summary>
1324
        </member>
1325
        <member name="T:Microsoft.Scripting.Hosting.ScriptIO">
1326
            <summary>
1327
            Provides host-redirectable IO streams used by DLR languages for default IO.
1328
            </summary>
1329
        </member>
1330
        <member name="M:Microsoft.Scripting.Hosting.ScriptIO.SetOutput(System.IO.Stream,System.Text.Encoding)">
1331
            <summary>
1332
            Used if the host stores the output as binary data.
1333
            </summary>
1334
            <param name="stream">Binary stream to write data to.</param>
1335
            <param name="encoding">Encoding used to convert textual data written to the output by the script.</param>
1336
        </member>
1337
        <member name="M:Microsoft.Scripting.Hosting.ScriptIO.SetOutput(System.IO.Stream,System.IO.TextWriter)">
1338
            <summary>
1339
            Used if the host handles both kinds of data (textual and binary) by itself.
1340
            </summary>
1341
        </member>
1342
        <member name="T:Microsoft.Scripting.Hosting.ScriptRuntime">
1343
            <summary>
1344
            Represents a Dynamic Language Runtime in Hosting API. 
1345
            Hosting API counterpart for <see cref="T:Microsoft.Scripting.Runtime.ScriptDomainManager"/>.
1346
            </summary>
1347
        </member>
1348
        <member name="M:Microsoft.Scripting.Hosting.ScriptRuntime.#ctor(Microsoft.Scripting.Hosting.ScriptRuntimeSetup)">
1349
            <summary>
1350
            Creates ScriptRuntime in the current app-domain and initialized according to the the specified settings.
1351
            Creates an instance of host class specified in the setup and associates it with the created runtime.
1352
            Both Runtime and ScriptHost are collocated in the current app-domain.
1353
            </summary>
1354
        </member>
1355
        <member name="M:Microsoft.Scripting.Hosting.ScriptRuntime.CreateFromConfiguration">
1356
            <summary>
1357
            Creates a new runtime with languages set up according to the current application configuration 
1358
            (using System.Configuration).
1359
            </summary>
1360
        </member>
1361
        <member name="M:Microsoft.Scripting.Hosting.ScriptRuntime.CreateRemote(System.AppDomain,Microsoft.Scripting.Hosting.ScriptRuntimeSetup)">
1362
            <summary>
1363
            Creates ScriptRuntime in the current app-domain and initialized according to the the specified settings.
1364
            Creates an instance of host class specified in the setup and associates it with the created runtime.
1365
            Both Runtime and ScriptHost are collocated in the specified app-domain.
1366
            </summary>
1367
        </member>
1368
        <member name="M:Microsoft.Scripting.Hosting.ScriptRuntime.GetEngineByFileExtension(System.String)">
1369
            <exception cref="T:System.ArgumentException"></exception>
1370
            <exception cref="T:System.ArgumentNullException"></exception>
1371
        </member>
1372
        <member name="M:Microsoft.Scripting.Hosting.ScriptRuntime.GetEngine(Microsoft.Scripting.Runtime.LanguageContext)">
1373
            <summary>
1374
            Gets engine for the specified language.
1375
            </summary>
1376
        </member>
1377
        <member name="M:Microsoft.Scripting.Hosting.ScriptRuntime.GetEngineNoLockNoNotification(Microsoft.Scripting.Runtime.LanguageContext,System.Boolean@)">
1378
            <summary>
1379
            Looks up the engine for the specified language. If the engine hasn't been created in this Runtime, it is instantiated here.
1380
            The method doesn't lock nor send notifications to the host.
1381
            </summary>
1382
        </member>
1383
        <member name="M:Microsoft.Scripting.Hosting.ScriptRuntime.ExecuteFile(System.String)">
1384
            <exception cref="T:System.ArgumentException">
1385
            path is empty, contains one or more of the invalid characters defined in GetInvalidPathChars or doesn't have an extension.
1386
            </exception>
1387
        </member>
1388
        <member name="M:Microsoft.Scripting.Hosting.ScriptRuntime.UseFile(System.String)">
1389
            <exception cref="T:System.ArgumentNullException">path is null</exception>
1390
            <exception cref="T:System.ArgumentException">file extension does not map to language engine</exception>
1391
            <exception cref="T:System.InvalidOperationException">language does not have any search paths</exception>
1392
            <exception cref="T:System.IO.FileNotFoundException">file does exist in language's search path</exception>
1393
        </member>
1394
        <member name="P:Microsoft.Scripting.Hosting.ScriptRuntime.Globals">
1395
            <summary>
1396
            This property returns the "global object" or name bindings of the ScriptRuntime as a ScriptScope.  
1397
            
1398
            You can set the globals scope, which you might do if you created a ScriptScope with an 
1399
            IAttributesCollection so that your host could late bind names.
1400
            </summary>
1401
        </member>
1402
        <member name="M:Microsoft.Scripting.Hosting.ScriptRuntime.LoadAssembly(System.Reflection.Assembly)">
1403
            <summary>
1404
            This method walks the assembly's namespaces and name bindings to ScriptRuntime.Globals 
1405
            to represent the types available in the assembly.  Each top-level namespace name gets 
1406
            bound in Globals to a dynamic object representing the namespace.  Within each top-level 
1407
            namespace object, nested namespace names are bound to dynamic objects representing each 
1408
            tier of nested namespaces.  When this method encounters the same namespace-qualified name, 
1409
            it merges names together objects representing the namespaces.
1410
            </summary>
1411
            <param name="assembly"></param>
1412
        </member>
1413
        <member name="T:Microsoft.Scripting.Hosting.ScriptRuntimeSetup">
1414
            <summary>
1415
            Stores information needed to setup a ScriptRuntime
1416
            </summary>
1417
        </member>
1418
        <member name="P:Microsoft.Scripting.Hosting.ScriptRuntimeSetup.LanguageSetups">
1419
            <summary>
1420
            The list of language setup information for languages to load into
1421
            the runtime
1422
            </summary>
1423
        </member>
1424
        <member name="P:Microsoft.Scripting.Hosting.ScriptRuntimeSetup.DebugMode">
1425
            <summary>
1426
            Indicates that the script runtime is in debug mode.
1427
            This means:
1428
            
1429
            1) Symbols are emitted for debuggable methods (methods associated with SourceUnit).
1430
            2) Debuggable methods are emitted to non-collectable types (this is due to CLR limitations on dynamic method debugging).
1431
            3) JIT optimization is disabled for all methods
1432
            4) Languages may disable optimizations based on this value.
1433
            </summary>
1434
        </member>
1435
        <member name="P:Microsoft.Scripting.Hosting.ScriptRuntimeSetup.PrivateBinding">
1436
            <summary>
1437
            Ignore CLR visibility checks
1438
            </summary>
1439
        </member>
1440
        <member name="P:Microsoft.Scripting.Hosting.ScriptRuntimeSetup.HostType">
1441
            <summary>
1442
            Can be any derived class of ScriptHost. When set, it allows the
1443
            host to override certain methods to control behavior of the runtime
1444
            </summary>
1445
        </member>
1446
        <member name="P:Microsoft.Scripting.Hosting.ScriptRuntimeSetup.Options">
1447
            <remarks>
1448
            Option names are case-sensitive.
1449
            </remarks>
1450
        </member>
1451
        <member name="P:Microsoft.Scripting.Hosting.ScriptRuntimeSetup.HostArguments">
1452
            <summary>
1453
            Arguments passed to the host type when it is constructed
1454
            </summary>
1455
        </member>
1456
        <member name="M:Microsoft.Scripting.Hosting.ScriptRuntimeSetup.ReadConfiguration">
1457
            <summary>
1458
            Reads setup from .NET configuration system (.config files).
1459
            If there is no configuration available returns an empty setup.
1460
            </summary>
1461
        </member>
1462
        <member name="M:Microsoft.Scripting.Hosting.ScriptRuntimeSetup.ReadConfiguration(System.IO.Stream)">
1463
            <summary>
1464
            Reads setup from a specified XML stream.
1465
            </summary>
1466
        </member>
1467
        <member name="M:Microsoft.Scripting.Hosting.ScriptRuntimeSetup.ReadConfiguration(System.String)">
1468
            <summary>
1469
            Reads setup from a specified XML file.
1470
            </summary>
1471
        </member>
1472
        <member name="T:Microsoft.Scripting.Hosting.ScriptScope">
1473
             <summary>
1474
             A ScriptScope is a unit of execution for code.  It consists of a global Scope which
1475
             all code executes in.  A ScriptScope can have an arbitrary initializer and arbitrary
1476
             reloader. 
1477
             
1478
             ScriptScope is not thread safe. Host should either lock when multiple threads could 
1479
             access the same module or should make a copy for each thread.
1480
            
1481
             Hosting API counterpart for <see cref="P:Microsoft.Scripting.Hosting.ScriptScope.Scope"/>.
1482
             </summary>
1483
        </member>
1484
        <member name="P:Microsoft.Scripting.Hosting.ScriptScope.Engine">
1485
            <summary>
1486
            Gets an engine for the language associated with this scope.
1487
            Returns invariant engine if the scope is language agnostic.
1488
            </summary>
1489
        </member>
1490
        <member name="M:Microsoft.Scripting.Hosting.ScriptScope.GetVariable(System.String)">
1491
            <summary>
1492
            Gets a value stored in the scope under the given name.
1493
            </summary>
1494
            <exception cref="T:System.MissingMemberException">The specified name is not defined in the scope.</exception>
1495
            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> is a <c>null</c> reference.</exception>
1496
        </member>
1497
        <member name="M:Microsoft.Scripting.Hosting.ScriptScope.GetVariable``1(System.String)">
1498
            <summary>
1499
            Gets a value stored in the scope under the given name.
1500
            Converts the result to the specified type using the conversion that the language associated with the scope defines.
1501
            If no language is associated with the scope, the default CLR conversion is attempted.
1502
            </summary>
1503
            <exception cref="T:System.MissingMemberException">The specified name is not defined in the scope.</exception>
1504
            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> is a <c>null</c> reference.</exception>
1505
        </member>
1506
        <member name="M:Microsoft.Scripting.Hosting.ScriptScope.TryGetVariable(System.String,System.Object@)">
1507
            <summary>
1508
            Tries to get a value stored in the scope under the given name.
1509
            </summary>
1510
            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> is a <c>null</c> reference.</exception>
1511
        </member>
1512
        <member name="M:Microsoft.Scripting.Hosting.ScriptScope.TryGetVariable``1(System.String,``0@)">
1513
            <summary>
1514
            Tries to get a value stored in the scope under the given name.
1515
            Converts the result to the specified type using the conversion that the language associated with the scope defines.
1516
            If no language is associated with the scope, the default CLR conversion is attempted.
1517
            </summary>
1518
            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> is a <c>null</c> reference.</exception>
1519
        </member>
1520
        <member name="M:Microsoft.Scripting.Hosting.ScriptScope.SetVariable(System.String,System.Object)">
1521
            <summary>
1522
            Sets the name to the specified value.
1523
            </summary>
1524
            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> is a <c>null</c> reference.</exception>
1525
        </member>
1526
        <member name="M:Microsoft.Scripting.Hosting.ScriptScope.GetVariableHandle(System.String)">
1527
            <summary>
1528
            Gets a handle for a value stored in the scope under the given name.
1529
            </summary>
1530
            <exception cref="T:System.MissingMemberException">The specified name is not defined in the scope.</exception>
1531
            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> is a <c>null</c> reference.</exception>
1532
        </member>
1533
        <member name="M:Microsoft.Scripting.Hosting.ScriptScope.TryGetVariableHandle(System.String,System.Runtime.Remoting.ObjectHandle@)">
1534
            <summary>
1535
            Tries to get a handle for a value stored in the scope under the given name.
1536
            Returns <c>true</c> if there is such name, <c>false</c> otherwise. 
1537
            </summary>
1538
            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> is a <c>null</c> reference.</exception>
1539
        </member>
1540
        <member name="M:Microsoft.Scripting.Hosting.ScriptScope.SetVariable(System.String,System.Runtime.Remoting.ObjectHandle)">
1541
            <summary>
1542
            Sets the name to the specified value.
1543
            </summary>
1544
            <exception cref="T:System.Runtime.Serialization.SerializationException">
1545
            The value held by the handle isn't from the scope's app-domain and isn't serializable or MarshalByRefObject.
1546
            </exception>
1547
            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> or <paramref name="handle"/> is a <c>null</c> reference.</exception>
1548
        </member>
1549
        <member name="M:Microsoft.Scripting.Hosting.ScriptScope.ContainsVariable(System.String)">
1550
            <summary>
1551
            Determines if this context or any outer scope contains the defined name.
1552
            </summary>
1553
            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> is a <c>null</c> reference.</exception>
1554
        </member>
1555
        <member name="M:Microsoft.Scripting.Hosting.ScriptScope.RemoveVariable(System.String)">
1556
            <summary>
1557
            Removes the variable of the given name from this scope.
1558
            </summary> 
1559
            <returns><c>true</c> if the value existed in the scope before it has been removed.</returns>
1560
            <exception cref="T:System.ArgumentNullException"><paramref name="name"/> is a <c>null</c> reference.</exception>
1561
        </member>
1562
        <member name="M:Microsoft.Scripting.Hosting.ScriptScope.GetVariableNames">
1563
            <summary>
1564
            Gets a list of variable names stored in the scope.
1565
            </summary>
1566
        </member>
1567
        <member name="M:Microsoft.Scripting.Hosting.ScriptScope.GetItems">
1568
            <summary>
1569
            Gets an array of variable names and their values stored in the scope.
1570
            </summary>
1571
        </member>
1572
        <member name="T:Microsoft.Scripting.Hosting.ScriptSource">
1573
            <summary>
1574
            Hosting counterpart for <see cref="P:Microsoft.Scripting.Hosting.ScriptSource.SourceUnit"/>.
1575
            </summary>
1576
        </member>
1577
        <member name="P:Microsoft.Scripting.Hosting.ScriptSource.Path">
1578
            <summary>
1579
            Identification of the source unit. Assigned by the host. 
1580
            The format and semantics is host dependent (could be a path on file system or URL).
1581
            <c>null</c> for anonymous script source.
1582
            Cannot be an empty string.
1583
            </summary>
1584
        </member>
1585
        <member name="M:Microsoft.Scripting.Hosting.ScriptSource.Compile">
1586
            <summary>
1587
            Compile the ScriptSource into CompileCode object that can be executed 
1588
            repeatedly in its default scope or in other scopes without having to recompile the code.
1589
            </summary>
1590
            <exception cref="T:Microsoft.Scripting.SyntaxErrorException">Code cannot be compiled.</exception>
1591
        </member>
1592
        <member name="M:Microsoft.Scripting.Hosting.ScriptSource.Compile(Microsoft.Scripting.Hosting.ErrorListener)">
1593
            <remarks>
1594
            Errors are reported to the specified listener. 
1595
            Returns <c>null</c> if the parser cannot compile the code due to errors.
1596
            </remarks>
1597
        </member>
1598
        <member name="M:Microsoft.Scripting.Hosting.ScriptSource.Compile(Microsoft.Scripting.CompilerOptions)">
1599
            <remarks>
1600
            Errors are reported to the specified listener. 
1601
            Returns <c>null</c> if the parser cannot compile the code due to error(s).
1602
            </remarks>
1603
        </member>
1604
        <member name="M:Microsoft.Scripting.Hosting.ScriptSource.Compile(Microsoft.Scripting.CompilerOptions,Microsoft.Scripting.Hosting.ErrorListener)">
1605
            <remarks>
1606
            Errors are reported to the specified listener. 
1607
            Returns <c>null</c> if the parser cannot compile the code due to error(s).
1608
            </remarks>
1609
        </member>
1610
        <member name="M:Microsoft.Scripting.Hosting.ScriptSource.Execute(Microsoft.Scripting.Hosting.ScriptScope)">
1611
            <summary>
1612
            Executes the code in the specified scope.
1613
            Returns an object that is the resulting value of running the code.  
1614
            
1615
            When the ScriptSource is a file or statement, the engine decides what is 
1616
            an appropriate value to return.  Some languages return the value produced 
1617
            by the last expression or statement, but languages that are not expression 
1618
            based may return null.
1619
            </summary>
1620
            <exception cref="T:Microsoft.Scripting.SyntaxErrorException">Code cannot be compiled.</exception>
1621
        </member>
1622
        <member name="M:Microsoft.Scripting.Hosting.ScriptSource.Execute">
1623
            <summary>
1624
            Executes the source code. The execution is not bound to any particular scope.
1625
            </summary>
1626
        </member>
1627
        <member name="M:Microsoft.Scripting.Hosting.ScriptSource.Execute``1(Microsoft.Scripting.Hosting.ScriptScope)">
1628
            <summary>
1629
            Executes the code in a specified scope and converts the result to the specified type.
1630
            The conversion is language specific.
1631
            </summary>
1632
        </member>
1633
        <member name="M:Microsoft.Scripting.Hosting.ScriptSource.Execute``1">
1634
            <summary>
1635
            Executes the code in an empty scope and converts the result to the specified type.
1636
            The conversion is language specific.
1637
            </summary>
1638
        </member>
1639
        <member name="M:Microsoft.Scripting.Hosting.ScriptSource.ExecuteAndWrap">
1640
            <summary>
1641
            Executes the code in an empty scope.
1642
            Returns an ObjectHandle wrapping the resulting value of running the code.  
1643
            </summary>
1644
        </member>
1645
        <member name="M:Microsoft.Scripting.Hosting.ScriptSource.ExecuteAndWrap(Microsoft.Scripting.Hosting.ScriptScope)">
1646
            <summary>
1647
            Executes the code in the specified scope.
1648
            Returns an ObjectHandle wrapping the resulting value of running the code.  
1649
            </summary>
1650
        </member>
1651
        <member name="M:Microsoft.Scripting.Hosting.ScriptSource.ExecuteAndWrap(System.Runtime.Remoting.ObjectHandle@)">
1652
            <summary>
1653
            Executes the code in an empty scope.
1654
            Returns an ObjectHandle wrapping the resulting value of running the code.  
1655
            
1656
            If an exception is thrown the exception is caught and an ObjectHandle to
1657
            the exception is provided.
1658
            </summary>
1659
            <remarks>
1660
            Use this API to handle non-serializable exceptions (exceptions might not be serializable due to security restrictions) 
1661
            or if an exception serialization loses information.
1662
            </remarks>
1663
        </member>
1664
        <member name="M:Microsoft.Scripting.Hosting.ScriptSource.ExecuteAndWrap(Microsoft.Scripting.Hosting.ScriptScope,System.Runtime.Remoting.ObjectHandle@)">
1665
            <summary>
1666
            Executes the expression in the specified scope and return a result.
1667
            Returns an ObjectHandle wrapping the resulting value of running the code.  
1668
            
1669
            If an exception is thrown the exception is caught and an ObjectHandle to
1670
            the exception is provided.
1671
            </summary>
1672
            <remarks>
1673
            Use this API to handle non-serializable exceptions (exceptions might not be serializable due to security restrictions) 
1674
            or if an exception serialization loses information.
1675
            </remarks>
1676
        </member>
1677
        <member name="M:Microsoft.Scripting.Hosting.ScriptSource.ExecuteProgram">
1678
            <summary>
1679
            Runs a specified code as if it was a program launched from OS command shell. 
1680
            and returns a process exit code indicating the success or error condition 
1681
            of executing the code.
1682
            
1683
            Exact behavior depends on the language. Some languages have a dedicated "exit" exception that 
1684
            carries the exit code, in which case the exception is cought and the exit code is returned.
1685
            The default behavior returns the result of program's execution converted to an integer 
1686
            using a language specific conversion.
1687
            </summary>
1688
            <exception cref="T:Microsoft.Scripting.SyntaxErrorException">Code cannot be compiled.</exception>
1689
        </member>
1690
        <member name="M:Microsoft.Scripting.Hosting.ScriptSource.DetectEncoding">
1691
            <summary>
1692
            Detects the encoding of the content.
1693
            </summary>
1694
            <returns>
1695
            An encoding that is used by the reader of the script source to transcode its content to Unicode text.
1696
            <c>Null</c> if the content is already textual and no transcoding is performed.
1697
            </returns>
1698
            <remarks>
1699
            Note that the default encoding specified when the script source is created could be overridden by 
1700
            an encoding that is found in the content preamble (Unicode BOM or a language specific encoding preamble).
1701
            In that case the preamble encoding is returned. Otherwise, the default encoding is returned.
1702
            </remarks>
1703
            <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
1704
        </member>
1705
        <member name="M:Microsoft.Scripting.Hosting.ScriptSource.GetCodeLines(System.Int32,System.Int32)">
1706
            <summary>
1707
            Reads specified range of lines (or less) from the source unit. 
1708
            </summary>
1709
            <param name="start">1-based number of the first line to fetch.</param>
1710
            <param name="count">The number of lines to fetch.</param>
1711
            <remarks>
1712
            Which character sequences are considered line separators is language specific.
1713
            If language doesn't specify otherwise "\r", "\n", "\r\n" are recognized line separators.
1714
            </remarks>
1715
            <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
1716
        </member>
1717
        <member name="M:Microsoft.Scripting.Hosting.ScriptSource.GetCodeLine(System.Int32)">
1718
            <summary>
1719
            Reads a specified line.
1720
            </summary>
1721
            <param name="line">1-based line number.</param>
1722
            <returns>Line content. Line separator is not included.</returns>
1723
            <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
1724
            <remarks>
1725
            Which character sequences are considered line separators is language specific.
1726
            If language doesn't specify otherwise "\r", "\n", "\r\n" are recognized line separators.
1727
            </remarks>
1728
        </member>
1729
        <member name="M:Microsoft.Scripting.Hosting.ScriptSource.GetCode">
1730
            <summary>
1731
            Gets script source content.
1732
            </summary>
1733
            <returns>Entire content.</returns>
1734
            <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
1735
            <remarks>
1736
            The result includes language specific preambles (e.g. "#coding:UTF-8" encoding preamble recognized by Ruby), 
1737
            but not the preamble defined by the content encoding (e.g. BOM).
1738
            The entire content of the source unit is encoded by single encoding (if it is read from binary stream).
1739
            </remarks>
1740
        </member>
1741
        <member name="P:Microsoft.Scripting.Hosting.TokenCategorizer.CurrentState">
1742
            <summary>
1743
            The current internal state of the scanner.
1744
            </summary>
1745
        </member>
1746
        <member name="P:Microsoft.Scripting.Hosting.TokenCategorizer.CurrentPosition">
1747
            <summary>
1748
            The current startLocation of the scanner.
1749
            </summary>
1750
        </member>
1751
        <member name="M:Microsoft.Scripting.Hosting.TokenCategorizer.ReadToken">
1752
            <summary>
1753
            Move the tokenizer past the next token and return its category.
1754
            </summary>
1755
            <returns>The token information associated with the token just scanned.</returns>
1756
        </member>
1757
        <member name="M:Microsoft.Scripting.Hosting.TokenCategorizer.SkipToken">
1758
            <summary>
1759
            Move the tokenizer past the next token.
1760
            </summary>
1761
            <returns><c>False</c> if the end of stream has been reached, <c>true</c> otherwise.</returns>
1762
        </member>
1763
        <member name="M:Microsoft.Scripting.Hosting.TokenCategorizer.ReadTokens(System.Int32)">
1764
            <summary>
1765
            Get all tokens over a block of the stream.
1766
            </summary>
1767
            <remarks>
1768
            <para>
1769
            The scanner should return full tokens. If startLocation + length lands in the middle of a token, the full token
1770
            should be returned.
1771
            </para>
1772
            </remarks>s
1773
            <param name="characterCount">Tokens are read until at least given amount of characters is read or the stream ends.</param>
1774
            <returns>A enumeration of tokens.</returns>
1775
        </member>
1776
        <member name="M:Microsoft.Scripting.Hosting.TokenCategorizer.SkipTokens(System.Int32)">
1777
            <summary>
1778
            Scan from startLocation to at least startLocation + length.
1779
            </summary>
1780
            <param name="characterCount">Tokens are read until at least given amount of characters is read or the stream ends.</param>
1781
            <remarks>
1782
            This method is used to determine state at arbitrary startLocation.
1783
            </remarks>
1784
            <returns><c>False</c> if the end of stream has been reached, <c>true</c> otherwise.</returns>
1785
        </member>
1786
        <member name="T:Microsoft.Scripting.IndexSpan">
1787
            <summary>
1788
            This structure represents an immutable integer interval that describes a range of values, from Start to End. 
1789
            
1790
            It is closed on the left and open on the right: [Start .. End). 
1791
            </summary>
1792
        </member>
1793
        <member name="P:Microsoft.Scripting.LanguageOptions.NoAdaptiveCompilation">
1794
            <summary>
1795
            Dynamically choose between interpreting, simple compilation and compilation
1796
            that takes advantage of runtime history.
1797
            </summary>
1798
        </member>
1799
        <member name="P:Microsoft.Scripting.LanguageOptions.CompilationThreshold">
1800
            <summary>
1801
            The number of iterations before the interpreter starts compiling.s
1802
            </summary>
1803
        </member>
1804
        <member name="P:Microsoft.Scripting.LanguageOptions.ExceptionDetail">
1805
            <summary>
1806
             Display exception detail (callstack) when exception gets caught
1807
            </summary>
1808
        </member>
1809
        <member name="P:Microsoft.Scripting.LanguageOptions.PerfStats">
1810
            <summary>
1811
            Whether to gather performance statistics.
1812
            </summary>
1813
        </member>
1814
        <member name="P:Microsoft.Scripting.LanguageOptions.SearchPaths">
1815
            <summary>
1816
            Initial file search paths provided by the host.
1817
            </summary>
1818
        </member>
1819
        <member name="M:Microsoft.Scripting.LanguageOptions.GetStringCollectionOption(System.Collections.Generic.IDictionary{System.String,System.Object},System.String,System.Char[])">
1820
            <summary>
1821
            Reads an option whose value is expected to be a collection of non-null strings.
1822
            Reaturns a read-only copy of the option's value.
1823
            </summary>
1824
        </member>
1825
        <member name="T:Microsoft.Scripting.PlatformAdaptationLayer">
1826
            <summary>
1827
            Abstracts system operations that are used by DLR and could potentially be platform specific.
1828
            The host can implement its PAL to adapt DLR to the platform it is running on.
1829
            For example, the Silverlight host adapts some file operations to work against files on the server.
1830
            </summary>
1831
        </member>
1832
        <member name="M:Microsoft.Scripting.PlatformAdaptationLayer.GetFullPath(System.String)">
1833
            <exception cref="T:System.ArgumentException">Invalid path.</exception>
1834
        </member>
1835
        <member name="M:Microsoft.Scripting.PlatformAdaptationLayer.IsAbsolutePath(System.String)">
1836
            <exception cref="T:System.ArgumentException">Invalid path.</exception>
1837
        </member>
1838
        <member name="T:Microsoft.Scripting.Runtime.ContextId">
1839
            <summary>
1840
            Represents a language context.  Typically there is at most 1 context 
1841
            associated with each language, but some languages may use more than one context
1842
            to identify code that should be treated differently.  Contexts are used during
1843
            member and operator lookup.
1844
            </summary>
1845
        </member>
1846
        <member name="M:Microsoft.Scripting.Runtime.ContextId.RegisterContext(System.Object)">
1847
            <summary>
1848
            Registers a language within the system with the specified name.
1849
            </summary>
1850
        </member>
1851
        <member name="M:Microsoft.Scripting.Runtime.ContextId.LookupContext(System.Object)">
1852
            <summary>
1853
            Looks up the context ID for the specified context identifier
1854
            </summary>
1855
        </member>
1856
        <member name="T:Microsoft.Scripting.Runtime.LanguageConfiguration">
1857
            <summary>
1858
            Singleton for each language.
1859
            </summary>
1860
        </member>
1861
        <member name="M:Microsoft.Scripting.Runtime.LanguageConfiguration.LoadLanguageContext(Microsoft.Scripting.Runtime.ScriptDomainManager,System.Boolean@)">
1862
            <summary>
1863
            Must not be called under a lock as it can potentially call a user code.
1864
            </summary>
1865
            <exception cref="T:Microsoft.Scripting.InvalidImplementationException">The language context's implementation failed to instantiate.</exception>
1866
        </member>
1867
        <member name="P:Microsoft.Scripting.Runtime.DlrConfiguration.DebugMode">
1868
            <summary>
1869
            Gets a value indicating whether the application is in debug mode.
1870
            This means:
1871
            
1872
            1) Symbols are emitted for debuggable methods (methods associated with SourceUnit).
1873
            2) Debuggable methods are emitted to non-collectable types (this is due to CLR limitations on dynamic method debugging).
1874
            3) JIT optimization is disabled for all methods
1875
            4) Languages may disable optimizations based on this value.
1876
            </summary>
1877
        </member>
1878
        <member name="P:Microsoft.Scripting.Runtime.DlrConfiguration.PrivateBinding">
1879
            <summary>
1880
            Ignore CLR visibility checks.
1881
            </summary>
1882
        </member>
1883
        <member name="T:Microsoft.Scripting.Runtime.DocumentationProvider">
1884
            <summary>
1885
            Provides language specific documentation for live objects.
1886
            </summary>
1887
        </member>
1888
        <member name="T:Microsoft.Scripting.Runtime.DynamicOperations">
1889
            <summary>
1890
            ObjectOperations provide a large catalogue of object operations such as member access, conversions, 
1891
            indexing, and things like addition.  There are several introspection and tool support services available
1892
            for more advanced hosts.  
1893
            
1894
            You get ObjectOperation instances from ScriptEngine, and they are bound to their engines for the semantics 
1895
            of the operations.  There is a default instance of ObjectOperations you can share across all uses of the 
1896
            engine.  However, very advanced hosts can create new instances.
1897
            </summary>
1898
        </member>
1899
        <member name="F:Microsoft.Scripting.Runtime.DynamicOperations._sites">
1900
            <summary> a dictionary of SiteKey's which are used to cache frequently used operations, logically a set </summary>
1901
        </member>
1902
        <member name="F:Microsoft.Scripting.Runtime.DynamicOperations.LastCleanup">
1903
            <summary> the # of sites we had created at the last cleanup </summary>
1904
        </member>
1905
        <member name="F:Microsoft.Scripting.Runtime.DynamicOperations.SitesCreated">
1906
            <summary> the total number of sites we've ever created </summary>
1907
        </member>
1908
        <member name="F:Microsoft.Scripting.Runtime.DynamicOperations.CleanupThreshold">
1909
            <summary> the number of sites required before we'll try cleaning up the cache... </summary>
1910
        </member>
1911
        <member name="F:Microsoft.Scripting.Runtime.DynamicOperations.RemoveThreshold">
1912
            <summary> the minimum difference between the average that is required to remove </summary>
1913
        </member>
1914
        <member name="F:Microsoft.Scripting.Runtime.DynamicOperations.StopCleanupThreshold">
1915
            <summary> the maximum number we'll remove on a single cache cleanup </summary>
1916
        </member>
1917
        <member name="F:Microsoft.Scripting.Runtime.DynamicOperations.ClearThreshold">
1918
            <summary> the number of sites we should clear after if we can't make progress cleaning up otherwise </summary>
1919
        </member>
1920
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.Invoke(System.Object,System.Object[])">
1921
            <summary>
1922
            Calls the provided object with the given parameters and returns the result.
1923
            
1924
            The prefered way of calling objects is to convert the object to a strongly typed delegate 
1925
            using the ConvertTo methods and then invoking that delegate.
1926
            </summary>
1927
        </member>
1928
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.InvokeMember(System.Object,System.String,System.Object[])">
1929
            <summary>
1930
            Invokes a member on the provided object with the given parameters and returns the result.
1931
            </summary>
1932
        </member>
1933
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.InvokeMember(System.Object,System.String,System.Boolean,System.Object[])">
1934
            <summary>
1935
            Invokes a member on the provided object with the given parameters and returns the result.
1936
            </summary>
1937
        </member>
1938
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.CreateInstance(System.Object,System.Object[])">
1939
            <summary>
1940
            Creates a new instance from the provided object using the given parameters, and returns the result.
1941
            </summary>
1942
        </member>
1943
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.GetMember(System.Object,System.String)">
1944
            <summary>
1945
            Gets the member name from the object obj.  Throws an exception if the member does not exist or is write-only.
1946
            </summary>
1947
        </member>
1948
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.GetMember``1(System.Object,System.String)">
1949
            <summary>
1950
            Gets the member name from the object obj and converts it to the type T.  Throws an exception if the
1951
            member does not exist, is write-only, or cannot be converted.
1952
            </summary>
1953
        </member>
1954
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.TryGetMember(System.Object,System.String,System.Object@)">
1955
            <summary>
1956
            Gets the member name from the object obj.  Returns true if the member is successfully retrieved and 
1957
            stores the value in the value out param.
1958
            </summary>
1959
        </member>
1960
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.ContainsMember(System.Object,System.String)">
1961
            <summary>
1962
            Returns true if the object has a member named name, false if the member does not exist.
1963
            </summary>
1964
        </member>
1965
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.RemoveMember(System.Object,System.String)">
1966
            <summary>
1967
            Removes the member name from the object obj.
1968
            </summary>
1969
        </member>
1970
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.SetMember(System.Object,System.String,System.Object)">
1971
            <summary>
1972
            Sets the member name on object obj to value.
1973
            </summary>
1974
        </member>
1975
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.SetMember``1(System.Object,System.String,``0)">
1976
            <summary>
1977
            Sets the member name on object obj to value.  This overload can be used to avoid
1978
            boxing and casting of strongly typed members.
1979
            </summary>
1980
        </member>
1981
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.GetMember(System.Object,System.String,System.Boolean)">
1982
            <summary>
1983
            Gets the member name from the object obj.  Throws an exception if the member does not exist or is write-only.
1984
            </summary>
1985
        </member>
1986
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.GetMember``1(System.Object,System.String,System.Boolean)">
1987
            <summary>
1988
            Gets the member name from the object obj and converts it to the type T. The conversion will be explicit or implicit
1989
            depending on what the langauge prefers. Throws an exception if the member does not exist, is write-only, or cannot be converted.
1990
            </summary>
1991
        </member>
1992
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.TryGetMember(System.Object,System.String,System.Boolean,System.Object@)">
1993
            <summary>
1994
            Gets the member name from the object obj.  Returns true if the member is successfully retrieved and 
1995
            stores the value in the value out param.
1996
            </summary>
1997
        </member>
1998
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.ContainsMember(System.Object,System.String,System.Boolean)">
1999
            <summary>
2000
            Returns true if the object has a member named name, false if the member does not exist.
2001
            </summary>
2002
        </member>
2003
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.RemoveMember(System.Object,System.String,System.Boolean)">
2004
            <summary>
2005
            Removes the member name from the object obj.  Returns true if the member was successfully removed
2006
            or false if the member does not exist.
2007
            </summary>
2008
        </member>
2009
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.SetMember(System.Object,System.String,System.Object,System.Boolean)">
2010
            <summary>
2011
            Sets the member name on object obj to value.
2012
            </summary>
2013
        </member>
2014
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.SetMember``1(System.Object,System.String,``0,System.Boolean)">
2015
            <summary>
2016
            Sets the member name on object obj to value.  This overload can be used to avoid
2017
            boxing and casting of strongly typed members.
2018
            </summary>
2019
        </member>
2020
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.ConvertTo``1(System.Object)">
2021
            <summary>
2022
            Converts the object obj to the type T.  The conversion will be explicit or implicit
2023
            depending on what the langauge prefers.
2024
            </summary>
2025
        </member>
2026
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.ConvertTo(System.Object,System.Type)">
2027
            <summary> 
2028
            Converts the object obj to the type type.  The conversion will be explicit or implicit
2029
            depending on what the langauge prefers.
2030
            </summary>
2031
        </member>
2032
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.TryConvertTo``1(System.Object,``0@)">
2033
            <summary>
2034
            Converts the object obj to the type T.  Returns true if the value can be converted, false if it cannot.
2035
            
2036
            The conversion will be explicit or implicit depending on what the langauge prefers.
2037
            </summary>
2038
        </member>
2039
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.TryConvertTo(System.Object,System.Type,System.Object@)">
2040
            <summary>
2041
            Converts the object obj to the type type.  Returns true if the value can be converted, false if it cannot.
2042
            
2043
            The conversion will be explicit or implicit depending on what the langauge prefers.
2044
            </summary>
2045
        </member>
2046
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.ExplicitConvertTo``1(System.Object)">
2047
            <summary>
2048
            Convers the object obj to the type T including explicit conversions which may lose information.
2049
            </summary>
2050
        </member>
2051
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.ExplicitConvertTo(System.Object,System.Type)">
2052
            <summary>
2053
            Converts the object obj to the type type including explicit conversions which may lose information.
2054
            </summary>
2055
        </member>
2056
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.TryExplicitConvertTo(System.Object,System.Type,System.Object@)">
2057
            <summary>
2058
            Converts the object obj to the type type including explicit conversions which may lose information.  
2059
            
2060
            Returns true if the value can be converted, false if it cannot.
2061
            </summary>
2062
        </member>
2063
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.TryExplicitConvertTo``1(System.Object,``0@)">
2064
            <summary>
2065
            Converts the object obj to the type T.  Returns true if the value can be converted, false if it cannot.
2066
            </summary>
2067
        </member>
2068
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.ImplicitConvertTo``1(System.Object)">
2069
            <summary>
2070
            Convers the object obj to the type T including implicit conversions.
2071
            </summary>
2072
        </member>
2073
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.ImplicitConvertTo(System.Object,System.Type)">
2074
            <summary>
2075
            Converts the object obj to the type type including implicit conversions.
2076
            </summary>
2077
        </member>
2078
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.TryImplicitConvertTo(System.Object,System.Type,System.Object@)">
2079
            <summary>
2080
            Converts the object obj to the type type including implicit conversions. 
2081
            
2082
            Returns true if the value can be converted, false if it cannot.
2083
            </summary>
2084
        </member>
2085
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.TryImplicitConvertTo``1(System.Object,``0@)">
2086
            <summary>
2087
            Converts the object obj to the type T.  Returns true if the value can be converted, false if it cannot.
2088
            </summary>
2089
        </member>
2090
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.DoOperation``2(System.Linq.Expressions.ExpressionType,``0)">
2091
            <summary>
2092
            Performs a generic unary operation on the strongly typed target and returns the value as the specified type
2093
            </summary>
2094
        </member>
2095
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.DoOperation``3(System.Linq.Expressions.ExpressionType,``0,``1)">
2096
            <summary>
2097
            Peforms the generic binary operation on the specified strongly typed targets and returns
2098
            the strongly typed result.
2099
            </summary>
2100
        </member>
2101
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.GetMemberNames(System.Object)">
2102
            <summary>
2103
            Returns a list of strings which contain the known members of the object.
2104
            </summary>
2105
        </member>
2106
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.Format(System.Object)">
2107
            <summary>
2108
            Returns a string representation of the object in a language specific object display format.
2109
            </summary>
2110
        </member>
2111
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.GetOrCreateSite``2(System.Runtime.CompilerServices.CallSiteBinder)">
2112
            <summary>
2113
            Gets or creates a dynamic site w/ the specified type parameters for the provided binder.
2114
            </summary>
2115
            <remarks>
2116
            This will either get the site from the cache or create a new site and return it. The cache
2117
            may be cleaned if it's gotten too big since the last usage.
2118
            </remarks>
2119
        </member>
2120
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.GetOrCreateActionSite``1(System.Runtime.CompilerServices.CallSiteBinder)">
2121
            <summary>
2122
            Gets or creates a dynamic site w/ the specified type parameters for the provided binder.
2123
            </summary>
2124
            <remarks>
2125
            This will either get the site from the cache or create a new site and return it. The cache
2126
            may be cleaned if it's gotten too big since the last usage.
2127
            </remarks>
2128
        </member>
2129
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.GetOrCreateSite``3(System.Runtime.CompilerServices.CallSiteBinder)">
2130
            <summary>
2131
            Gets or creates a dynamic site w/ the specified type parameters for the provided binder.
2132
            </summary>
2133
            <remarks>
2134
            This will either get the site from the cache or create a new site and return it. The cache
2135
            may be cleaned if it's gotten too big since the last usage.
2136
            </remarks>
2137
        </member>
2138
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.GetOrCreateSite``4(System.Runtime.CompilerServices.CallSiteBinder)">
2139
            <summary>
2140
            Gets or creates a dynamic site w/ the specified type parameters for the provided binder.
2141
            </summary>
2142
            <remarks>
2143
            This will either get the site from the cache or create a new site and return it. The cache
2144
            may be cleaned if it's gotten too big since the last usage.
2145
            </remarks>
2146
        </member>
2147
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.GetOrCreateSite``1(System.Runtime.CompilerServices.CallSiteBinder)">
2148
            <summary>
2149
            Gets or creates a dynamic site w/ the specified type parameters for the provided binder.
2150
            </summary>
2151
            <remarks>
2152
            This will either get the site from the cache or create a new site and return it. The cache
2153
            may be cleaned if it's gotten too big since the last usage.
2154
            </remarks>
2155
        </member>
2156
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.GetOrCreateSite``1(System.Runtime.CompilerServices.CallSiteBinder,System.Func{System.Runtime.CompilerServices.CallSiteBinder,``0})">
2157
            <summary>
2158
            Helper to create to get or create the dynamic site - called by the GetSite methods.
2159
            </summary>
2160
        </member>
2161
        <member name="M:Microsoft.Scripting.Runtime.DynamicOperations.CleanupNoLock">
2162
            <summary>
2163
            Removes items from the cache that have the lowest usage...
2164
            </summary>
2165
        </member>
2166
        <member name="T:Microsoft.Scripting.Runtime.DynamicOperations.SiteKey">
2167
            <summary>
2168
            Helper class for tracking all of our unique dynamic sites and their
2169
            usage patterns.  We hash on the combination of the binder and site type.
2170
            
2171
            We also track the hit count and the key holds the site associated w/ the 
2172
            key.  Logically this is a set based upon the binder and site-type but we
2173
            store it in a dictionary.
2174
            </summary>
2175
        </member>
2176
        <member name="T:Microsoft.Scripting.Runtime.DynamicRuntimeHostingProvider">
2177
            <summary>
2178
            DLR requires any Hosting API provider to implement this class and provide its instance upon Runtime initialization.
2179
            DLR calls on it to perform basic host/system dependent operations.
2180
            </summary>
2181
        </member>
2182
        <member name="P:Microsoft.Scripting.Runtime.DynamicRuntimeHostingProvider.PlatformAdaptationLayer">
2183
            <summary>
2184
            Abstracts system operations that are used by DLR and could potentially be platform specific.
2185
            </summary>
2186
        </member>
2187
        <member name="T:Microsoft.Scripting.Runtime.DynamicStackFrame">
2188
            <summary>
2189
            Helper for storing information about stack frames.
2190
            </summary>
2191
        </member>
2192
        <member name="T:Microsoft.Scripting.Runtime.InvariantContext">
2193
            <summary>
2194
            Singleton LanguageContext which represents a language-neutral LanguageContext
2195
            </summary>
2196
        </member>
2197
        <member name="T:Microsoft.Scripting.Runtime.LanguageBoundTextContentProvider">
2198
            <summary>
2199
            Internal class which binds a LanguageContext, StreamContentProvider, and Encoding together to produce
2200
            a TextContentProvider which reads binary data with the correct language semantics.
2201
            </summary>
2202
        </member>
2203
        <member name="T:Microsoft.Scripting.Runtime.LanguageContext">
2204
            <summary>
2205
            Provides language specific facilities which are typically called by the runtime.
2206
            </summary>
2207
        </member>
2208
        <member name="P:Microsoft.Scripting.Runtime.LanguageContext.ContextId">
2209
            <summary>
2210
            Provides the ContextId which includes members that should only be shown for this LanguageContext.
2211
            
2212
            ContextId's are used for filtering by Scope's.
2213
            </summary>
2214
        </member>
2215
        <member name="P:Microsoft.Scripting.Runtime.LanguageContext.DomainManager">
2216
            <summary>
2217
            Gets the ScriptDomainManager that this LanguageContext is running within.
2218
            </summary>
2219
        </member>
2220
        <member name="P:Microsoft.Scripting.Runtime.LanguageContext.CanCreateSourceCode">
2221
            <summary>
2222
            Whether the language can parse code and create source units.
2223
            </summary>
2224
        </member>
2225
        <member name="M:Microsoft.Scripting.Runtime.LanguageContext.GetScope(System.String)">
2226
            <summary>
2227
            Gets the scope associated with a file, or null if none was available
2228
            </summary>
2229
        </member>
2230
        <member name="M:Microsoft.Scripting.Runtime.LanguageContext.CreateScope">
2231
            <summary>
2232
            Creates a new ScriptScope using the default storage container
2233
            </summary>
2234
        </member>
2235
        <member name="M:Microsoft.Scripting.Runtime.LanguageContext.CreateScope(System.Collections.Generic.IDictionary{System.String,System.Object})">
2236
            <summary>
2237
            Creates a new ScriptScope whose storage contains the provided dictionary of objects
2238
            
2239
            Accesses to the ScriptScope will turn into get,set, and delete members against this dictionary
2240
            </summary>
2241
        </member>
2242
        <member name="M:Microsoft.Scripting.Runtime.LanguageContext.CreateScope(System.Dynamic.IDynamicMetaObjectProvider)">
2243
            <summary>
2244
            Creates a new ScriptScope whose storage is an arbitrary object.
2245
            
2246
            Accesses to the ScriptScope will turn into get, set, and delete members against the object.
2247
            </summary>
2248
        </member>
2249
        <member name="M:Microsoft.Scripting.Runtime.LanguageContext.ScopeSetVariable(Microsoft.Scripting.Runtime.Scope,System.String,System.Object)">
2250
            <summary>
2251
            Provides access to setting variables in scopes.  
2252
            
2253
            By default this goes through ObjectOperations which can be rather slow.  
2254
            Languages can override this to provide fast customized access which avoids 
2255
            ObjectOperations.  Languages can provide fast access to commonly used scope 
2256
            types for that language.  Typically this includes ScopeStorage and any other 
2257
            classes which the language themselves uses for backing of a Scope.
2258
            </summary>
2259
        </member>
2260
        <member name="M:Microsoft.Scripting.Runtime.LanguageContext.ScopeTryGetVariable(Microsoft.Scripting.Runtime.Scope,System.String,System.Object@)">
2261
            <summary>
2262
            Provides access to try getting variables in scopes.  
2263
            
2264
            By default this goes through ObjectOperations which can be rather slow.  
2265
            Languages can override this to provide fast customized access which avoids 
2266
            ObjectOperations.  Languages can provide fast access to commonly used scope 
2267
            types for that language.  Typically this includes ScopeStorage and any other 
2268
            classes which the language themselves uses for backing of a Scope.
2269
            </summary>
2270
        </member>
2271
        <member name="M:Microsoft.Scripting.Runtime.LanguageContext.ScopeGetVariable``1(Microsoft.Scripting.Runtime.Scope,System.String)">
2272
            <summary>
2273
            Provides access to getting variables in scopes and converting the result.
2274
            
2275
            By default this goes through ObjectOperations which can be rather slow.  
2276
            Languages can override this to provide fast customized access which avoids 
2277
            ObjectOperations.  Languages can provide fast access to commonly used scope 
2278
            types for that language.  Typically this includes ScopeStorage and any other 
2279
            classes which the language themselves uses for backing of a Scope.
2280
            </summary>
2281
        </member>
2282
        <member name="M:Microsoft.Scripting.Runtime.LanguageContext.ScopeGetVariable(Microsoft.Scripting.Runtime.Scope,System.String)">
2283
            <summary>
2284
            Provides access to getting variables in scopes.
2285
            
2286
            By default this goes through ObjectOperations which can be rather slow.  
2287
            Languages can override this to provide fast customized access which avoids 
2288
            ObjectOperations.  Languages can provide fast access to commonly used scope 
2289
            types for that language.  Typically this includes ScopeStorage and any other 
2290
            classes which the language themselves uses for backing of a Scope.
2291
            </summary>
2292
        </member>
2293
        <member name="M:Microsoft.Scripting.Runtime.LanguageContext.GetSourceReader(System.IO.Stream,System.Text.Encoding,System.String)">
2294
            <summary>
2295
            Provides a text reader for source code that is to be read from a given stream.
2296
            </summary>
2297
            <param name="stream">The stream open for reading. The stream must also allow seeking.</param>
2298
            <param name="defaultEncoding">An encoding that should be used if the stream doesn't have Unicode or language specific preamble.</param>
2299
            <param name="path">the path of the source unit if available</param>
2300
            <returns>The reader.</returns>
2301
            <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
2302
        </member>
2303
        <member name="M:Microsoft.Scripting.Runtime.LanguageContext.GetCompilerOptions">
2304
            <summary>
2305
            Creates the language specific CompilerOptions object for compilation of code not bound to any particular scope.
2306
            The language should flow any relevant options from LanguageContext to the newly created options instance.
2307
            </summary>
2308
        </member>
2309
        <member name="M:Microsoft.Scripting.Runtime.LanguageContext.GetCompilerOptions(Microsoft.Scripting.Runtime.Scope)">
2310
            <summary>
2311
            Creates the language specific CompilerOptions object for compilation of code bound to a given scope.
2312
            </summary>
2313
        </member>
2314
        <member name="M:Microsoft.Scripting.Runtime.LanguageContext.CompileSourceCode(Microsoft.Scripting.SourceUnit,Microsoft.Scripting.CompilerOptions,Microsoft.Scripting.ErrorSink)">
2315
            <summary>
2316
            Parses the source code within a specified compiler context. 
2317
            The source unit to parse is held on by the context.
2318
            </summary>
2319
            <returns><b>null</b> on failure.</returns>
2320
            <remarks>Could also set the code properties and line/file mappings on the source unit.</remarks>
2321
        </member>
2322
        <member name="M:Microsoft.Scripting.Runtime.LanguageContext.CreateConvertBinder(System.Type,System.Nullable{System.Boolean})">
2323
            <summary>
2324
            Creates a conversion binder.
2325
            
2326
            If explicitCast is true then the binder should do explicit conversions.
2327
            If explicitCast is false then the binder should do implicit conversions.
2328
            
2329
            If explicitCast is null it is up to the language to select the conversions
2330
            which closest match their normal behavior.
2331
            </summary>
2332
        </member>
2333
        <member name="M:Microsoft.Scripting.Runtime.LanguageContext.GetMemberNames(System.Object)">
2334
            <summary>
2335
            Gets the member names associated with the object
2336
            By default, only returns IDO names
2337
            </summary>
2338
        </member>
2339
        <member name="M:Microsoft.Scripting.Runtime.LanguageContext.FormatObject(Microsoft.Scripting.Runtime.DynamicOperations,System.Object)">
2340
            <summary>
2341
            Returns a string representation of the object in a language specific object display format.
2342
            </summary>
2343
            <param name="operations">Dynamic sites container that could be used for any dynamic dispatches necessary for formatting.</param>
2344
            <param name="obj">Object to format.</param>
2345
            <returns>A string representation of object.</returns>
2346
        </member>
2347
        <member name="T:Microsoft.Scripting.Runtime.NotNullAttribute">
2348
            <summary>
2349
            This attribute marks a parameter that is not allowed to be null.
2350
            It is used by the method binding infrastructure to generate better error 
2351
            messages and method selection.
2352
            </summary>
2353
        </member>
2354
        <member name="T:Microsoft.Scripting.Runtime.NotNullItemsAttribute">
2355
            <summary>
2356
            This attribute marks a parameter whose type is an array that is not allowed to have null items.
2357
            It is used by the method binding infrastructure to generate better error 
2358
            messages and method selection.
2359
            </summary>
2360
        </member>
2361
        <member name="T:Microsoft.Scripting.Runtime.ObjectDictionaryExpando">
2362
            <summary>
2363
            Wraps a an IDictionary[object, object] and exposes it as an IDynamicMetaObjectProvider so that
2364
            users can access string attributes using member accesses.
2365
            </summary>
2366
        </member>
2367
        <member name="T:Microsoft.Scripting.Runtime.Scope">
2368
            <summary>
2369
            Represents a host-provided variables for executable code.  The variables are
2370
            typically backed by a host-provided dictionary. Languages can also associate per-language
2371
            information with the context by using scope extensions.  This can be used for tracking
2372
            state which is used across multiple executions, for providing custom forms of 
2373
            storage (for example object keyed access), or other language specific semantics.
2374
            
2375
            Scope objects are thread-safe as long as their underlying storage is thread safe.
2376
            
2377
            Script hosts can choose to use thread safe or thread unsafe modules but must be sure
2378
            to constrain the code they right to be single-threaded if using thread unsafe
2379
            storage.
2380
            </summary>
2381
        </member>
2382
        <member name="M:Microsoft.Scripting.Runtime.Scope.#ctor">
2383
            <summary>
2384
            Creates a new scope with a new empty thread-safe dictionary.  
2385
            </summary>
2386
        </member>
2387
        <member name="M:Microsoft.Scripting.Runtime.Scope.#ctor(System.Dynamic.IDynamicMetaObjectProvider)">
2388
            <summary>
2389
            Creates a new scope which is backed by an arbitrary object for it's storage.
2390
            </summary>
2391
            <param name="storage"></param>
2392
        </member>
2393
        <member name="M:Microsoft.Scripting.Runtime.Scope.GetExtension(Microsoft.Scripting.Runtime.ContextId)">
2394
            <summary>
2395
            Gets the ScopeExtension associated with the provided ContextId.
2396
            </summary>
2397
        </member>
2398
        <member name="M:Microsoft.Scripting.Runtime.Scope.SetExtension(Microsoft.Scripting.Runtime.ContextId,Microsoft.Scripting.Runtime.ScopeExtension)">
2399
            <summary>
2400
            Sets the ScopeExtension to the provided value for the given ContextId.  
2401
            
2402
            The extension can only be set once.  The returned value is either the new ScopeExtension
2403
            if no value was previously set or the previous value.
2404
            </summary>
2405
        </member>
2406
        <member name="P:Microsoft.Scripting.Runtime.ScriptDomainManager.Globals">
2407
            <summary>
2408
            Gets or sets a collection of environment variables.
2409
            </summary>
2410
        </member>
2411
        <member name="E:Microsoft.Scripting.Runtime.ScriptDomainManager.AssemblyLoaded">
2412
            <summary>
2413
            Event for when a host calls LoadAssembly.  After hooking this
2414
            event languages will need to call GetLoadedAssemblyList to
2415
            get any assemblies which were loaded before the language was
2416
            loaded.
2417
            </summary>
2418
        </member>
2419
        <member name="M:Microsoft.Scripting.Runtime.SharedIO.SetOutput(System.IO.Stream,System.IO.TextWriter)">
2420
            <summary>
2421
            Only host should redirect I/O.
2422
            </summary>
2423
        </member>
2424
        <member name="T:Microsoft.Scripting.Runtime.StringDictionaryExpando">
2425
            <summary>
2426
            Exposes a IDictionary[string, object] as a dynamic object.  Gets/sets/deletes turn
2427
            into accesses on the underlying dictionary.
2428
            </summary>
2429
        </member>
2430
        <member name="P:Microsoft.Scripting.Runtime.TokenizerService.CurrentState">
2431
            <summary>
2432
            The current internal state of the scanner.
2433
            </summary>
2434
        </member>
2435
        <member name="P:Microsoft.Scripting.Runtime.TokenizerService.CurrentPosition">
2436
            <summary>
2437
            The current startLocation of the scanner.
2438
            </summary>
2439
        </member>
2440
        <member name="M:Microsoft.Scripting.Runtime.TokenizerService.ReadToken">
2441
            <summary>
2442
            Move the tokenizer past the next token and return its category.
2443
            </summary>
2444
            <returns>The token information associated with the token just scanned.</returns>
2445
        </member>
2446
        <member name="M:Microsoft.Scripting.Runtime.TokenizerService.SkipToken">
2447
            <summary>
2448
            Move the tokenizer past the next token.
2449
            </summary>
2450
            <returns><c>False</c> if the end of stream has been reached, <c>true</c> otherwise.</returns>
2451
        </member>
2452
        <member name="M:Microsoft.Scripting.Runtime.TokenizerService.ReadTokens(System.Int32)">
2453
            <summary>
2454
            Get all tokens over a block of the stream.
2455
            </summary>
2456
            <remarks>
2457
            <para>
2458
            The scanner should return full tokens. If startLocation + length lands in the middle of a token, the full token
2459
            should be returned.
2460
            </para>
2461
            </remarks>
2462
            <param name="characterCount">Tokens are read until at least given amount of characters is read or the stream ends.</param>
2463
            <returns>A enumeration of tokens.</returns>
2464
        </member>
2465
        <member name="M:Microsoft.Scripting.Runtime.TokenizerService.SkipTokens(System.Int32)">
2466
            <summary>
2467
            Scan from startLocation to at least startLocation + length.
2468
            </summary>
2469
            <param name="countOfChars">The mininum number of characters to process while getting tokens.</param>
2470
            <remarks>
2471
            This method is used to determine state at arbitrary startLocation.
2472
            </remarks>
2473
            <returns><c>False</c> if the end of stream has been reached, <c>true</c> otherwise.</returns>
2474
        </member>
2475
        <member name="T:Microsoft.Scripting.ParamDictionaryAttribute">
2476
            <summary>
2477
            This attribute is used to mark a parameter that can accept any keyword parameters that
2478
            are not bound to normal arguments.  The extra keyword parameters will be
2479
            passed in a dictionary which is created for the call.
2480
            
2481
            Most languages which support params dictionaries will support the following types:
2482
                IDictionary&lt;string, anything&gt;
2483
                IDictionary&lt;object, anything&gt;
2484
                Dictionary&lt;string, anything&gt;
2485
                Dictionary&lt;object, anything&gt;
2486
                IDictionary
2487
                IAttributesCollection (deprecated)
2488
            
2489
            For languages which don't have language level support the user will be required to
2490
            create and populate the dictionary by hand.
2491
            
2492
            This attribute is the dictionary equivalent of the System.ParamArrayAttribute.
2493
            </summary>
2494
            <example>
2495
            public static void KeywordArgFunction([ParamsDictionary]IDictionary&lt;string, object&gt; dict) {
2496
                foreach (var v in dict) {
2497
                    Console.WriteLine("Key: {0} Value: {1}", v.Key, v.Value);
2498
                }
2499
            }
2500
            
2501
            Called from Python:
2502
            
2503
            KeywordArgFunction(a = 2, b = "abc")
2504
            
2505
            will print:
2506
                Key: a Value = 2
2507
                Key: b Value = abc
2508
            </example>
2509
        </member>
2510
        <member name="T:Microsoft.Scripting.ScopeStorage">
2511
            <summary>
2512
            Provides optimized and cacheable support for scope storage.
2513
            
2514
            This is the default object used for storing values in a scope.
2515
            
2516
            </summary>
2517
            <remarks>
2518
            The implementation uses a case-insensitive dictionary which holds
2519
            onto ScopeVariableIgnoreCase objects.  The SVIC's hold onto ScopeVariable
2520
            objects for each possible casing.
2521
            </remarks>
2522
        </member>
2523
        <member name="M:Microsoft.Scripting.ScopeStorage.GetValue(System.String,System.Boolean)">
2524
            <summary>
2525
            Gets the named value from the scope optionally ignoring case.
2526
            
2527
            If the named value is not present an InvalidOperationException is raised.
2528
            </summary>
2529
        </member>
2530
        <member name="M:Microsoft.Scripting.ScopeStorage.TryGetValue(System.String,System.Boolean,System.Object@)">
2531
            <summary>
2532
            Attempts to get the named value from the scope optionally ignoring the case.
2533
            
2534
            Returns true if the value is present, false if it is not.
2535
            </summary>
2536
        </member>
2537
        <member name="M:Microsoft.Scripting.ScopeStorage.SetValue(System.String,System.Boolean,System.Object)">
2538
            <summary>
2539
            Sets the named value in the scope optionally ignoring the case.
2540
            </summary>
2541
        </member>
2542
        <member name="M:Microsoft.Scripting.ScopeStorage.DeleteValue(System.String,System.Boolean)">
2543
            <summary>
2544
            Deletes the named value from the scope optionally ignoring the case.
2545
            </summary>
2546
        </member>
2547
        <member name="M:Microsoft.Scripting.ScopeStorage.HasValue(System.String,System.Boolean)">
2548
            <summary>
2549
            Checks if the named value is present in the scope optionally ignoring the case.
2550
            </summary>
2551
        </member>
2552
        <member name="M:Microsoft.Scripting.ScopeStorage.GetScopeVariable(System.String,System.Boolean)">
2553
            <summary>
2554
            Gets the IScopeVariable for the scope optionally ignoring case.
2555
            
2556
            The IScopeVariable can be held onto and get/set/deleted without performing
2557
            a dictionary lookup on subsequent accesses.
2558
            </summary>
2559
        </member>
2560
        <member name="M:Microsoft.Scripting.ScopeStorage.GetScopeVariable(System.String)">
2561
            <summary>
2562
            Gets the ScopeVariable for the scope in a case-sensitive manner.
2563
            
2564
            The ScopeVariable can be held onto and get/set/deleted without performing
2565
            a dictionary lookup on subsequent accesses.
2566
            </summary>
2567
        </member>
2568
        <member name="M:Microsoft.Scripting.ScopeStorage.GetScopeVariableIgnoreCase(System.String)">
2569
            <summary>
2570
            Gets the ScopeVariableIgnoreCase for the scope in a case-insensitive manner.
2571
            
2572
            The ScopeVariable can be held onto and get/set/deleted without performing
2573
            a dictionary lookup on subsequent accesses.
2574
            </summary>
2575
        </member>
2576
        <member name="P:Microsoft.Scripting.ScopeStorage.Item(System.String)">
2577
            <summary>
2578
            Provides convenient case-sensitive value access.
2579
            </summary>
2580
        </member>
2581
        <member name="M:Microsoft.Scripting.ScopeStorage.GetMemberNames">
2582
            <summary>
2583
            Returns all of the member names which currently have values in the scope.
2584
            
2585
            The list contains all available casings.
2586
            </summary>
2587
        </member>
2588
        <member name="M:Microsoft.Scripting.ScopeStorage.GetItems">
2589
            <summary>
2590
            Returns all of the member names and their associated values from the scope.
2591
            
2592
            The list contains all available casings.
2593
            </summary>
2594
        </member>
2595
        <member name="T:Microsoft.Scripting.IScopeVariable">
2596
            <summary>
2597
            Provides a common interface for accessing both case sensitive and 
2598
            case insensitive variable storage.
2599
            </summary>
2600
        </member>
2601
        <member name="P:Microsoft.Scripting.IScopeVariable.HasValue">
2602
            <summary>
2603
            True if the scope has a value, false if it does not.
2604
            </summary>
2605
        </member>
2606
        <member name="M:Microsoft.Scripting.IScopeVariable.TryGetValue(System.Object@)">
2607
            <summary>
2608
            Atempts to get the value. If a value is assigned it returns true otherwise
2609
            it returns false.
2610
            </summary>
2611
        </member>
2612
        <member name="M:Microsoft.Scripting.IScopeVariable.SetValue(System.Object)">
2613
            <summary>
2614
            Sets the current value in the scope.
2615
            </summary>
2616
        </member>
2617
        <member name="M:Microsoft.Scripting.IScopeVariable.DeleteValue">
2618
            <summary>
2619
            Removes the current value from the scope.
2620
            </summary>
2621
        </member>
2622
        <member name="T:Microsoft.Scripting.ScopeVariable">
2623
            <summary>
2624
            Boxes the value for storage in a scope. Languages or consumers of the scope
2625
            can save this value and use it to get/set the current value in the scope for
2626
            commonly accessed values.
2627
            
2628
            ScopeVariables are case sensitive and will only refer to a single value.
2629
            </summary>
2630
        </member>
2631
        <member name="P:Microsoft.Scripting.ScopeVariable.HasValue">
2632
            <summary>
2633
            True if the scope has a value, false if it does not.
2634
            </summary>
2635
        </member>
2636
        <member name="M:Microsoft.Scripting.ScopeVariable.TryGetValue(System.Object@)">
2637
            <summary>
2638
            Atempts to get the value. If a value is assigned it returns true otherwise
2639
            it returns false.
2640
            </summary>
2641
        </member>
2642
        <member name="M:Microsoft.Scripting.ScopeVariable.SetValue(System.Object)">
2643
            <summary>
2644
            Sets the current value in the scope.
2645
            </summary>
2646
        </member>
2647
        <member name="M:Microsoft.Scripting.ScopeVariable.DeleteValue">
2648
            <summary>
2649
            Removes the current value from the scope.
2650
            </summary>
2651
        </member>
2652
        <member name="T:Microsoft.Scripting.ScopeVariableIgnoreCase">
2653
            <summary>
2654
            Boxes the value for storage in a scope. Languages or consumers of the scope
2655
            can save this value and use it to get/set the current value in the scope for
2656
            commonly accessed values.
2657
            
2658
            ScopeVariablesIgnoreCase are case insensitive and may access different casings
2659
            depending on how other gets/sets occur in the scope.
2660
            </summary>
2661
        </member>
2662
        <member name="P:Microsoft.Scripting.ScopeVariableIgnoreCase.HasValue">
2663
            <summary>
2664
            True if the scope has a value, false if it does not.
2665
            </summary>
2666
        </member>
2667
        <member name="M:Microsoft.Scripting.ScopeVariableIgnoreCase.TryGetValue(System.Object@)">
2668
            <summary>
2669
            Atempts to get the value. If a value is assigned it returns true otherwise
2670
            it returns false.
2671
            </summary>
2672
        </member>
2673
        <member name="M:Microsoft.Scripting.ScopeVariableIgnoreCase.SetValue(System.Object)">
2674
            <summary>
2675
            Sets the current value in the scope.
2676
            </summary>
2677
        </member>
2678
        <member name="M:Microsoft.Scripting.ScopeVariableIgnoreCase.DeleteValue">
2679
            <summary>
2680
            Removes the current value from the scope.
2681
            </summary>
2682
        </member>
2683
        <member name="T:Microsoft.Scripting.ScriptCode">
2684
            <summary>
2685
            ScriptCode is an instance of compiled code that is bound to a specific LanguageContext
2686
            but not a specific ScriptScope. The code can be re-executed multiple times in different
2687
            scopes. Hosting API counterpart for this class is <c>CompiledCode</c>.
2688
            </summary>
2689
        </member>
2690
        <member name="T:Microsoft.Scripting.StreamContentProvider">
2691
            <summary>
2692
            Provides a factory to create streams over one source of binary content.  
2693
            
2694
            StreamContentProvider's are used when opening a file of an unknown encoding.  The
2695
            StreamContentProvider will be wrapped in a TextContentProvider provided by the language
2696
            which can support a language specific way of interpreting the binary data into text. 
2697
            
2698
            For example some languages allow a marker at the beginning of the file which specifies
2699
            the encoding of the rest of the file.
2700
            </summary>
2701
        </member>
2702
        <member name="M:Microsoft.Scripting.StreamContentProvider.GetStream">
2703
            <summary>
2704
            Creates a new Stream which is backed by the content the StreamContentProvider was created for.
2705
            
2706
            For example if the StreamContentProvider was backing a file then GetStream re-opens the file and returns
2707
            the new stream.
2708
            
2709
            This method may be called multiple times.  For example once to compile the code and again to get
2710
            the source code to display error messages.
2711
            </summary>
2712
        </member>
2713
        <member name="T:Microsoft.Scripting.TokenTriggers">
2714
            <summary>
2715
            See also <c>Microsoft.VisualStudio.Package.TokenTriggers</c>.
2716
            </summary>
2717
        </member>
2718
        <member name="F:Microsoft.Scripting.ScriptCodeParseResult.Complete">
2719
            <summary>
2720
            Source code is a syntactically correct.
2721
            </summary>
2722
        </member>
2723
        <member name="F:Microsoft.Scripting.ScriptCodeParseResult.Empty">
2724
            <summary>
2725
            Source code represents an empty statement/expression.
2726
            </summary>
2727
        </member>
2728
        <member name="F:Microsoft.Scripting.ScriptCodeParseResult.Invalid">
2729
            <summary>
2730
            Source code is already invalid and no suffix can make it syntactically correct.
2731
            </summary>
2732
        </member>
2733
        <member name="F:Microsoft.Scripting.ScriptCodeParseResult.IncompleteToken">
2734
            <summary>
2735
            Last token is incomplete. Source code can still be completed correctly.
2736
            </summary>
2737
        </member>
2738
        <member name="F:Microsoft.Scripting.ScriptCodeParseResult.IncompleteStatement">
2739
            <summary>
2740
            Last statement is incomplete. Source code can still be completed correctly.
2741
            </summary>
2742
        </member>
2743
        <member name="T:Microsoft.Scripting.SourceCodeKind">
2744
            <summary>
2745
            Defines a kind of the source code. The parser sets its initial state accordingly.
2746
            </summary>
2747
        </member>
2748
        <member name="F:Microsoft.Scripting.SourceCodeKind.Expression">
2749
            <summary>
2750
            The code is an expression.
2751
            </summary>
2752
        </member>
2753
        <member name="F:Microsoft.Scripting.SourceCodeKind.Statements">
2754
            <summary>
2755
            The code is a sequence of statements.
2756
            </summary>
2757
        </member>
2758
        <member name="F:Microsoft.Scripting.SourceCodeKind.SingleStatement">
2759
            <summary>
2760
            The code is a single statement.
2761
            </summary>
2762
        </member>
2763
        <member name="F:Microsoft.Scripting.SourceCodeKind.File">
2764
            <summary>
2765
            The code is a content of a file.
2766
            </summary>
2767
        </member>
2768
        <member name="F:Microsoft.Scripting.SourceCodeKind.InteractiveCode">
2769
            <summary>
2770
            The code is an interactive command.
2771
            </summary>
2772
        </member>
2773
        <member name="F:Microsoft.Scripting.SourceCodeKind.AutoDetect">
2774
            <summary>
2775
            The language parser auto-detects the kind. A syntax error is reported if it is not able to do so.
2776
            </summary>
2777
        </member>
2778
        <member name="M:Microsoft.Scripting.Utils.ArrayUtils.ToArray``1(System.Collections.Generic.ICollection{``0})">
2779
            <summary>
2780
            Converts a generic ICollection of T into an array of T.  
2781
            
2782
            If the collection is already an  array of T the original collection is returned.
2783
            </summary>
2784
        </member>
2785
        <member name="T:Microsoft.Scripting.Utils.CheckedDictionaryEnumerator">
2786
            <summary>
2787
            Not all .NET enumerators throw exceptions if accessed in an invalid state. This type
2788
            can be used to throw exceptions from enumerators implemented in IronPython.
2789
            </summary>
2790
        </member>
2791
        <member name="M:Microsoft.Scripting.Utils.CollectionExtensions.ToReadOnly``1(System.Collections.Generic.IEnumerable{``0})">
2792
            <summary>
2793
            Wraps the provided enumerable into a ReadOnlyCollection{T}
2794
            
2795
            Copies all of the data into a new array, so the data can't be
2796
            changed after creation. The exception is if the enumerable is
2797
            already a ReadOnlyCollection{T}, in which case we just return it.
2798
            </summary>
2799
        </member>
2800
        <member name="T:Microsoft.Scripting.Utils.ConsoleInputStream">
2801
            <summary>
2802
            Console input stream (Console.OpenStandardInput) has a bug that manifests itself if reading small amounts of data.
2803
            This class wraps the standard input stream with a buffer that ensures that enough data are read from the underlying stream.
2804
            </summary>
2805
        </member>
2806
        <member name="M:Microsoft.Scripting.Utils.ContractUtils.RequiresArrayRange``1(System.Collections.Generic.IList{``0},System.Int32,System.Int32,System.String,System.String)">
2807
            <summary>
2808
            Requires the range [offset, offset + count] to be a subset of [0, array.Count].
2809
            </summary>
2810
            <exception cref="T:System.ArgumentOutOfRangeException">Offset or count are out of range.</exception>
2811
        </member>
2812
        <member name="M:Microsoft.Scripting.Utils.ContractUtils.RequiresArrayRange(System.Int32,System.Int32,System.Int32,System.String,System.String)">
2813
            <summary>
2814
            Requires the range [offset, offset + count] to be a subset of [0, array.Count].
2815
            </summary>
2816
            <exception cref="T:System.ArgumentOutOfRangeException">Offset or count are out of range.</exception>
2817
        </member>
2818
        <member name="M:Microsoft.Scripting.Utils.ContractUtils.RequiresNotNullItems``1(System.Collections.Generic.IList{``0},System.String)">
2819
            <summary>
2820
            Requires the array and all its items to be non-null.
2821
            </summary>
2822
        </member>
2823
        <member name="M:Microsoft.Scripting.Utils.ContractUtils.RequiresNotNullItems``1(System.Collections.Generic.IEnumerable{``0},System.String)">
2824
            <summary>
2825
            Requires the enumerable collection and all its items to be non-null.
2826
            </summary>
2827
        </member>
2828
        <member name="M:Microsoft.Scripting.Utils.ContractUtils.RequiresListRange(System.Collections.IList,System.Int32,System.Int32,System.String,System.String)">
2829
            <summary>
2830
            Requires the range [offset, offset + count] to be a subset of [0, array.Count].
2831
            </summary>
2832
            <exception cref="T:System.ArgumentNullException">Array is <c>null</c>.</exception>
2833
            <exception cref="T:System.ArgumentOutOfRangeException">Offset or count are out of range.</exception>
2834
        </member>
2835
        <member name="M:Microsoft.Scripting.Utils.DelegateUtils.EmitCallSiteDelegateType(System.Int32)">
2836
            <summary>
2837
            Emits an object delegate(CallSite, object * paramCount, object) that's suitable for use in a non-strongly typed call site.
2838
            Use this helper only for delegates with more parameters than Func has.
2839
            </summary>
2840
        </member>
2841
        <member name="T:Microsoft.Scripting.Utils.DictionaryUnionEnumerator">
2842
            <summary>
2843
            Presents a flat enumerable view of multiple dictionaries
2844
            </summary>
2845
        </member>
2846
        <member name="T:Microsoft.Scripting.SourceCodeReader">
2847
            <summary>
2848
            Source code reader.
2849
            </summary>    
2850
        </member>
2851
        <member name="P:Microsoft.Scripting.SourceCodeReader.Encoding">
2852
            <summary>
2853
            Gets the encoding that is used by the reader to convert binary data read from an underlying binary stream.
2854
            <c>Null</c> if the reader is reading from a textual source (not performing any byte to character transcoding).
2855
            </summary>
2856
        </member>
2857
        <member name="M:Microsoft.Scripting.SourceCodeReader.SeekLine(System.Int32)">
2858
            <summary>
2859
            Seeks the first character of a specified line in the text stream.
2860
            </summary>
2861
            <param name="line">Line number. The current position is assumed to be line #1.</param>
2862
            <returns>
2863
            Returns <c>true</c> if the line is found, <b>false</b> otherwise.
2864
            </returns>
2865
        </member>
2866
        <member name="T:Microsoft.Scripting.FileStreamContentProvider">
2867
            <summary>
2868
            Provides a StreamContentProvider for a stream of content backed by a file on disk.
2869
            </summary>
2870
        </member>
2871
        <member name="T:Microsoft.Scripting.SourceLocation">
2872
            <summary>
2873
            Represents a location in source code.
2874
            </summary>
2875
        </member>
2876
        <member name="M:Microsoft.Scripting.SourceLocation.#ctor(System.Int32,System.Int32,System.Int32)">
2877
            <summary>
2878
            Creates a new source location.
2879
            </summary>
2880
            <param name="index">The index in the source stream the location represents (0-based).</param>
2881
            <param name="line">The line in the source stream the location represents (1-based).</param>
2882
            <param name="column">The column in the source stream the location represents (1-based).</param>
2883
        </member>
2884
        <member name="P:Microsoft.Scripting.SourceLocation.Index">
2885
            <summary>
2886
            The index in the source stream the location represents (0-based).
2887
            </summary>
2888
        </member>
2889
        <member name="P:Microsoft.Scripting.SourceLocation.Line">
2890
            <summary>
2891
            The line in the source stream the location represents (1-based).
2892
            </summary>
2893
        </member>
2894
        <member name="P:Microsoft.Scripting.SourceLocation.Column">
2895
            <summary>
2896
            The column in the source stream the location represents (1-based).
2897
            </summary>
2898
        </member>
2899
        <member name="M:Microsoft.Scripting.SourceLocation.op_Equality(Microsoft.Scripting.SourceLocation,Microsoft.Scripting.SourceLocation)">
2900
            <summary>
2901
            Compares two specified location values to see if they are equal.
2902
            </summary>
2903
            <param name="left">One location to compare.</param>
2904
            <param name="right">The other location to compare.</param>
2905
            <returns>True if the locations are the same, False otherwise.</returns>
2906
        </member>
2907
        <member name="M:Microsoft.Scripting.SourceLocation.op_Inequality(Microsoft.Scripting.SourceLocation,Microsoft.Scripting.SourceLocation)">
2908
            <summary>
2909
            Compares two specified location values to see if they are not equal.
2910
            </summary>
2911
            <param name="left">One location to compare.</param>
2912
            <param name="right">The other location to compare.</param>
2913
            <returns>True if the locations are not the same, False otherwise.</returns>
2914
        </member>
2915
        <member name="M:Microsoft.Scripting.SourceLocation.op_LessThan(Microsoft.Scripting.SourceLocation,Microsoft.Scripting.SourceLocation)">
2916
            <summary>
2917
            Compares two specified location values to see if one is before the other.
2918
            </summary>
2919
            <param name="left">One location to compare.</param>
2920
            <param name="right">The other location to compare.</param>
2921
            <returns>True if the first location is before the other location, False otherwise.</returns>
2922
        </member>
2923
        <member name="M:Microsoft.Scripting.SourceLocation.op_GreaterThan(Microsoft.Scripting.SourceLocation,Microsoft.Scripting.SourceLocation)">
2924
            <summary>
2925
            Compares two specified location values to see if one is after the other.
2926
            </summary>
2927
            <param name="left">One location to compare.</param>
2928
            <param name="right">The other location to compare.</param>
2929
            <returns>True if the first location is after the other location, False otherwise.</returns>
2930
        </member>
2931
        <member name="M:Microsoft.Scripting.SourceLocation.op_LessThanOrEqual(Microsoft.Scripting.SourceLocation,Microsoft.Scripting.SourceLocation)">
2932
            <summary>
2933
            Compares two specified location values to see if one is before or the same as the other.
2934
            </summary>
2935
            <param name="left">One location to compare.</param>
2936
            <param name="right">The other location to compare.</param>
2937
            <returns>True if the first location is before or the same as the other location, False otherwise.</returns>
2938
        </member>
2939
        <member name="M:Microsoft.Scripting.SourceLocation.op_GreaterThanOrEqual(Microsoft.Scripting.SourceLocation,Microsoft.Scripting.SourceLocation)">
2940
            <summary>
2941
            Compares two specified location values to see if one is after or the same as the other.
2942
            </summary>
2943
            <param name="left">One location to compare.</param>
2944
            <param name="right">The other location to compare.</param>
2945
            <returns>True if the first location is after or the same as the other location, False otherwise.</returns>
2946
        </member>
2947
        <member name="M:Microsoft.Scripting.SourceLocation.Compare(Microsoft.Scripting.SourceLocation,Microsoft.Scripting.SourceLocation)">
2948
            <summary>
2949
            Compares two specified location values.
2950
            </summary>
2951
            <param name="left">One location to compare.</param>
2952
            <param name="right">The other location to compare.</param>
2953
            <returns>0 if the locations are equal, -1 if the left one is less than the right one, 1 otherwise.</returns>
2954
        </member>
2955
        <member name="F:Microsoft.Scripting.SourceLocation.None">
2956
            <summary>
2957
            A location that is valid but represents no location at all.
2958
            </summary>
2959
        </member>
2960
        <member name="F:Microsoft.Scripting.SourceLocation.Invalid">
2961
            <summary>
2962
            An invalid location.
2963
            </summary>
2964
        </member>
2965
        <member name="F:Microsoft.Scripting.SourceLocation.MinValue">
2966
            <summary>
2967
            A minimal valid location.
2968
            </summary>
2969
        </member>
2970
        <member name="P:Microsoft.Scripting.SourceLocation.IsValid">
2971
            <summary>
2972
            Whether the location is a valid location.
2973
            </summary>
2974
            <returns>True if the location is valid, False otherwise.</returns>
2975
        </member>
2976
        <member name="T:Microsoft.Scripting.SourceSpan">
2977
            <summary>
2978
            Stores the location of a span of text in a source file.
2979
            </summary>
2980
        </member>
2981
        <member name="M:Microsoft.Scripting.SourceSpan.#ctor(Microsoft.Scripting.SourceLocation,Microsoft.Scripting.SourceLocation)">
2982
            <summary>
2983
            Constructs a new span with a specific start and end location.
2984
            </summary>
2985
            <param name="start">The beginning of the span.</param>
2986
            <param name="end">The end of the span.</param>
2987
        </member>
2988
        <member name="P:Microsoft.Scripting.SourceSpan.Start">
2989
            <summary>
2990
            The start location of the span.
2991
            </summary>
2992
        </member>
2993
        <member name="P:Microsoft.Scripting.SourceSpan.End">
2994
            <summary>
2995
            The end location of the span. Location of the first character behind the span.
2996
            </summary>
2997
        </member>
2998
        <member name="P:Microsoft.Scripting.SourceSpan.Length">
2999
            <summary>
3000
            Length of the span (number of characters inside the span).
3001
            </summary>
3002
        </member>
3003
        <member name="F:Microsoft.Scripting.SourceSpan.None">
3004
            <summary>
3005
            A valid span that represents no location.
3006
            </summary>
3007
        </member>
3008
        <member name="F:Microsoft.Scripting.SourceSpan.Invalid">
3009
            <summary>
3010
            An invalid span.
3011
            </summary>
3012
        </member>
3013
        <member name="P:Microsoft.Scripting.SourceSpan.IsValid">
3014
            <summary>
3015
            Whether the locations in the span are valid.
3016
            </summary>
3017
        </member>
3018
        <member name="M:Microsoft.Scripting.SourceSpan.op_Equality(Microsoft.Scripting.SourceSpan,Microsoft.Scripting.SourceSpan)">
3019
            <summary>
3020
            Compares two specified Span values to see if they are equal.
3021
            </summary>
3022
            <param name="left">One span to compare.</param>
3023
            <param name="right">The other span to compare.</param>
3024
            <returns>True if the spans are the same, False otherwise.</returns>
3025
        </member>
3026
        <member name="M:Microsoft.Scripting.SourceSpan.op_Inequality(Microsoft.Scripting.SourceSpan,Microsoft.Scripting.SourceSpan)">
3027
            <summary>
3028
            Compares two specified Span values to see if they are not equal.
3029
            </summary>
3030
            <param name="left">One span to compare.</param>
3031
            <param name="right">The other span to compare.</param>
3032
            <returns>True if the spans are not the same, False otherwise.</returns>
3033
        </member>
3034
        <member name="P:Microsoft.Scripting.SourceUnit.Path">
3035
            <summary>
3036
            Identification of the source unit. Assigned by the host. 
3037
            The format and semantics is host dependent (could be a path on file system or URL).
3038
            Empty string for anonymous source units.
3039
            </summary>
3040
        </member>
3041
        <member name="P:Microsoft.Scripting.SourceUnit.LanguageContext">
3042
            <summary>
3043
            LanguageContext of the language of the unit.
3044
            </summary>
3045
        </member>
3046
        <member name="M:Microsoft.Scripting.SourceUnit.GetCodeLines(System.Int32,System.Int32)">
3047
            <summary>
3048
            Reads specified range of lines (or less) from the source unit. 
3049
            Line numbers starts with 1.
3050
            </summary>
3051
        </member>
3052
        <member name="M:Microsoft.Scripting.SourceUnit.Compile(Microsoft.Scripting.CompilerOptions,Microsoft.Scripting.ErrorSink)">
3053
            <summary>
3054
            Errors are reported to the specified sink. 
3055
            Returns <c>null</c> if the parser cannot compile the code due to error(s).
3056
            </summary>
3057
        </member>
3058
        <member name="M:Microsoft.Scripting.SourceUnit.Execute(Microsoft.Scripting.Runtime.Scope)">
3059
            <summary>
3060
            Executes against a specified scope.
3061
            </summary>
3062
        </member>
3063
        <member name="M:Microsoft.Scripting.SourceUnit.Execute(Microsoft.Scripting.Runtime.Scope,Microsoft.Scripting.ErrorSink)">
3064
            <summary>
3065
            Executes against a specified scope and reports errors to the given error sink.
3066
            </summary>
3067
        </member>
3068
        <member name="M:Microsoft.Scripting.SourceUnit.Execute">
3069
            <summary>
3070
            Executes in a new scope created by the language.
3071
            </summary>
3072
        </member>
3073
        <member name="M:Microsoft.Scripting.SourceUnit.Execute(Microsoft.Scripting.ErrorSink)">
3074
            <summary>
3075
            Executes in a new scope created by the language.
3076
            </summary>
3077
        </member>
3078
        <member name="M:Microsoft.Scripting.SourceUnit.Execute(Microsoft.Scripting.CompilerOptions,Microsoft.Scripting.ErrorSink)">
3079
            <summary>
3080
            Executes in a new scope created by the language.
3081
            </summary>
3082
        </member>
3083
        <member name="P:Microsoft.Scripting.SyntaxErrorException.RawSpan">
3084
            <summary>
3085
            Unmapped span.
3086
            </summary>
3087
        </member>
3088
        <member name="T:Microsoft.Scripting.TextContentProvider">
3089
            <summary>
3090
            Provides a factory to create TextReader's over one source of textual content.
3091
            
3092
            TextContentProvider's are used when reading from a source which is already decoded
3093
            or has a known specific decoding.  
3094
            
3095
            For example a text editor might provide a TextContentProvider whose backing is
3096
            an in-memory text buffer that the user can actively edit.
3097
            </summary>
3098
        </member>
3099
        <member name="M:Microsoft.Scripting.TextContentProvider.GetReader">
3100
            <summary>
3101
            Creates a new TextReader which is backed by the content the TextContentProvider was created for.
3102
            
3103
            This method may be called multiple times.  For example once to compile the code and again to get
3104
            the source code to display error messages.
3105
            </summary>
3106
        </member>
3107
        <member name="F:Microsoft.Scripting.TokenCategory.EndOfStream">
3108
            <summary>
3109
            A token marking an end of stream.
3110
            </summary>
3111
        </member>
3112
        <member name="F:Microsoft.Scripting.TokenCategory.WhiteSpace">
3113
            <summary>
3114
            A space, tab, or newline.
3115
            </summary>
3116
        </member>
3117
        <member name="F:Microsoft.Scripting.TokenCategory.Comment">
3118
            <summary>
3119
            A block comment.
3120
            </summary>
3121
        </member>
3122
        <member name="F:Microsoft.Scripting.TokenCategory.LineComment">
3123
            <summary>
3124
            A single line comment.
3125
            </summary>
3126
        </member>
3127
        <member name="F:Microsoft.Scripting.TokenCategory.DocComment">
3128
            <summary>
3129
            A documentation comment.
3130
            </summary>
3131
        </member>
3132
        <member name="F:Microsoft.Scripting.TokenCategory.NumericLiteral">
3133
            <summary>
3134
            A numeric literal.
3135
            </summary>
3136
        </member>
3137
        <member name="F:Microsoft.Scripting.TokenCategory.CharacterLiteral">
3138
            <summary>
3139
            A character literal.
3140
            </summary>
3141
        </member>
3142
        <member name="F:Microsoft.Scripting.TokenCategory.StringLiteral">
3143
            <summary>
3144
            A string literal.
3145
            </summary>
3146
        </member>
3147
        <member name="F:Microsoft.Scripting.TokenCategory.RegularExpressionLiteral">
3148
            <summary>
3149
            A regular expression literal.
3150
            </summary>
3151
        </member>
3152
        <member name="F:Microsoft.Scripting.TokenCategory.Keyword">
3153
            <summary>
3154
            A keyword.
3155
            </summary>
3156
        </member>
3157
        <member name="F:Microsoft.Scripting.TokenCategory.Directive">
3158
            <summary>
3159
            A directive (e.g. #line).
3160
            </summary>
3161
        </member>
3162
        <member name="F:Microsoft.Scripting.TokenCategory.Operator">
3163
            <summary>
3164
            A punctuation character that has a specific meaning in a language.
3165
            </summary>
3166
        </member>
3167
        <member name="F:Microsoft.Scripting.TokenCategory.Delimiter">
3168
            <summary>
3169
            A token that operates as a separator between two language elements.
3170
            </summary>
3171
        </member>
3172
        <member name="F:Microsoft.Scripting.TokenCategory.Identifier">
3173
            <summary>
3174
            An identifier (variable, $variable, @variable, @@variable, $variable$, function!, function?, [variable], i'variable', ...)
3175
            </summary>
3176
        </member>
3177
        <member name="F:Microsoft.Scripting.TokenCategory.Grouping">
3178
            <summary>
3179
            Braces, parenthesis, brackets.
3180
            </summary>
3181
        </member>
3182
        <member name="F:Microsoft.Scripting.TokenCategory.Error">
3183
            <summary>
3184
            Errors.
3185
            </summary>
3186
        </member>
3187
        <member name="T:Microsoft.Scripting.Strings">
3188
            <summary>
3189
               Strongly-typed and parameterized string factory.
3190
            </summary>
3191
        </member>
3192
        <member name="M:Microsoft.Scripting.Strings.InvalidOperation_ContainsGenericParameters(System.Object,System.Object)">
3193
            <summary>
3194
            A string like  "Cannot access member {1} declared on type {0} because the type contains generic parameters."
3195
            </summary>
3196
        </member>
3197
        <member name="M:Microsoft.Scripting.Strings.MissingType(System.Object)">
3198
            <summary>
3199
            A string like  "Type '{0}' is missing or cannot be loaded."
3200
            </summary>
3201
        </member>
3202
        <member name="M:Microsoft.Scripting.Strings.StaticAccessFromInstanceError(System.Object,System.Object)">
3203
            <summary>
3204
            A string like  "static property "{0}" of "{1}" can only be read through a type, not an instance"
3205
            </summary>
3206
        </member>
3207
        <member name="M:Microsoft.Scripting.Strings.StaticAssignmentFromInstanceError(System.Object,System.Object)">
3208
            <summary>
3209
            A string like  "static property "{0}" of "{1}" can only be assigned to through a type, not an instance"
3210
            </summary>
3211
        </member>
3212
        <member name="P:Microsoft.Scripting.Strings.MethodPreconditionViolated">
3213
            <summary>
3214
            A string like  "Method precondition violated"
3215
            </summary>
3216
        </member>
3217
        <member name="P:Microsoft.Scripting.Strings.InvalidArgumentValue">
3218
            <summary>
3219
            A string like  "Invalid argument value"
3220
            </summary>
3221
        </member>
3222
        <member name="P:Microsoft.Scripting.Strings.NonEmptyStringRequired">
3223
            <summary>
3224
            A string like  "Non-empty string required"
3225
            </summary>
3226
        </member>
3227
        <member name="P:Microsoft.Scripting.Strings.NonEmptyCollectionRequired">
3228
            <summary>
3229
            A string like  "Non-empty collection required"
3230
            </summary>
3231
        </member>
3232
        <member name="P:Microsoft.Scripting.Strings.MustBeExceptionInstance">
3233
            <summary>
3234
            A string like  "must by an Exception instance"
3235
            </summary>
3236
        </member>
3237
        <member name="P:Microsoft.Scripting.Strings.TypeOfTestMustBeBool">
3238
            <summary>
3239
            A string like  "Type of test must be bool"
3240
            </summary>
3241
        </member>
3242
        <member name="P:Microsoft.Scripting.Strings.TypeOfExpressionMustBeBool">
3243
            <summary>
3244
            A string like  "Type of the expression must be bool"
3245
            </summary>
3246
        </member>
3247
        <member name="P:Microsoft.Scripting.Strings.EmptyStringIsInvalidPath">
3248
            <summary>
3249
            A string like  "Empty string is not a valid path."
3250
            </summary>
3251
        </member>
3252
        <member name="P:Microsoft.Scripting.Strings.InvalidDelegate">
3253
            <summary>
3254
            A string like  "Invalid delegate type (Invoke method not found)."
3255
            </summary>
3256
        </member>
3257
        <member name="P:Microsoft.Scripting.Strings.ExpectedStaticProperty">
3258
            <summary>
3259
            A string like  "expected only static property"
3260
            </summary>
3261
        </member>
3262
        <member name="P:Microsoft.Scripting.Strings.PropertyDoesNotExist">
3263
            <summary>
3264
            A string like  "Property doesn't exist on the provided type"
3265
            </summary>
3266
        </member>
3267
        <member name="P:Microsoft.Scripting.Strings.FieldDoesNotExist">
3268
            <summary>
3269
            A string like  "Field doesn't exist on provided type"
3270
            </summary>
3271
        </member>
3272
        <member name="P:Microsoft.Scripting.Strings.TypeDoesNotHaveConstructorForTheSignature">
3273
            <summary>
3274
            A string like  "Type doesn't have constructor with a given signature"
3275
            </summary>
3276
        </member>
3277
        <member name="P:Microsoft.Scripting.Strings.TypeDoesNotHaveMethodForName">
3278
            <summary>
3279
            A string like  "Type doesn't have a method with a given name."
3280
            </summary>
3281
        </member>
3282
        <member name="P:Microsoft.Scripting.Strings.TypeDoesNotHaveMethodForNameSignature">
3283
            <summary>
3284
            A string like  "Type doesn't have a method with a given name and signature."
3285
            </summary>
3286
        </member>
3287
        <member name="P:Microsoft.Scripting.Strings.CountCannotBeNegative">
3288
            <summary>
3289
            A string like  "Count must be non-negative."
3290
            </summary>
3291
        </member>
3292
        <member name="P:Microsoft.Scripting.Strings.ArrayTypeMustBeArray">
3293
            <summary>
3294
            A string like  "arrayType must be an array type"
3295
            </summary>
3296
        </member>
3297
        <member name="P:Microsoft.Scripting.Strings.MustHaveCodeOrTarget">
3298
            <summary>
3299
            A string like  "Either code or target must be specified."
3300
            </summary>
3301
        </member>
3302
        <member name="M:Microsoft.Scripting.Strings.TypeParameterIsNotDelegate(System.Object)">
3303
            <summary>
3304
            A string like  "Type parameter is {0}. Expected a delegate."
3305
            </summary>
3306
        </member>
3307
        <member name="M:Microsoft.Scripting.Strings.InvalidCast(System.Object,System.Object)">
3308
            <summary>
3309
            A string like  "Cannot cast from type '{0}' to type '{1}"
3310
            </summary>
3311
        </member>
3312
        <member name="M:Microsoft.Scripting.Strings.UnknownMemberType(System.Object)">
3313
            <summary>
3314
            A string like  "unknown member type: '{0}'. "
3315
            </summary>
3316
        </member>
3317
        <member name="P:Microsoft.Scripting.Strings.FirstArgumentMustBeCallSite">
3318
            <summary>
3319
            A string like  "RuleBuilder can only be used with delegates whose first argument is CallSite."
3320
            </summary>
3321
        </member>
3322
        <member name="P:Microsoft.Scripting.Strings.NoInstanceForCall">
3323
            <summary>
3324
            A string like  "no instance for call."
3325
            </summary>
3326
        </member>
3327
        <member name="P:Microsoft.Scripting.Strings.MissingTest">
3328
            <summary>
3329
            A string like  "Missing Test."
3330
            </summary>
3331
        </member>
3332
        <member name="P:Microsoft.Scripting.Strings.MissingTarget">
3333
            <summary>
3334
            A string like  "Missing Target."
3335
            </summary>
3336
        </member>
3337
        <member name="M:Microsoft.Scripting.Strings.NonGenericWithGenericGroup(System.Object)">
3338
            <summary>
3339
            A string like  "The operation requires a non-generic type for {0}, but this represents generic types only"
3340
            </summary>
3341
        </member>
3342
        <member name="M:Microsoft.Scripting.Strings.InvalidOperation(System.Object)">
3343
            <summary>
3344
            A string like  "Invalid operation: '{0}'"
3345
            </summary>
3346
        </member>
3347
        <member name="P:Microsoft.Scripting.Strings.FinallyAlreadyDefined">
3348
            <summary>
3349
            A string like  "Finally already defined."
3350
            </summary>
3351
        </member>
3352
        <member name="P:Microsoft.Scripting.Strings.CannotHaveFaultAndFinally">
3353
            <summary>
3354
            A string like  "Can not have fault and finally."
3355
            </summary>
3356
        </member>
3357
        <member name="P:Microsoft.Scripting.Strings.FaultAlreadyDefined">
3358
            <summary>
3359
            A string like  "Fault already defined."
3360
            </summary>
3361
        </member>
3362
        <member name="M:Microsoft.Scripting.Strings.CantCreateDefaultTypeFor(System.Object)">
3363
            <summary>
3364
            A string like  "Cannot create default value for type {0}."
3365
            </summary>
3366
        </member>
3367
        <member name="M:Microsoft.Scripting.Strings.UnhandledConvert(System.Object)">
3368
            <summary>
3369
            A string like  "Unhandled convert: {0}"
3370
            </summary>
3371
        </member>
3372
        <member name="M:Microsoft.Scripting.Strings.NoCallableMethods(System.Object,System.Object)">
3373
            <summary>
3374
            A string like  "{0}.{1} has no publiclly visible method."
3375
            </summary>
3376
        </member>
3377
        <member name="P:Microsoft.Scripting.Strings.GlobalsMustBeUnique">
3378
            <summary>
3379
            A string like  "Global/top-level local variable names must be unique."
3380
            </summary>
3381
        </member>
3382
        <member name="P:Microsoft.Scripting.Strings.GenNonSerializableBinder">
3383
            <summary>
3384
            A string like  "Generating code from non-serializable CallSiteBinder."
3385
            </summary>
3386
        </member>
3387
        <member name="P:Microsoft.Scripting.Strings.InvalidPath">
3388
            <summary>
3389
            A string like  "Specified path is invalid."
3390
            </summary>
3391
        </member>
3392
        <member name="P:Microsoft.Scripting.Strings.DictionaryNotHashable">
3393
            <summary>
3394
            A string like  "Dictionaries are not hashable."
3395
            </summary>
3396
        </member>
3397
        <member name="P:Microsoft.Scripting.Strings.LanguageRegistered">
3398
            <summary>
3399
            A string like  "language already registered."
3400
            </summary>
3401
        </member>
3402
        <member name="P:Microsoft.Scripting.Strings.MethodOrOperatorNotImplemented">
3403
            <summary>
3404
            A string like  "The method or operation is not implemented."
3405
            </summary>
3406
        </member>
3407
        <member name="P:Microsoft.Scripting.Strings.NoException">
3408
            <summary>
3409
            A string like  "No exception."
3410
            </summary>
3411
        </member>
3412
        <member name="M:Microsoft.Scripting.Strings.ExtensionMustBePublic(System.Object)">
3413
            <summary>
3414
            A string like  "Extension type {0} must be public."
3415
            </summary>
3416
        </member>
3417
        <member name="P:Microsoft.Scripting.Strings.AlreadyInitialized">
3418
            <summary>
3419
            A string like  "Already initialized."
3420
            </summary>
3421
        </member>
3422
        <member name="P:Microsoft.Scripting.Strings.MustReturnScopeExtension">
3423
            <summary>
3424
            A string like  "CreateScopeExtension must return a scope extension."
3425
            </summary>
3426
        </member>
3427
        <member name="P:Microsoft.Scripting.Strings.InvalidParamNumForService">
3428
            <summary>
3429
            A string like  "Invalid number of parameters for the service."
3430
            </summary>
3431
        </member>
3432
        <member name="M:Microsoft.Scripting.Strings.InvalidArgumentType(System.Object,System.Object)">
3433
            <summary>
3434
            A string like  "Invalid type of argument {0}; expecting {1}."
3435
            </summary>
3436
        </member>
3437
        <member name="P:Microsoft.Scripting.Strings.CannotChangeNonCachingValue">
3438
            <summary>
3439
            A string like  "Cannot change non-caching value."
3440
            </summary>
3441
        </member>
3442
        <member name="M:Microsoft.Scripting.Strings.FieldReadonly(System.Object)">
3443
            <summary>
3444
            A string like  "Field {0} is read-only"
3445
            </summary>
3446
        </member>
3447
        <member name="M:Microsoft.Scripting.Strings.PropertyReadonly(System.Object)">
3448
            <summary>
3449
            A string like  "Property {0} is read-only"
3450
            </summary>
3451
        </member>
3452
        <member name="M:Microsoft.Scripting.Strings.UnexpectedEvent(System.Object,System.Object,System.Object,System.Object)">
3453
            <summary>
3454
            A string like  "Expected event from {0}.{1}, got event from {2}.{3}."
3455
            </summary>
3456
        </member>
3457
        <member name="M:Microsoft.Scripting.Strings.ExpectedBoundEvent(System.Object)">
3458
            <summary>
3459
            A string like  "expected bound event, got {0}."
3460
            </summary>
3461
        </member>
3462
        <member name="M:Microsoft.Scripting.Strings.UnexpectedType(System.Object,System.Object)">
3463
            <summary>
3464
            A string like  "Expected type {0}, got {1}."
3465
            </summary>
3466
        </member>
3467
        <member name="M:Microsoft.Scripting.Strings.MemberWriteOnly(System.Object)">
3468
            <summary>
3469
            A string like  "can only write to member {0}."
3470
            </summary>
3471
        </member>
3472
        <member name="P:Microsoft.Scripting.Strings.NoCodeToCompile">
3473
            <summary>
3474
            A string like  "No code to compile."
3475
            </summary>
3476
        </member>
3477
        <member name="M:Microsoft.Scripting.Strings.InvalidStreamType(System.Object)">
3478
            <summary>
3479
            A string like  "Invalid stream type: {0}."
3480
            </summary>
3481
        </member>
3482
        <member name="P:Microsoft.Scripting.Strings.QueueEmpty">
3483
            <summary>
3484
            A string like  "Queue empty."
3485
            </summary>
3486
        </member>
3487
        <member name="P:Microsoft.Scripting.Strings.EnumerationNotStarted">
3488
            <summary>
3489
            A string like  "Enumeration has not started. Call MoveNext."
3490
            </summary>
3491
        </member>
3492
        <member name="P:Microsoft.Scripting.Strings.EnumerationFinished">
3493
            <summary>
3494
            A string like  "Enumeration already finished."
3495
            </summary>
3496
        </member>
3497
        <member name="M:Microsoft.Scripting.Strings.CantAddCasing(System.Object)">
3498
            <summary>
3499
            A string like  "can't add another casing for identifier {0}"
3500
            </summary>
3501
        </member>
3502
        <member name="M:Microsoft.Scripting.Strings.CantAddIdentifier(System.Object)">
3503
            <summary>
3504
            A string like  "can't add new identifier {0}"
3505
            </summary>
3506
        </member>
3507
        <member name="M:Microsoft.Scripting.Strings.InvalidCtorImplementation(System.Object,System.Object)">
3508
            <summary>
3509
            A string like  "Type '{0}' doesn't provide a suitable public constructor or its implementation is faulty: {1}"
3510
            </summary>
3511
        </member>
3512
        <member name="P:Microsoft.Scripting.Strings.InvalidOutputDir">
3513
            <summary>
3514
            A string like  "Invalid output directory."
3515
            </summary>
3516
        </member>
3517
        <member name="P:Microsoft.Scripting.Strings.InvalidAsmNameOrExtension">
3518
            <summary>
3519
            A string like  "Invalid assembly name or file extension."
3520
            </summary>
3521
        </member>
3522
        <member name="M:Microsoft.Scripting.Strings.CanotEmitConstant(System.Object,System.Object)">
3523
            <summary>
3524
            A string like  "Cannot emit constant {0} ({1})"
3525
            </summary>
3526
        </member>
3527
        <member name="M:Microsoft.Scripting.Strings.NoImplicitCast(System.Object,System.Object)">
3528
            <summary>
3529
            A string like  "No implicit cast from {0} to {1}"
3530
            </summary>
3531
        </member>
3532
        <member name="M:Microsoft.Scripting.Strings.NoExplicitCast(System.Object,System.Object)">
3533
            <summary>
3534
            A string like  "No explicit cast from {0} to {1}"
3535
            </summary>
3536
        </member>
3537
        <member name="M:Microsoft.Scripting.Strings.NameNotDefined(System.Object)">
3538
            <summary>
3539
            A string like  "name '{0}' not defined"
3540
            </summary>
3541
        </member>
3542
        <member name="P:Microsoft.Scripting.Strings.NoDefaultValue">
3543
            <summary>
3544
            A string like  "No default value for a given type."
3545
            </summary>
3546
        </member>
3547
        <member name="P:Microsoft.Scripting.Strings.UnknownLanguageProviderType">
3548
            <summary>
3549
            A string like  "Specified language provider type is not registered."
3550
            </summary>
3551
        </member>
3552
        <member name="P:Microsoft.Scripting.Strings.CantReadProperty">
3553
            <summary>
3554
            A string like  "can't read from property"
3555
            </summary>
3556
        </member>
3557
        <member name="P:Microsoft.Scripting.Strings.CantWriteProperty">
3558
            <summary>
3559
            A string like  "can't write to property"
3560
            </summary>
3561
        </member>
3562
        <member name="M:Microsoft.Scripting.Strings.IllegalNew_GenericParams(System.Object)">
3563
            <summary>
3564
            A string like  "Cannot create instance of {0} because it contains generic parameters"
3565
            </summary>
3566
        </member>
3567
        <member name="M:Microsoft.Scripting.Strings.VerificationException(System.Object,System.Object,System.Object)">
3568
            <summary>
3569
            A string like  "Non-verifiable assembly generated: {0}:\nAssembly preserved as {1}\nError text:\n{2}\n"
3570
            </summary>
3571
        </member>
3572
        <member name="T:Microsoft.Scripting.Error">
3573
            <summary>
3574
               Strongly-typed and parameterized exception factory.
3575
            </summary>
3576
        </member>
3577
        <member name="M:Microsoft.Scripting.Error.MustHaveCodeOrTarget">
3578
            <summary>
3579
            ArgumentException with message like "Either code or target must be specified."
3580
            </summary>
3581
        </member>
3582
        <member name="M:Microsoft.Scripting.Error.TypeParameterIsNotDelegate(System.Object)">
3583
            <summary>
3584
            InvalidOperationException with message like "Type parameter is {0}. Expected a delegate."
3585
            </summary>
3586
        </member>
3587
        <member name="M:Microsoft.Scripting.Error.InvalidCast(System.Object,System.Object)">
3588
            <summary>
3589
            InvalidOperationException with message like "Cannot cast from type '{0}' to type '{1}"
3590
            </summary>
3591
        </member>
3592
        <member name="M:Microsoft.Scripting.Error.UnknownMemberType(System.Object)">
3593
            <summary>
3594
            InvalidOperationException with message like "unknown member type: '{0}'. "
3595
            </summary>
3596
        </member>
3597
        <member name="M:Microsoft.Scripting.Error.FirstArgumentMustBeCallSite">
3598
            <summary>
3599
            InvalidOperationException with message like "RuleBuilder can only be used with delegates whose first argument is CallSite."
3600
            </summary>
3601
        </member>
3602
        <member name="M:Microsoft.Scripting.Error.NoInstanceForCall">
3603
            <summary>
3604
            InvalidOperationException with message like "no instance for call."
3605
            </summary>
3606
        </member>
3607
        <member name="M:Microsoft.Scripting.Error.MissingTest">
3608
            <summary>
3609
            InvalidOperationException with message like "Missing Test."
3610
            </summary>
3611
        </member>
3612
        <member name="M:Microsoft.Scripting.Error.MissingTarget">
3613
            <summary>
3614
            InvalidOperationException with message like "Missing Target."
3615
            </summary>
3616
        </member>
3617
        <member name="M:Microsoft.Scripting.Error.NonGenericWithGenericGroup(System.Object)">
3618
            <summary>
3619
            TypeLoadException with message like "The operation requires a non-generic type for {0}, but this represents generic types only"
3620
            </summary>
3621
        </member>
3622
        <member name="M:Microsoft.Scripting.Error.InvalidOperation(System.Object)">
3623
            <summary>
3624
            ArgumentException with message like "Invalid operation: '{0}'"
3625
            </summary>
3626
        </member>
3627
        <member name="M:Microsoft.Scripting.Error.FinallyAlreadyDefined">
3628
            <summary>
3629
            InvalidOperationException with message like "Finally already defined."
3630
            </summary>
3631
        </member>
3632
        <member name="M:Microsoft.Scripting.Error.CannotHaveFaultAndFinally">
3633
            <summary>
3634
            InvalidOperationException with message like "Can not have fault and finally."
3635
            </summary>
3636
        </member>
3637
        <member name="M:Microsoft.Scripting.Error.FaultAlreadyDefined">
3638
            <summary>
3639
            InvalidOperationException with message like "Fault already defined."
3640
            </summary>
3641
        </member>
3642
        <member name="M:Microsoft.Scripting.Error.CantCreateDefaultTypeFor(System.Object)">
3643
            <summary>
3644
            ArgumentException with message like "Cannot create default value for type {0}."
3645
            </summary>
3646
        </member>
3647
        <member name="M:Microsoft.Scripting.Error.UnhandledConvert(System.Object)">
3648
            <summary>
3649
            ArgumentException with message like "Unhandled convert: {0}"
3650
            </summary>
3651
        </member>
3652
        <member name="M:Microsoft.Scripting.Error.NoCallableMethods(System.Object,System.Object)">
3653
            <summary>
3654
            InvalidOperationException with message like "{0}.{1} has no publiclly visible method."
3655
            </summary>
3656
        </member>
3657
        <member name="M:Microsoft.Scripting.Error.GlobalsMustBeUnique">
3658
            <summary>
3659
            ArgumentException with message like "Global/top-level local variable names must be unique."
3660
            </summary>
3661
        </member>
3662
        <member name="M:Microsoft.Scripting.Error.GenNonSerializableBinder">
3663
            <summary>
3664
            ArgumentException with message like "Generating code from non-serializable CallSiteBinder."
3665
            </summary>
3666
        </member>
3667
        <member name="M:Microsoft.Scripting.Error.InvalidPath">
3668
            <summary>
3669
            ArgumentException with message like "Specified path is invalid."
3670
            </summary>
3671
        </member>
3672
        <member name="M:Microsoft.Scripting.Error.DictionaryNotHashable">
3673
            <summary>
3674
            ArgumentTypeException with message like "Dictionaries are not hashable."
3675
            </summary>
3676
        </member>
3677
        <member name="M:Microsoft.Scripting.Error.LanguageRegistered">
3678
            <summary>
3679
            InvalidOperationException with message like "language already registered."
3680
            </summary>
3681
        </member>
3682
        <member name="M:Microsoft.Scripting.Error.MethodOrOperatorNotImplemented">
3683
            <summary>
3684
            NotImplementedException with message like "The method or operation is not implemented."
3685
            </summary>
3686
        </member>
3687
        <member name="M:Microsoft.Scripting.Error.NoException">
3688
            <summary>
3689
            InvalidOperationException with message like "No exception."
3690
            </summary>
3691
        </member>
3692
        <member name="M:Microsoft.Scripting.Error.ExtensionMustBePublic(System.Object)">
3693
            <summary>
3694
            ArgumentException with message like "Extension type {0} must be public."
3695
            </summary>
3696
        </member>
3697
        <member name="M:Microsoft.Scripting.Error.AlreadyInitialized">
3698
            <summary>
3699
            InvalidOperationException with message like "Already initialized."
3700
            </summary>
3701
        </member>
3702
        <member name="M:Microsoft.Scripting.Error.MustReturnScopeExtension">
3703
            <summary>
3704
            InvalidImplementationException with message like "CreateScopeExtension must return a scope extension."
3705
            </summary>
3706
        </member>
3707
        <member name="M:Microsoft.Scripting.Error.InvalidParamNumForService">
3708
            <summary>
3709
            ArgumentException with message like "Invalid number of parameters for the service."
3710
            </summary>
3711
        </member>
3712
        <member name="M:Microsoft.Scripting.Error.InvalidArgumentType(System.Object,System.Object)">
3713
            <summary>
3714
            ArgumentException with message like "Invalid type of argument {0}; expecting {1}."
3715
            </summary>
3716
        </member>
3717
        <member name="M:Microsoft.Scripting.Error.CannotChangeNonCachingValue">
3718
            <summary>
3719
            ArgumentException with message like "Cannot change non-caching value."
3720
            </summary>
3721
        </member>
3722
        <member name="M:Microsoft.Scripting.Error.FieldReadonly(System.Object)">
3723
            <summary>
3724
            MissingMemberException with message like "Field {0} is read-only"
3725
            </summary>
3726
        </member>
3727
        <member name="M:Microsoft.Scripting.Error.PropertyReadonly(System.Object)">
3728
            <summary>
3729
            MissingMemberException with message like "Property {0} is read-only"
3730
            </summary>
3731
        </member>
3732
        <member name="M:Microsoft.Scripting.Error.UnexpectedEvent(System.Object,System.Object,System.Object,System.Object)">
3733
            <summary>
3734
            ArgumentException with message like "Expected event from {0}.{1}, got event from {2}.{3}."
3735
            </summary>
3736
        </member>
3737
        <member name="M:Microsoft.Scripting.Error.ExpectedBoundEvent(System.Object)">
3738
            <summary>
3739
            ArgumentTypeException with message like "expected bound event, got {0}."
3740
            </summary>
3741
        </member>
3742
        <member name="M:Microsoft.Scripting.Error.UnexpectedType(System.Object,System.Object)">
3743
            <summary>
3744
            ArgumentTypeException with message like "Expected type {0}, got {1}."
3745
            </summary>
3746
        </member>
3747
        <member name="M:Microsoft.Scripting.Error.MemberWriteOnly(System.Object)">
3748
            <summary>
3749
            MemberAccessException with message like "can only write to member {0}."
3750
            </summary>
3751
        </member>
3752
        <member name="M:Microsoft.Scripting.Error.NoCodeToCompile">
3753
            <summary>
3754
            InvalidOperationException with message like "No code to compile."
3755
            </summary>
3756
        </member>
3757
        <member name="M:Microsoft.Scripting.Error.InvalidStreamType(System.Object)">
3758
            <summary>
3759
            ArgumentException with message like "Invalid stream type: {0}."
3760
            </summary>
3761
        </member>
3762
        <member name="M:Microsoft.Scripting.Error.QueueEmpty">
3763
            <summary>
3764
            InvalidOperationException with message like "Queue empty."
3765
            </summary>
3766
        </member>
3767
        <member name="M:Microsoft.Scripting.Error.EnumerationNotStarted">
3768
            <summary>
3769
            InvalidOperationException with message like "Enumeration has not started. Call MoveNext."
3770
            </summary>
3771
        </member>
3772
        <member name="M:Microsoft.Scripting.Error.EnumerationFinished">
3773
            <summary>
3774
            InvalidOperationException with message like "Enumeration already finished."
3775
            </summary>
3776
        </member>
3777
        <member name="M:Microsoft.Scripting.Error.CantAddCasing(System.Object)">
3778
            <summary>
3779
            InvalidOperationException with message like "can't add another casing for identifier {0}"
3780
            </summary>
3781
        </member>
3782
        <member name="M:Microsoft.Scripting.Error.CantAddIdentifier(System.Object)">
3783
            <summary>
3784
            InvalidOperationException with message like "can't add new identifier {0}"
3785
            </summary>
3786
        </member>
3787
        <member name="M:Microsoft.Scripting.Error.InvalidOutputDir">
3788
            <summary>
3789
            ArgumentException with message like "Invalid output directory."
3790
            </summary>
3791
        </member>
3792
        <member name="M:Microsoft.Scripting.Error.InvalidAsmNameOrExtension">
3793
            <summary>
3794
            ArgumentException with message like "Invalid assembly name or file extension."
3795
            </summary>
3796
        </member>
3797
        <member name="M:Microsoft.Scripting.Error.CanotEmitConstant(System.Object,System.Object)">
3798
            <summary>
3799
            ArgumentException with message like "Cannot emit constant {0} ({1})"
3800
            </summary>
3801
        </member>
3802
        <member name="M:Microsoft.Scripting.Error.NoImplicitCast(System.Object,System.Object)">
3803
            <summary>
3804
            ArgumentException with message like "No implicit cast from {0} to {1}"
3805
            </summary>
3806
        </member>
3807
        <member name="M:Microsoft.Scripting.Error.NoExplicitCast(System.Object,System.Object)">
3808
            <summary>
3809
            ArgumentException with message like "No explicit cast from {0} to {1}"
3810
            </summary>
3811
        </member>
3812
        <member name="M:Microsoft.Scripting.Error.NameNotDefined(System.Object)">
3813
            <summary>
3814
            MissingMemberException with message like "name '{0}' not defined"
3815
            </summary>
3816
        </member>
3817
        <member name="M:Microsoft.Scripting.Error.NoDefaultValue">
3818
            <summary>
3819
            ArgumentException with message like "No default value for a given type."
3820
            </summary>
3821
        </member>
3822
        <member name="M:Microsoft.Scripting.Error.UnknownLanguageProviderType">
3823
            <summary>
3824
            ArgumentException with message like "Specified language provider type is not registered."
3825
            </summary>
3826
        </member>
3827
        <member name="M:Microsoft.Scripting.Error.CantReadProperty">
3828
            <summary>
3829
            InvalidOperationException with message like "can't read from property"
3830
            </summary>
3831
        </member>
3832
        <member name="M:Microsoft.Scripting.Error.CantWriteProperty">
3833
            <summary>
3834
            InvalidOperationException with message like "can't write to property"
3835
            </summary>
3836
        </member>
3837
        <member name="M:Microsoft.Scripting.Error.IllegalNew_GenericParams(System.Object)">
3838
            <summary>
3839
            ArgumentException with message like "Cannot create instance of {0} because it contains generic parameters"
3840
            </summary>
3841
        </member>
3842
        <member name="M:Microsoft.Scripting.Error.VerificationException(System.Object,System.Object,System.Object)">
3843
            <summary>
3844
            System.Security.VerificationException with message like "Non-verifiable assembly generated: {0}:\nAssembly preserved as {1}\nError text:\n{2}\n"
3845
            </summary>
3846
        </member>
3847
    </members>
3848
</doc>