public WxeCallArguments([NotNull] Control sender, [NotNull] IWxeCallOptions options)
        {
            ArgumentUtility.CheckNotNull("sender", sender);
            ArgumentUtility.CheckNotNull("options", options);

            _sender  = sender;
            _options = options;
        }
Ejemplo n.º 2
0
        protected WxeCallArgumentsBase(IWxeCallOptions options)
        {
            ArgumentUtility.CheckNotNull("options", options);

            _options = options;
        }