public System.IAsyncResult Begincreate(string [] transport_configs,LocalLBMessageRoutingProtocol [] protocols,string [] [] profiles, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("create", new object[] {
     transport_configs,
     protocols,
     profiles}, callback, asyncState);
 }
 public System.IAsyncResult Begincreate(string [] peers,LocalLBMessageRoutingProtocol [] protocols, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("create", new object[] {
     peers,
     protocols}, callback, asyncState);
 }
        public void create(
		string [] transport_configs,
		LocalLBMessageRoutingProtocol [] protocols,
		string [] [] profiles
	)
        {
            this.Invoke("create", new object [] {
                transport_configs,
                protocols,
                profiles});
        }
        public void create(
		string [] peers,
		LocalLBMessageRoutingProtocol [] protocols
	)
        {
            this.Invoke("create", new object [] {
                peers,
                protocols});
        }