Example #1
0
 /// <seealso cref="iText.Kernel.XMP.XMPDateTime.GetISO8601String()"/>
 public virtual String GetIso8601String()
 {
     return(ISO8601Converter.Render(this));
 }
Example #2
0
 /// <summary>Creates an <code>XMPDateTime</code>-instance from an ISO 8601 string.</summary>
 /// <param name="strValue">an ISO 8601 string</param>
 /// <exception cref="iText.Kernel.XMP.XMPException">If the string is a non-conform ISO 8601 string, an exception is thrown
 ///     </exception>
 public XMPDateTimeImpl(String strValue)
 {
     ISO8601Converter.Parse(strValue, this);
 }