SIPSorcery.SIP.App.SIPProviderBinding.GetTable C# (CSharp) Method

GetTable() public method

public GetTable ( ) : DataTable
return System.Data.DataTable
        public DataTable GetTable()
        {
            DataTable table = new DataTable();
            table.Columns.Add(new DataColumn("id", typeof(String)));
            table.Columns.Add(new DataColumn("providerid", typeof(String)));
            table.Columns.Add(new DataColumn("providername", typeof(String)));
            table.Columns.Add(new DataColumn("owner", typeof(String)));
            table.Columns.Add(new DataColumn("adminmemberid", typeof(String)));
            table.Columns.Add(new DataColumn("isregistered", typeof(Boolean)));
            table.Columns.Add(new DataColumn("bindinguri", typeof(String)));
            table.Columns.Add(new DataColumn("bindingexpiry", typeof(Int32)));
            table.Columns.Add(new DataColumn("cseq", typeof(Int32)));
            table.Columns.Add(new DataColumn("lastregistertime", typeof(DateTimeOffset)));
            table.Columns.Add(new DataColumn("lastregisterattempt", typeof(DateTimeOffset)));
            table.Columns.Add(new DataColumn("nextregistrationtime", typeof(DateTimeOffset)));
            table.Columns.Add(new DataColumn("registrarsipsocket", typeof(String)));
            table.Columns.Add(new DataColumn("registrationfailuremessage", typeof(String)));
            return table;
        }