Esempio n. 1
0
 public DuplicaatpersonenFoundRequest(OrganizationHeader OrganizationHeader, string achternaam, string voorletters, string roepnaam, string geboortedatum, int geslacht, string postcode, string huisnummer, string origin, string type)
 {
     this.OrganizationHeader = OrganizationHeader;
     this.achternaam         = achternaam;
     this.voorletters        = voorletters;
     this.roepnaam           = roepnaam;
     this.geboortedatum      = geboortedatum;
     this.geslacht           = geslacht;
     this.postcode           = postcode;
     this.huisnummer         = huisnummer;
     this.origin             = origin;
     this.type = type;
 }
        private IAsyncResult OnBeginDuplicaatpersonenFound(object[] inValues, AsyncCallback callback, object asyncState)
        {
            OrganizationHeader OrganizationHeader = (OrganizationHeader)inValues[0];
            string             achternaam         = (string)inValues[1];
            string             voorletters        = (string)inValues[2];
            string             roepnaam           = (string)inValues[3];
            string             geboortedatum      = (string)inValues[4];
            int    geslacht   = (int)inValues[5];
            string postcode   = (string)inValues[6];
            string huisnummer = (string)inValues[7];
            string origin     = (string)inValues[8];
            string type       = (string)inValues[9];

            return(this.BeginDuplicaatpersonenFound(OrganizationHeader, achternaam, voorletters, roepnaam, geboortedatum, geslacht, postcode, huisnummer, origin, type, callback, asyncState));
        }
 public void DuplicaatpersonenFoundAsync(OrganizationHeader OrganizationHeader, string achternaam, string voorletters, string roepnaam, string geboortedatum, int geslacht, string postcode, string huisnummer, string origin, string type, object userState)
 {
     if (this.onBeginDuplicaatpersonenFoundDelegate == null)
     {
         this.onBeginDuplicaatpersonenFoundDelegate = new ClientBase <DuplicaatPersonenServiceSoap> .BeginOperationDelegate(this.OnBeginDuplicaatpersonenFound);
     }
     if (this.onEndDuplicaatpersonenFoundDelegate == null)
     {
         this.onEndDuplicaatpersonenFoundDelegate = new ClientBase <DuplicaatPersonenServiceSoap> .EndOperationDelegate(this.OnEndDuplicaatpersonenFound);
     }
     if (this.onDuplicaatpersonenFoundCompletedDelegate == null)
     {
         this.onDuplicaatpersonenFoundCompletedDelegate = new SendOrPostCallback(this.OnDuplicaatpersonenFoundCompleted);
     }
     ClientBase <DuplicaatPersonenServiceSoap> .BeginOperationDelegate beginOperationDelegate = this.onBeginDuplicaatpersonenFoundDelegate;
     object[] organizationHeader = new object[] { OrganizationHeader, achternaam, voorletters, roepnaam, geboortedatum, geslacht, postcode, huisnummer, origin, type };
     //base.InvokeAsync((ClientBase<!0>.BeginOperationDelegate)beginOperationDelegate, organizationHeader, this.onEndDuplicaatpersonenFoundDelegate, this.onDuplicaatpersonenFoundCompletedDelegate, userState);
 }
        public bool DuplicaatpersonenFound(OrganizationHeader OrganizationHeader, string achternaam, string voorletters, string roepnaam, string geboortedatum, int geslacht, string postcode, string huisnummer, string origin, string type)
        {
            DuplicaatpersonenFoundRequest inValue = new DuplicaatpersonenFoundRequest()
            {
                OrganizationHeader = OrganizationHeader,
                achternaam         = achternaam,
                voorletters        = voorletters,
                roepnaam           = roepnaam,
                geboortedatum      = geboortedatum,
                geslacht           = geslacht,
                postcode           = postcode,
                huisnummer         = huisnummer,
                origin             = origin,
                type = type
            };

            return(((DuplicaatPersonenServiceSoap)this).DuplicaatpersonenFound(inValue).DuplicaatpersonenFoundResult);
        }
        public IAsyncResult BeginDuplicaatpersonenFound(OrganizationHeader OrganizationHeader, string achternaam, string voorletters, string roepnaam, string geboortedatum, int geslacht, string postcode, string huisnummer, string origin, string type, AsyncCallback callback, object asyncState)
        {
            DuplicaatpersonenFoundRequest inValue = new DuplicaatpersonenFoundRequest()
            {
                OrganizationHeader = OrganizationHeader,
                achternaam         = achternaam,
                voorletters        = voorletters,
                roepnaam           = roepnaam,
                geboortedatum      = geboortedatum,
                geslacht           = geslacht,
                postcode           = postcode,
                huisnummer         = huisnummer,
                origin             = origin,
                type = type
            };

            return(((DuplicaatPersonenServiceSoap)this).BeginDuplicaatpersonenFound(inValue, callback, asyncState));
        }
 public void DuplicaatpersonenFoundAsync(OrganizationHeader OrganizationHeader, string achternaam, string voorletters, string roepnaam, string geboortedatum, int geslacht, string postcode, string huisnummer, string origin, string type)
 {
     this.DuplicaatpersonenFoundAsync(OrganizationHeader, achternaam, voorletters, roepnaam, geboortedatum, geslacht, postcode, huisnummer, origin, type, null);
 }