public AsyncWrite(AsyncWriteCollection parent, MemoryStream data, string physicalPath, string key) { this.Parent = parent; this._data = data; this.PhysicalPath = physicalPath; this.Key = key; this.JobCreatedAt = DateTime.UtcNow; }
public AsyncWrite(AsyncWriteCollection parent, MemoryStream data, string physicalPath, string relativePath, DateTime modifiedDateUtc) { this._parent = parent; this._data = data; this._physicalPath = physicalPath; this._relativePath = relativePath; this._modifiedDateUtc = modifiedDateUtc; this._jobCreatedAt = DateTime.UtcNow; }