예제 #1
0
        /// <inheritdoc/>
        public TControlObject GetControl <TControlObject> (IControlSelectionCommand <TControlObject> controlSelectionCommand)
            where TControlObject : ControlObject
        {
            ArgumentUtility.CheckNotNull("controlSelectionCommand", controlSelectionCommand);

            return(_impl.GetControl(controlSelectionCommand));
        }
예제 #2
0
        /// <inheritdoc/>
        public TControlObject GetControl <TControlObject> (IControlSelectionCommand <TControlObject> controlSelectionCommand)
            where TControlObject : ControlObject
        {
            ArgumentUtility.CheckNotNull("controlSelectionCommand", controlSelectionCommand);

            return(controlSelectionCommand.Select(Context.CloneForControlSelection(this)));
        }
예제 #3
0
 /// <inheritdoc/>
 public TControlObject GetControl <TControlObject> (IControlSelectionCommand <TControlObject> controlSelectionCommand)
     where TControlObject : ControlObject
 {
     return(controlSelectionCommand.Select(_context.CloneForControlSelection()));
 }