-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathCallSiteOps.xml
504 lines (504 loc) · 32.2 KB
/
CallSiteOps.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
<Type Name="CallSiteOps" FullName="System.Runtime.CompilerServices.CallSiteOps">
<TypeSignature Language="C#" Value="public static class CallSiteOps" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract sealed beforefieldinit CallSiteOps extends System.Object" />
<TypeSignature Language="DocId" Value="T:System.Runtime.CompilerServices.CallSiteOps" />
<TypeSignature Language="VB.NET" Value="Public Class CallSiteOps" />
<TypeSignature Language="F#" Value="type CallSiteOps = class" />
<TypeSignature Language="C++ CLI" Value="public ref class CallSiteOps abstract sealed" />
<AssemblyInfo>
<AssemblyName>System.Core</AssemblyName>
<AssemblyVersion>2.0.5.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Diagnostics.DebuggerStepThrough]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.DebuggerStepThrough>]</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>Creates and caches binding rules.</summary>
<remarks>To be added.</remarks>
<forInternalUseOnly />
</Docs>
<Members>
<Member MemberName="AddRule<T>">
<MemberSignature Language="C#" Value="public static void AddRule<T> (System.Runtime.CompilerServices.CallSite<T> site, T rule) where T : class;" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void AddRule<class T>(class System.Runtime.CompilerServices.CallSite`1<!!T> site, !!T rule) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Runtime.CompilerServices.CallSiteOps.AddRule``1(System.Runtime.CompilerServices.CallSite{``0},``0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Sub AddRule(Of T As Class) (site As CallSite(Of T), rule As T)" />
<MemberSignature Language="F#" Value="static member AddRule : System.Runtime.CompilerServices.CallSite<'T (requires 'T : null)> * 'T -> unit (requires 'T : null)" Usage="System.Runtime.CompilerServices.CallSiteOps.AddRule (site, rule)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename T>
 where T : class static void AddRule(System::Runtime::CompilerServices::CallSite<T> ^ site, T rule);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Core</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("do not use this method", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("do not use this method", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T">
<Constraints>
<ParameterAttribute>ReferenceTypeConstraint</ParameterAttribute>
</Constraints>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="site" Type="System.Runtime.CompilerServices.CallSite<T>" />
<Parameter Name="rule" Type="T" />
</Parameters>
<Docs>
<typeparam name="T">The type of the delegate of the <see cref="T:System.Runtime.CompilerServices.CallSite" />.</typeparam>
<param name="site">An instance of the dynamic call site.</param>
<param name="rule">An instance of the call site rule.</param>
<summary>Adds a rule to the cache maintained on the dynamic call site.</summary>
<remarks>To be added.</remarks>
<forInternalUseOnly />
</Docs>
</Member>
<Member MemberName="Bind<T>">
<MemberSignature Language="C#" Value="public static T Bind<T> (System.Runtime.CompilerServices.CallSiteBinder binder, System.Runtime.CompilerServices.CallSite<T> site, object[] args) where T : class;" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig !!T Bind<class T>(class System.Runtime.CompilerServices.CallSiteBinder binder, class System.Runtime.CompilerServices.CallSite`1<!!T> site, object[] args) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Runtime.CompilerServices.CallSiteOps.Bind``1(System.Runtime.CompilerServices.CallSiteBinder,System.Runtime.CompilerServices.CallSite{``0},System.Object[])" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Bind(Of T As Class) (binder As CallSiteBinder, site As CallSite(Of T), args As Object()) As T" />
<MemberSignature Language="F#" Value="static member Bind : System.Runtime.CompilerServices.CallSiteBinder * System.Runtime.CompilerServices.CallSite<'T (requires 'T : null)> * obj[] -> 'T (requires 'T : null)" Usage="System.Runtime.CompilerServices.CallSiteOps.Bind (binder, site, args)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename T>
 where T : class static T Bind(System::Runtime::CompilerServices::CallSiteBinder ^ binder, System::Runtime::CompilerServices::CallSite<T> ^ site, cli::array <System::Object ^> ^ args);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Core</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("do not use this method", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("do not use this method", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>T</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T">
<Constraints>
<ParameterAttribute>ReferenceTypeConstraint</ParameterAttribute>
</Constraints>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="binder" Type="System.Runtime.CompilerServices.CallSiteBinder" />
<Parameter Name="site" Type="System.Runtime.CompilerServices.CallSite<T>" />
<Parameter Name="args" Type="System.Object[]" />
</Parameters>
<Docs>
<typeparam name="T">The type of the delegate of the <see cref="T:System.Runtime.CompilerServices.CallSite" />.</typeparam>
<param name="binder">The call site binder.</param>
<param name="site">An instance of the dynamic call site.</param>
<param name="args">Arguments to the call site.</param>
<summary>Updates the call site target with a new rule based on the arguments.</summary>
<returns>The new call site target.</returns>
<remarks>To be added.</remarks>
<forInternalUseOnly />
</Docs>
</Member>
<Member MemberName="ClearMatch">
<MemberSignature Language="C#" Value="public static void ClearMatch (System.Runtime.CompilerServices.CallSite site);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void ClearMatch(class System.Runtime.CompilerServices.CallSite site) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Runtime.CompilerServices.CallSiteOps.ClearMatch(System.Runtime.CompilerServices.CallSite)" />
<MemberSignature Language="VB.NET" Value="Public Shared Sub ClearMatch (site As CallSite)" />
<MemberSignature Language="F#" Value="static member ClearMatch : System.Runtime.CompilerServices.CallSite -> unit" Usage="System.Runtime.CompilerServices.CallSiteOps.ClearMatch site" />
<MemberSignature Language="C++ CLI" Value="public:
 static void ClearMatch(System::Runtime::CompilerServices::CallSite ^ site);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Core</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("do not use this method", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("do not use this method", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="site" Type="System.Runtime.CompilerServices.CallSite" />
</Parameters>
<Docs>
<param name="site">An instance of the dynamic call site.</param>
<summary>Clears the match flag on the matchmaker call site.</summary>
<remarks>To be added.</remarks>
<forInternalUseOnly />
</Docs>
</Member>
<Member MemberName="CreateMatchmaker<T>">
<MemberSignature Language="C#" Value="public static System.Runtime.CompilerServices.CallSite<T> CreateMatchmaker<T> (System.Runtime.CompilerServices.CallSite<T> site) where T : class;" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Runtime.CompilerServices.CallSite`1<!!T> CreateMatchmaker<class T>(class System.Runtime.CompilerServices.CallSite`1<!!T> site) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Runtime.CompilerServices.CallSiteOps.CreateMatchmaker``1(System.Runtime.CompilerServices.CallSite{``0})" />
<MemberSignature Language="VB.NET" Value="Public Shared Function CreateMatchmaker(Of T As Class) (site As CallSite(Of T)) As CallSite(Of T)" />
<MemberSignature Language="F#" Value="static member CreateMatchmaker : System.Runtime.CompilerServices.CallSite<'T (requires 'T : null)> -> System.Runtime.CompilerServices.CallSite<'T (requires 'T : null)> (requires 'T : null)" Usage="System.Runtime.CompilerServices.CallSiteOps.CreateMatchmaker site" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename T>
 where T : class static System::Runtime::CompilerServices::CallSite<T> ^ CreateMatchmaker(System::Runtime::CompilerServices::CallSite<T> ^ site);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Core</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("do not use this method", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("do not use this method", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Runtime.CompilerServices.CallSite<T></ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T">
<Constraints>
<ParameterAttribute>ReferenceTypeConstraint</ParameterAttribute>
</Constraints>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="site" Type="System.Runtime.CompilerServices.CallSite<T>" />
</Parameters>
<Docs>
<typeparam name="T">The type of the delegate of the <see cref="T:System.Runtime.CompilerServices.CallSite" />.</typeparam>
<param name="site">An instance of the dynamic call site.</param>
<summary>Creates an instance of a dynamic call site used for cache lookup.</summary>
<returns>The new call site.</returns>
<remarks>To be added.</remarks>
<forInternalUseOnly />
</Docs>
</Member>
<Member MemberName="GetCachedRules<T>">
<MemberSignature Language="C#" Value="public static T[] GetCachedRules<T> (System.Runtime.CompilerServices.RuleCache<T> cache) where T : class;" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig !!T[] GetCachedRules<class T>(class System.Runtime.CompilerServices.RuleCache`1<!!T> cache) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Runtime.CompilerServices.CallSiteOps.GetCachedRules``1(System.Runtime.CompilerServices.RuleCache{``0})" />
<MemberSignature Language="VB.NET" Value="Public Shared Function GetCachedRules(Of T As Class) (cache As RuleCache(Of T)) As T()" />
<MemberSignature Language="F#" Value="static member GetCachedRules : System.Runtime.CompilerServices.RuleCache<'T (requires 'T : null)> -> 'T[] (requires 'T : null)" Usage="System.Runtime.CompilerServices.CallSiteOps.GetCachedRules cache" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename T>
 where T : class static cli::array <T> ^ GetCachedRules(System::Runtime::CompilerServices::RuleCache<T> ^ cache);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Core</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("do not use this method", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("do not use this method", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>T[]</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T">
<Constraints>
<ParameterAttribute>ReferenceTypeConstraint</ParameterAttribute>
</Constraints>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="cache" Type="System.Runtime.CompilerServices.RuleCache<T>" />
</Parameters>
<Docs>
<typeparam name="T">The type of the delegate of the <see cref="T:System.Runtime.CompilerServices.CallSite" />.</typeparam>
<param name="cache">The cache.</param>
<summary>Searches the dynamic rule cache for rules applicable to the dynamic operation.</summary>
<returns>The collection of applicable rules.</returns>
<remarks>To be added.</remarks>
<forInternalUseOnly />
</Docs>
</Member>
<Member MemberName="GetMatch">
<MemberSignature Language="C#" Value="public static bool GetMatch (System.Runtime.CompilerServices.CallSite site);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig bool GetMatch(class System.Runtime.CompilerServices.CallSite site) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Runtime.CompilerServices.CallSiteOps.GetMatch(System.Runtime.CompilerServices.CallSite)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function GetMatch (site As CallSite) As Boolean" />
<MemberSignature Language="F#" Value="static member GetMatch : System.Runtime.CompilerServices.CallSite -> bool" Usage="System.Runtime.CompilerServices.CallSiteOps.GetMatch site" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool GetMatch(System::Runtime::CompilerServices::CallSite ^ site);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Core</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("do not use this method", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("do not use this method", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="site" Type="System.Runtime.CompilerServices.CallSite" />
</Parameters>
<Docs>
<param name="site">An instance of the dynamic call site.</param>
<summary>Checks whether the executed rule matched.</summary>
<returns>
<see langword="true" /> if the rule matched; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<forInternalUseOnly />
</Docs>
</Member>
<Member MemberName="GetRuleCache<T>">
<MemberSignature Language="C#" Value="public static System.Runtime.CompilerServices.RuleCache<T> GetRuleCache<T> (System.Runtime.CompilerServices.CallSite<T> site) where T : class;" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Runtime.CompilerServices.RuleCache`1<!!T> GetRuleCache<class T>(class System.Runtime.CompilerServices.CallSite`1<!!T> site) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Runtime.CompilerServices.CallSiteOps.GetRuleCache``1(System.Runtime.CompilerServices.CallSite{``0})" />
<MemberSignature Language="VB.NET" Value="Public Shared Function GetRuleCache(Of T As Class) (site As CallSite(Of T)) As RuleCache(Of T)" />
<MemberSignature Language="F#" Value="static member GetRuleCache : System.Runtime.CompilerServices.CallSite<'T (requires 'T : null)> -> System.Runtime.CompilerServices.RuleCache<'T (requires 'T : null)> (requires 'T : null)" Usage="System.Runtime.CompilerServices.CallSiteOps.GetRuleCache site" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename T>
 where T : class static System::Runtime::CompilerServices::RuleCache<T> ^ GetRuleCache(System::Runtime::CompilerServices::CallSite<T> ^ site);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Core</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("do not use this method", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("do not use this method", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Runtime.CompilerServices.RuleCache<T></ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T">
<Constraints>
<ParameterAttribute>ReferenceTypeConstraint</ParameterAttribute>
</Constraints>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="site" Type="System.Runtime.CompilerServices.CallSite<T>" />
</Parameters>
<Docs>
<typeparam name="T">The type of the delegate of the <see cref="T:System.Runtime.CompilerServices.CallSite" />.</typeparam>
<param name="site">An instance of the dynamic call site.</param>
<summary>Retrieves binding rule cache.</summary>
<returns>The cache.</returns>
<remarks>To be added.</remarks>
<forInternalUseOnly />
</Docs>
</Member>
<Member MemberName="GetRules<T>">
<MemberSignature Language="C#" Value="public static T[] GetRules<T> (System.Runtime.CompilerServices.CallSite<T> site) where T : class;" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig !!T[] GetRules<class T>(class System.Runtime.CompilerServices.CallSite`1<!!T> site) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Runtime.CompilerServices.CallSiteOps.GetRules``1(System.Runtime.CompilerServices.CallSite{``0})" />
<MemberSignature Language="VB.NET" Value="Public Shared Function GetRules(Of T As Class) (site As CallSite(Of T)) As T()" />
<MemberSignature Language="F#" Value="static member GetRules : System.Runtime.CompilerServices.CallSite<'T (requires 'T : null)> -> 'T[] (requires 'T : null)" Usage="System.Runtime.CompilerServices.CallSiteOps.GetRules site" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename T>
 where T : class static cli::array <T> ^ GetRules(System::Runtime::CompilerServices::CallSite<T> ^ site);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Core</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("do not use this method", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("do not use this method", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>T[]</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T">
<Constraints>
<ParameterAttribute>ReferenceTypeConstraint</ParameterAttribute>
</Constraints>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="site" Type="System.Runtime.CompilerServices.CallSite<T>" />
</Parameters>
<Docs>
<typeparam name="T">The type of the delegate of the <see cref="T:System.Runtime.CompilerServices.CallSite" />.</typeparam>
<param name="site">An instance of the dynamic call site.</param>
<summary>Gets the dynamic binding rules from the call site.</summary>
<returns>An array of dynamic binding rules.</returns>
<remarks>To be added.</remarks>
<forInternalUseOnly />
</Docs>
</Member>
<Member MemberName="MoveRule<T>">
<MemberSignature Language="C#" Value="public static void MoveRule<T> (System.Runtime.CompilerServices.RuleCache<T> cache, T rule, int i) where T : class;" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void MoveRule<class T>(class System.Runtime.CompilerServices.RuleCache`1<!!T> cache, !!T rule, int32 i) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Runtime.CompilerServices.CallSiteOps.MoveRule``1(System.Runtime.CompilerServices.RuleCache{``0},``0,System.Int32)" />
<MemberSignature Language="VB.NET" Value="Public Shared Sub MoveRule(Of T As Class) (cache As RuleCache(Of T), rule As T, i As Integer)" />
<MemberSignature Language="F#" Value="static member MoveRule : System.Runtime.CompilerServices.RuleCache<'T (requires 'T : null)> * 'T * int -> unit (requires 'T : null)" Usage="System.Runtime.CompilerServices.CallSiteOps.MoveRule (cache, rule, i)" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename T>
 where T : class static void MoveRule(System::Runtime::CompilerServices::RuleCache<T> ^ cache, T rule, int i);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Core</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("do not use this method", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("do not use this method", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T">
<Constraints>
<ParameterAttribute>ReferenceTypeConstraint</ParameterAttribute>
</Constraints>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="cache" Type="System.Runtime.CompilerServices.RuleCache<T>" />
<Parameter Name="rule" Type="T" />
<Parameter Name="i" Type="System.Int32" />
</Parameters>
<Docs>
<typeparam name="T">The type of the delegate of the <see cref="T:System.Runtime.CompilerServices.CallSite" />.</typeparam>
<param name="cache">The call site rule cache.</param>
<param name="rule">An instance of the call site rule.</param>
<param name="i">An index of the call site rule.</param>
<summary>Moves the binding rule within the cache.</summary>
<remarks>To be added.</remarks>
<forInternalUseOnly />
</Docs>
</Member>
<Member MemberName="SetNotMatched">
<MemberSignature Language="C#" Value="public static bool SetNotMatched (System.Runtime.CompilerServices.CallSite site);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig bool SetNotMatched(class System.Runtime.CompilerServices.CallSite site) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Runtime.CompilerServices.CallSiteOps.SetNotMatched(System.Runtime.CompilerServices.CallSite)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function SetNotMatched (site As CallSite) As Boolean" />
<MemberSignature Language="F#" Value="static member SetNotMatched : System.Runtime.CompilerServices.CallSite -> bool" Usage="System.Runtime.CompilerServices.CallSiteOps.SetNotMatched site" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool SetNotMatched(System::Runtime::CompilerServices::CallSite ^ site);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Core</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("do not use this method", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("do not use this method", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="site" Type="System.Runtime.CompilerServices.CallSite" />
</Parameters>
<Docs>
<param name="site">An instance of the dynamic call site.</param>
<summary>Checks if a dynamic site requires an update.</summary>
<returns>
<see langword="true" /> if the rule does not need updating; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<forInternalUseOnly />
</Docs>
</Member>
<Member MemberName="UpdateRules<T>">
<MemberSignature Language="C#" Value="public static void UpdateRules<T> (System.Runtime.CompilerServices.CallSite<T> this, int matched) where T : class;" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void UpdateRules<class T>(class System.Runtime.CompilerServices.CallSite`1<!!T> this, int32 matched) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Runtime.CompilerServices.CallSiteOps.UpdateRules``1(System.Runtime.CompilerServices.CallSite{``0},System.Int32)" />
<MemberSignature Language="VB.NET" Value="Public Shared Sub UpdateRules(Of T As Class) (this As CallSite(Of T), matched As Integer)" />
<MemberSignature Language="F#" Value="static member UpdateRules : int -> unit (requires 'T : null)" Usage="System.Runtime.CompilerServices.CallSiteOps.UpdateRules matched" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename T>
 where T : class static void UpdateRules(System::Runtime::CompilerServices::CallSite<T> ^ this, int matched);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Core</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("do not use this method", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("do not use this method", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="T">
<Constraints>
<ParameterAttribute>ReferenceTypeConstraint</ParameterAttribute>
</Constraints>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="this" Type="System.Runtime.CompilerServices.CallSite<T>" />
<Parameter Name="matched" Type="System.Int32" />
</Parameters>
<Docs>
<typeparam name="T">The type of the delegate of the <see cref="T:System.Runtime.CompilerServices.CallSite" />.</typeparam>
<param name="this">An instance of the dynamic call site.</param>
<param name="matched">The matched rule index.</param>
<summary>Updates rules in the cache.</summary>
<remarks>To be added.</remarks>
<forInternalUseOnly />
</Docs>
</Member>
</Members>
</Type>