/// <summary>
 /// The execution of the create command.
 /// </summary>
 private void OnCreateCommand()
 {
     if (ValidateInput())
     {
         Result = TopicName;
         _owner.Close();
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// The execution of the CreateCommand.
 /// </summary>
 private void OnCreateCommand()
 {
     if (ValidateInput())
     {
         Result = Subscription;
         _owner.Close();
     }
 }