hessiancsharp.io.AbstractHessianOutput.WriteUTCDate C# (CSharp) Method

WriteUTCDate() public abstract method

Writes a date to the stream T b64 b56 b48 b40 b32 b24 b16 b8
public abstract WriteUTCDate ( long time ) : void
time long the date in milliseconds from the epoch in UTC
return void
        public abstract void WriteUTCDate(long time);

Usage Example

Esempio n. 1
0
 /// <summary>
 /// Writes Instance of the DateTime class
 /// </summary>
 /// <param name="objDate">Instance of the DateTime class</param>
 /// <param name="abstractHessianOutput">HessianOutput - Stream</param>
 public override void WriteObject(Object objDate, AbstractHessianOutput abstractHessianOutput)
 {
     if (objDate == null)
         abstractHessianOutput.WriteNull();
     else
     {
         abstractHessianOutput.WriteUTCDate(MakeJavaDate((DateTime)objDate));
     }
 }
All Usage Examples Of hessiancsharp.io.AbstractHessianOutput::WriteUTCDate