forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSystem.Dynamic.Runtime.Forwards.cs
More file actions
34 lines (33 loc) · 3.26 KB
/
System.Dynamic.Runtime.Forwards.cs
File metadata and controls
34 lines (33 loc) · 3.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// ------------------------------------------------------------------------------
// Changes to this file must follow the https://aka.ms/api-review process.
// ------------------------------------------------------------------------------
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.CallSiteBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.CallSite))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.CallSite<>))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.CallSiteHelpers))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.DynamicAttribute))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Linq.Expressions.DynamicExpression))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Linq.Expressions.DynamicExpressionVisitor))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.DynamicMetaObject))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.DynamicMetaObjectBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.BindingRestrictions))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.BinaryOperationBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.CallInfo))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.ConvertBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.CreateInstanceBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.DeleteIndexBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.DeleteMemberBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.GetIndexBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.GetMemberBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.InvokeBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.InvokeMemberBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.SetIndexBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.SetMemberBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.UnaryOperationBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.IDynamicMetaObjectProvider))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.DynamicObject))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.ExpandoObject))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Dynamic.IInvokeOnGetBinder))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.ConditionalWeakTable<,>))]