internal DomainRawContextBase( PddRawApi api, string domain ) {
     Api = api;
     DomainName = domain;
 }
 internal DomainRawContext( PddRawApi api, string domain ) : base( api, domain) {
     Deputy = new DeputyRawMethods( this );
     Dns = new DnsRawMethods( this );
     Dkim = new DkimRawMethods( this );
     Domain = new DomainRawMethods( this );
     Import = new ImportRawMethods( this );
     MailList = new MailListRawMethods( this );
     Mail = new MailRawMethods( this );
 }
Example #3
0
 public PddApi( string pddtoken, YaToken authtoken ) {
     Raw = new PddRawApi();
     if ( pddtoken != null ) PddToken = pddtoken;
     if ( authtoken != null ) AuthToken = authtoken;
     DomainsMethods = new DomainsMethods( Raw.DomainMethods );
 }