public void CopyTo(FullEndOfLog target) { target.PositionInE00 = this.PositionInE00; target.Generation = this.Generation; target.Sector = this.Sector; target.ByteOffset = this.ByteOffset; target.Utc = this.Utc; }
// Token: 0x060022AA RID: 8874 RVA: 0x000A1564 File Offset: 0x0009F764 internal LogCopyServerStatusMsg(NetworkChannel channel, FullEndOfLog eol) : base(channel, NetworkChannelMessage.MessageType.LogCopyServerStatus) { this.EndOfLogGeneration = eol.Generation; this.EndOfLogUtc = eol.Utc; this.EndOfLogSector = eol.Sector; this.EndOfLogByteOffset = eol.ByteOffset; if (eol.PositionInE00) { this.FlagsUsed |= LogCopyServerStatusMsg.Flags.GranularStatus; } }