18 references to ComBinder
Microsoft.CSharp (18)
Microsoft\CSharp\RuntimeBinder\ComInterop\ComBinder.cs (2)
217
typeof(
ComBinder
).GetMethod(nameof(
ComBinder
.IsComObject), System.Reflection.BindingFlags.Static | System.Reflection.BindingFlags.Public),
Microsoft\CSharp\RuntimeBinder\ComInterop\ComInvokeAction.cs (1)
28
if (
ComBinder
.TryBindInvoke(this, target, args, out DynamicMetaObject res))
Microsoft\CSharp\RuntimeBinder\ComInterop\ComMetaObject.cs (2)
61
typeof(
ComBinder
).GetMethod(nameof(
ComBinder
.IsComObject), System.Reflection.BindingFlags.Static | System.Reflection.BindingFlags.Public),
Microsoft\CSharp\RuntimeBinder\ComInterop\ComObject.cs (2)
22
Debug.Assert(
ComBinder
.IsComObject(rcw));
38
Debug.Assert(
ComBinder
.IsComObject(rcw));
Microsoft\CSharp\RuntimeBinder\ComInterop\IDispatchMetaObject.cs (2)
70
ComBinder
.ComGetMemberBinder comBinder = binder as
ComBinder
.ComGetMemberBinder;
Microsoft\CSharp\RuntimeBinder\CSharpConvertBinder.cs (1)
122
if (ComInterop.
ComBinder
.TryConvert(this, target, out com))
Microsoft\CSharp\RuntimeBinder\CSharpGetIndexBinder.cs (1)
95
if (ComInterop.
ComBinder
.TryBindGetIndex(this, target, indexes, out com))
Microsoft\CSharp\RuntimeBinder\CSharpGetMemberBinder.cs (1)
110
if (ComInterop.
ComBinder
.TryBindGetMember(this, target, out com, ResultIndexed))
Microsoft\CSharp\RuntimeBinder\CSharpInvokeBinder.cs (1)
108
if (ComInterop.
ComBinder
.TryBindInvoke(this, target, args, out com))
Microsoft\CSharp\RuntimeBinder\CSharpInvokeMemberBinder.cs (1)
121
if (ComInterop.
ComBinder
.TryBindInvokeMember(this, target, args, out com))
Microsoft\CSharp\RuntimeBinder\CSharpSetIndexBinder.cs (1)
115
if (ComInterop.
ComBinder
.TryBindSetIndex(this, target, indexes, value, out com))
Microsoft\CSharp\RuntimeBinder\CSharpSetMemberBinder.cs (1)
115
if (ComInterop.
ComBinder
.TryBindSetMember(this, target, value, out com))
Microsoft\CSharp\RuntimeBinder\DynamicDebuggerProxy.cs (2)
473
IList<string> names = ComInterop.
ComBinder
.GetDynamicDataMemberNames(obj);
474
return ComInterop.
ComBinder
.GetDynamicDataMembers(obj, names.OrderBy(n => n));