public Main()
        {
            // Tcp: All communication to the Service Bus is performed using outbound TCP connections.
            // Http: All communication to Service Bus is performed using outbound HTTP connections.
            // AutoDetect: The Service bus client automatically selects between TCP and HTTP connectivity.
            Microsoft.ServiceBus.ServiceBusEnvironment.SystemConnectivity.Mode =
                                       Microsoft.ServiceBus.ConnectivityMode.AutoDetect;

            this.client = new PublicServiceClient();
            this.InitializeComponent();
        }
 public Main()
 {
     this.client = new PublicServiceClient();
     this.InitializeComponent();
 }