Disable Service Broker in SQL Server

Following code snippet useful to disabled the service broker in SQL Server.
  1. Alter Database "YourDataBaseName" SET Disable_BROKER; 
After running the preceding code snippet , it will disable the service broker on specified database.