예제 #1
0
 internal DispCallable(IDispatchComObject dispatch, string memberName, int dispId) {
     _dispatch = dispatch;
     _memberName = memberName;
     _dispId = dispId;
 }
예제 #2
0
 public static DispCallable CreateDispCallable(IDispatchComObject dispatch, ComMethodDesc method) {
     return new DispCallable(dispatch, method.Name, method.DispId);
 }
예제 #3
0
 internal IDispatchMetaObject(Expression expression, IDispatchComObject self)
     : base(expression, BindingRestrictions.Empty, self) {
     _self = self;
 }