public System.IAsyncResult Begincreate(string [] profile_names,CommonProfileIPAddress [] v4_prefixes,CommonProfileULong [] v4_prefix_lengths,CommonProfileIPAddress [] v6_prefixes,CommonProfileULong [] v6_prefix_lengths, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("create", new object[] {
     profile_names,
     v4_prefixes,
     v4_prefix_lengths,
     v6_prefixes,
     v6_prefix_lengths}, callback, asyncState);
 }
        public void set_v6_prefix_and_length(
		string [] profile_names,
		CommonProfileIPAddress [] prefixes,
		CommonProfileULong [] lengths
	)
        {
            this.Invoke("set_v6_prefix_and_length", new object [] {
                profile_names,
                prefixes,
                lengths});
        }
        public void set_v6_prefix(
		string [] profile_names,
		CommonProfileIPAddress [] prefixes
	)
        {
            this.Invoke("set_v6_prefix", new object [] {
                profile_names,
                prefixes});
        }
        public void create(
		string [] profile_names,
		CommonProfileIPAddress [] v4_prefixes,
		CommonProfileULong [] v4_prefix_lengths,
		CommonProfileIPAddress [] v6_prefixes,
		CommonProfileULong [] v6_prefix_lengths
	)
        {
            this.Invoke("create", new object [] {
                profile_names,
                v4_prefixes,
                v4_prefix_lengths,
                v6_prefixes,
                v6_prefix_lengths});
        }
 public System.IAsyncResult Beginset_v6_prefix_and_length(string [] profile_names,CommonProfileIPAddress [] prefixes,CommonProfileULong [] lengths, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("set_v6_prefix_and_length", new object[] {
     profile_names,
     prefixes,
     lengths}, callback, asyncState);
 }