Example #1
0
 private void CreateRampTypeMode(Json json)
 {
     if (TypeMode != null && TypeMode.Trim().Length > 0)
     {
         json.WriteTag("dc.type.mode");
         json.WriteRaw(StringWithComma(TypeMode));
     }
 }
Example #2
0
 private void CreateRampFormatMedium(Json json)
 {
     if (FormatMedium != null && FormatMedium.Trim().Length > 0)
     {
         json.WriteTag("dc.format.medium");
         json.WriteRaw(StringWithComma(FormatMedium));
     }
 }
Example #3
0
 private void CreateRampHelperVernacularContent(Json json)
 {
     if (HelperVernacularContent != null && HelperVernacularContent.Trim().Length > 0)
     {
         json.WriteTag("helper.subject.vernacularContent");
         json.WriteRaw(StringWithComma(HelperVernacularContent));
     }
 }
Example #4
0
 private void CreateRampScriptureScope(Json json)
 {
     if (TitleScriptureScope != null && TitleScriptureScope.Trim().Length > 0)
     {
         json.WriteTag("dc.title.scriptureScope");
         json.WriteRaw(StringWithComma(TitleScriptureScope));
     }
 }
Example #5
0
 private void CreateRampSilDomain(Json json)
 {
     if (SilDomain != null && SilDomain.Trim().Length > 0)
     {
         json.WriteTag("dc.subject.silDomain");
         json.WriteRaw(StringWithComma(SilDomain));
     }
 }
Example #6
0
 private void CreateRampDomainSubTypeLing(Json json)
 {
     if (DomainSubTypeLing != null && DomainSubTypeLing.Trim().Length > 0)
     {
         json.WriteTag("type.domainSubtype.LING");
         json.WriteRaw(StringWithComma(DomainSubTypeLing));
     }
 }