ozeki sip статус регистрации C#

Я не могу напечатать код состояния

этот метод для создания нового SIPAccount и регистрации его

 public void callnumber()
    {
        this.masterkey.increaseThreadCount();
        try
        {
            this.account = new SIPAccount(this.authRequired, this.username, this.username, this.username, this.password, this.voipServer);
            this.account.DomainServerPort = (OzPort)this.vport;
            if (this.registername != null)
                this.account.RegisterName = this.registername;
            if (this.outBandProxy != null)
                this.account.OutboundProxy = this.outBandProxy;
            this.RegisterAccount(new PhoneLineConfiguration(this.account)
            {
                TransportType = this.transportType,
                SRTPMode = this.srtpMode
            });
        }
        catch (Exception ex)
        {

        }
    }

и этот метод для регистрации sip аккаунта

      public void RegisterAccount(PhoneLineConfiguration account)
    {
        this.phoneLine = this.phone.CreatePhoneLine(account);
        this.phoneLine.RegistrationStateChanged += new EventHandler<RegistrationStateChangedArgs>(this.PhoneLine_RegistrationStateChanged);
        this.phone.RegisterPhoneLine(this.phoneLine);

    }

Теперь мне нужно распечатать регистр кода Стетуса, как 404,403,200.... но я не знаю, как я могу это сделать

0 ответов

Другие вопросы по тегам