public System.IAsyncResult Begincreate(string [] profile_names,CommonProfileNetAddress [] ip6_prefixes,CommonProfileNetAddress [] ip4_prefixes,CommonProfileULong [] ea_bits_lengths,CommonProfileULong [] port_offsets, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("create", new object[] {
     profile_names,
     ip6_prefixes,
     ip4_prefixes,
     ea_bits_lengths,
     port_offsets}, callback, asyncState);
 }
        public void set_ip6_prefix(
		string [] profile_names,
		CommonProfileNetAddress [] prefixes
	)
        {
            this.Invoke("set_ip6_prefix", new object [] {
                profile_names,
                prefixes});
        }
        public void create(
		string [] profile_names,
		CommonProfileNetAddress [] ip6_prefixes,
		CommonProfileNetAddress [] ip4_prefixes,
		CommonProfileULong [] ea_bits_lengths,
		CommonProfileULong [] port_offsets
	)
        {
            this.Invoke("create", new object [] {
                profile_names,
                ip6_prefixes,
                ip4_prefixes,
                ea_bits_lengths,
                port_offsets});
        }
 public System.IAsyncResult Beginset_ip6_prefix(string [] profile_names,CommonProfileNetAddress [] prefixes, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("set_ip6_prefix", new object[] {
     profile_names,
     prefixes}, callback, asyncState);
 }