コード例 #1
0
     public CustomFieldBuilder WithTranslation( Translation translation ) {
         if ( this.translations == null ) {
             this.translations = new List<Translation>();
         }
         this.translations.Add( translation );
         return this;
 
     }
コード例 #2
0
     public ProfessionalIdentityField AddTranslation(Translation value)
 {
     if (value == null)
     {
         throw new ArgumentNullException("Argument cannot be null");
     }
     
     _translations.Add(value);
     return this;
 }
コード例 #3
0
ファイル: CustomField.cs プロジェクト: vtcharlie/esl.sdk.net
     public CustomField AddTranslation(Translation value)
 {
     if (value == null)
     {
         throw new ArgumentNullException("Argument cannot be null");
     }
     
     _translations.Add(value);
     return this;
 }