コード例 #1
0
 // returns the <FieldName> element value of the currently active node
 public String CurrentFieldByLocale(XmlNode CurrentContext, String FieldName, String LocaleSetting)
 {
     if (CurrentContext == null)
     {
         return(String.Empty);
     }
     return(XmlCommon.XmlFieldByLocale(CurrentContext, FieldName, LocaleSetting));
 }