i trying to create the service bus topic, for which i am using the namespacemanager. the name space manager is not showing the function CreateFromConnectionString.
using System;
using Microsoft.ServiceBus;
using Microsoft.ServiceBus.Messaging;
using Microsoft.WindowsAzure;
namespace MyWebRole
{
public partial class ServiceBus : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string ConnectionString = CloudConfigurationManager.GetSetting("");
var namespacemanager = NamespaceManager. //(here only Equal or Referance Equal option I am getting)
}
}
}