Ejemplo n.º 1
0
 internal IDispatchMetaObject(Expression expression, IDispatchComObject self)
     : base(expression, BindingRestrictions.Empty, self)
 {
     _self = self;
 }
Ejemplo n.º 2
0
 internal DispCallable(IDispatchComObject dispatch, string memberName, int dispId) {
     _dispatch = dispatch;
     _memberName = memberName;
     _dispId = dispId;
 }
Ejemplo n.º 3
0
 internal DispCallable(IDispatchComObject dispatch, string memberName, int dispId)
 {
     DispatchComObject = dispatch;
     MemberName = memberName;
     DispId = dispId;
 }
Ejemplo n.º 4
0
 internal DispCallable(IDispatchComObject dispatch, string memberName, int dispId)
 {
     DispatchComObject = dispatch;
     MemberName        = memberName;
     DispId            = dispId;
 }
Ejemplo n.º 5
0
 internal IDispatchMetaObject(Expression expression, IDispatchComObject self)
     : base(expression, BindingRestrictions.Empty, self)
 {
     _self = self;
 }
Ejemplo n.º 6
0
 public static DispCallable CreateDispCallable(IDispatchComObject dispatch, ComMethodDesc method) {
     return new DispCallable(dispatch, method.Name, method.DispId);
 }
Ejemplo n.º 7
0
 internal DispCallable(IDispatchComObject dispatch, string memberName, int dispId)
 {
     _dispatch   = dispatch;
     _memberName = memberName;
     _dispId     = dispId;
 }