// Token: 0x06000060 RID: 96 RVA: 0x00003438 File Offset: 0x00001638
 public bool Create(global::AuthorCreation creation, out global::AuthorPeice peice)
 {
     if (this.creator == null)
     {
         peice = null;
         return(false);
     }
     peice = this.creator(creation, this);
     return(peice);
 }
Пример #2
0
 // Token: 0x0600007E RID: 126 RVA: 0x00003508 File Offset: 0x00001708
 public void Registered(global::AuthorCreation creation)
 {
     this._creation = creation;
     this._peiceID  = (this._peiceID ?? string.Empty);
     this.OnRegistered();
 }
 // Token: 0x0600005F RID: 95 RVA: 0x00003418 File Offset: 0x00001618
 public bool Validate(global::AuthorCreation creation)
 {
     return(this.validator == null || this.validator(creation, this));
 }