初始化

This commit is contained in:
2025-12-11 11:39:02 +08:00
commit 156d6ccb06
1708 changed files with 1162911 additions and 0 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,304 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>K4os.Compression.LZ4.Streams</name>
</assembly>
<members>
<member name="T:K4os.Compression.LZ4.Streams.ILZ4Descriptor">
<summary>
LZ4 Frame descriptor.
</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.ILZ4Descriptor.ContentLength">
<summary>Content length. Not always known.</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.ILZ4Descriptor.ContentChecksum">
<summary>Indicates if content checksum is provided.</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.ILZ4Descriptor.Chaining">
<summary>Indicates if blocks are chained (dependent) or not (independent).</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.ILZ4Descriptor.BlockChecksum">
<summary>Indicates if block checksums are provided.</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.ILZ4Descriptor.Dictionary">
<summary>Dictionary id. May be null.</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.ILZ4Descriptor.BlockSize">
<summary>Block size.</summary>
</member>
<member name="T:K4os.Compression.LZ4.Streams.Internal.EmptyToken">
<summary>
Completely empty class to do nothing.
It is used internally instead of CancellationToken to make sure
blocking operations are easily distinguishable from async ones
(you cannot call blocking operation by accident as they *require* EmptyToken).
</summary>
</member>
<member name="T:K4os.Compression.LZ4.Streams.Internal.LZ4StreamBase">
<summary>
Base class for LZ4 encoder and decoder streams.
Cannot be used on its own it just provides some shared functionality.
</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.Internal.LZ4StreamBase.CanRead">
<inheritdoc />
</member>
<member name="P:K4os.Compression.LZ4.Streams.Internal.LZ4StreamBase.CanWrite">
<inheritdoc />
</member>
<member name="P:K4os.Compression.LZ4.Streams.Internal.LZ4StreamBase.CanTimeout">
<inheritdoc />
</member>
<member name="P:K4os.Compression.LZ4.Streams.Internal.LZ4StreamBase.ReadTimeout">
<inheritdoc />
</member>
<member name="P:K4os.Compression.LZ4.Streams.Internal.LZ4StreamBase.WriteTimeout">
<inheritdoc />
</member>
<member name="P:K4os.Compression.LZ4.Streams.Internal.LZ4StreamBase.CanSeek">
<inheritdoc />
</member>
<member name="P:K4os.Compression.LZ4.Streams.Internal.LZ4StreamBase.Position">
<summary>Read-only position in the stream. Trying to set it will throw
<see cref="T:System.InvalidOperationException"/>.</summary>
</member>
<member name="M:K4os.Compression.LZ4.Streams.Internal.LZ4StreamBase.Seek(System.Int64,System.IO.SeekOrigin)">
<inheritdoc />
</member>
<member name="M:K4os.Compression.LZ4.Streams.Internal.LZ4StreamBase.SetLength(System.Int64)">
<inheritdoc />
</member>
<member name="M:K4os.Compression.LZ4.Streams.Internal.LZ4StreamBase.ReadByte">
<inheritdoc />
</member>
<member name="M:K4os.Compression.LZ4.Streams.Internal.LZ4StreamBase.Read(System.Byte[],System.Int32,System.Int32)">
<inheritdoc />
</member>
<member name="M:K4os.Compression.LZ4.Streams.Internal.LZ4StreamBase.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<inheritdoc />
</member>
<member name="M:K4os.Compression.LZ4.Streams.Internal.LZ4StreamBase.WriteByte(System.Byte)">
<inheritdoc />
</member>
<member name="M:K4os.Compression.LZ4.Streams.Internal.LZ4StreamBase.Write(System.Byte[],System.Int32,System.Int32)">
<inheritdoc />
</member>
<member name="M:K4os.Compression.LZ4.Streams.Internal.LZ4StreamBase.WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<inheritdoc />
</member>
<member name="T:K4os.Compression.LZ4.Streams.LZ4DecoderSettings">
<summary>
Decoder settings.
</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4DecoderSettings.ExtraMemory">
<summary>Extra memory for decompression.</summary>
</member>
<member name="T:K4os.Compression.LZ4.Streams.LZ4DecoderStream">
<summary>
LZ4 Decompression stream handling.
</summary>
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4DecoderStream.#ctor(System.IO.Stream,System.Func{K4os.Compression.LZ4.Streams.ILZ4Descriptor,K4os.Compression.LZ4.Encoders.ILZ4Decoder},System.Boolean,System.Boolean)">
<summary>Creates new instance <see cref="T:K4os.Compression.LZ4.Streams.LZ4DecoderStream"/>.</summary>
<param name="inner">Inner stream.</param>
<param name="decoderFactory">A function which will create appropriate decoder depending
on frame descriptor.</param>
<param name="leaveOpen">If <c>true</c> inner stream will not be closed after disposing.</param>
<param name="interactive">If <c>true</c> reading from stream will be "interactive" allowing
to read bytes as soon as possible, even if more data is expected.</param>
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4DecoderStream.Flush">
<inheritdoc />
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4DecoderStream.FlushAsync(System.Threading.CancellationToken)">
<inheritdoc />
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4DecoderStream.ReadByte">
<inheritdoc />
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4DecoderStream.Read(System.Byte[],System.Int32,System.Int32)">
<inheritdoc />
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4DecoderStream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<inheritdoc />
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4DecoderStream.Dispose(System.Boolean)">
<inheritdoc />
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4DecoderStream.CanWrite">
<inheritdoc />
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4DecoderStream.Length">
<summary>
Length of stream. Please note, this will only work if original LZ4 stream has
<c>ContentLength</c> field set in descriptor. Otherwise returned value will be <c>-1</c>.
It will also require synchronous stream access,
so it wont work if AllowSynchronousIO is false.
</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4DecoderStream.Position">
<summary>
Position within the stream. Position can be read, but cannot be set as LZ4 stream does
not have <c>Seek</c> capability.
</summary>
</member>
<member name="T:K4os.Compression.LZ4.Streams.LZ4EncoderSettings">
<summary>
LZ4 encoder settings.
</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4EncoderSettings.ContentLength">
<summary>
Content length. It is not enforced, it can be set to any value, but it will be
written to the stream so it can be used while decoding. If you don't know the length
just leave default value.
</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4EncoderSettings.ChainBlocks">
<summary>
Indicates if blocks should be chained (dependent) or not (independent). Dependent blocks
(with chaining) provide better compression ratio but are a little but slower and take
more memory.
</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4EncoderSettings.BlockSize">
<summary>
Block size. You can use any block size, but default values for LZ4 are 64k, 256k, 1m,
and 4m. 64k is good enough for dependent blocks, but for independent blocks bigger is
better.
</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4EncoderSettings.ContentChecksum">
<summary>Indicates is content checksum is provided. Not implemented yet.</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4EncoderSettings.BlockChecksum">
<summary>Indicates if block checksum is provided. Not implemented yet.</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4EncoderSettings.Dictionary">
<summary>Dictionary id. Not implemented yet.</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4EncoderSettings.CompressionLevel">
<summary>Compression level.</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4EncoderSettings.ExtraMemory">
<summary>Extra memory (for the process, more is usually better).</summary>
</member>
<member name="T:K4os.Compression.LZ4.Streams.LZ4EncoderStream">
<summary>
LZ4 compression stream.
</summary>
<summary>
LZ4 compression stream.
</summary>
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4EncoderStream.#ctor(System.IO.Stream,K4os.Compression.LZ4.Streams.ILZ4Descriptor,System.Func{K4os.Compression.LZ4.Streams.ILZ4Descriptor,K4os.Compression.LZ4.Encoders.ILZ4Encoder},System.Boolean)">
<summary>Creates new instance of <see cref="T:K4os.Compression.LZ4.Streams.LZ4EncoderStream"/>.</summary>
<param name="inner">Inner stream.</param>
<param name="descriptor">LZ4 Descriptor.</param>
<param name="encoderFactory">Function which will take descriptor and return
appropriate encoder.</param>
<param name="leaveOpen">Indicates if <paramref name="inner"/> stream should be left
open after disposing.</param>
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4EncoderStream.Flush">
<inheritdoc />
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4EncoderStream.FlushAsync(System.Threading.CancellationToken)">
<inheritdoc />
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4EncoderStream.WriteByte(System.Byte)">
<inheritdoc />
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4EncoderStream.Write(System.Byte[],System.Int32,System.Int32)">
<inheritdoc />
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4EncoderStream.WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
<inheritdoc />
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4EncoderStream.Dispose(System.Boolean)">
<inheritdoc />
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4EncoderStream.CanRead">
<inheritdoc />
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4EncoderStream.Length">
<summary>Length of the stream and number of bytes written so far.</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4EncoderStream.Position">
<summary>Read-only position in the stream. Trying to set it will throw
<see cref="T:System.InvalidOperationException"/>.</summary>
</member>
<member name="T:K4os.Compression.LZ4.Streams.LZ4Descriptor">
<summary>
LZ4 frame descriptor.
</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4Descriptor.ContentLength">
<summary>Content length (if available).</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4Descriptor.ContentChecksum">
<summary>Indicates if content checksum if present.</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4Descriptor.Chaining">
<summary>Indicates if blocks are chained.</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4Descriptor.BlockChecksum">
<summary>Indicates if block checksums are present.</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4Descriptor.Dictionary">
<summary>Dictionary id (or null).</summary>
</member>
<member name="P:K4os.Compression.LZ4.Streams.LZ4Descriptor.BlockSize">
<summary>Block size.</summary>
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4Descriptor.#ctor(System.Nullable{System.Int64},System.Boolean,System.Boolean,System.Boolean,System.Nullable{System.UInt32},System.Int32)">
<summary>Creates new instance of <see cref="T:K4os.Compression.LZ4.Streams.LZ4Descriptor"/>.</summary>
<param name="contentLength">Content length.</param>
<param name="contentChecksum">Content checksum flag.</param>
<param name="chaining">Chaining flag.</param>
<param name="blockChecksum">Block checksum flag.</param>
<param name="dictionary">Dictionary id.</param>
<param name="blockSize">Block size.</param>
</member>
<member name="T:K4os.Compression.LZ4.Streams.LZ4Stream">
<summary>
Utility class with factory methods to create LZ4 compression and decompression streams.
</summary>
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4Stream.Encode(System.IO.Stream,K4os.Compression.LZ4.Streams.LZ4EncoderSettings,System.Boolean)">
<summary>Created compression stream on top of inner stream.</summary>
<param name="stream">Inner stream.</param>
<param name="settings">Compression settings.</param>
<param name="leaveOpen">Leave inner stream open after disposing.</param>
<returns>Compression stream.</returns>
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4Stream.Encode(System.IO.Stream,K4os.Compression.LZ4.LZ4Level,System.Int32,System.Boolean)">
<summary>Created compression stream on top of inner stream.</summary>
<param name="stream">Inner stream.</param>
<param name="level">Compression level.</param>
<param name="extraMemory">Extra memory used for compression.</param>
<param name="leaveOpen">Leave inner stream open after disposing.</param>
<returns>Compression stream.</returns>
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4Stream.Decode(System.IO.Stream,K4os.Compression.LZ4.Streams.LZ4DecoderSettings,System.Boolean,System.Boolean)">
<summary>Creates decompression stream on top of inner stream.</summary>
<param name="stream">Inner stream.</param>
<param name="settings">Decompression settings.</param>
<param name="leaveOpen">Leave inner stream open after disposing.</param>
<param name="interactive">If <c>true</c> reading from stream will be "interactive" allowing
to read bytes as soon as possible, even if more data is expected.</param>
<returns>Decompression stream.</returns>
</member>
<member name="M:K4os.Compression.LZ4.Streams.LZ4Stream.Decode(System.IO.Stream,System.Int32,System.Boolean,System.Boolean)">
<summary>Creates decompression stream on top of inner stream.</summary>
<param name="stream">Inner stream.</param>
<param name="extraMemory">Extra memory used for decompression.</param>
<param name="leaveOpen">Leave inner stream open after disposing.</param>
<param name="interactive">If <c>true</c> reading from stream will be "interactive" allowing
to read bytes as soon as possible, even if more data is expected.</param>
<returns>Decompression stream.</returns>
</member>
</members>
</doc>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,163 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>K4os.Hash.xxHash</name>
</assembly>
<members>
<member name="T:K4os.Hash.xxHash.HashAlgorithmAdapter">
<summary>
Adapter implementing <see cref="T:System.Security.Cryptography.HashAlgorithm"/>
</summary>
</member>
<member name="M:K4os.Hash.xxHash.HashAlgorithmAdapter.#ctor(System.Int32,System.Action,System.Action{System.Byte[],System.Int32,System.Int32},System.Func{System.Byte[]})">
<summary>
Creates new <see cref="T:K4os.Hash.xxHash.HashAlgorithmAdapter"/>.
</summary>
<param name="hashSize">Hash size (in bytes)</param>
<param name="reset">Reset function.</param>
<param name="update">Update function.</param>
<param name="digest">Digest function.</param>
</member>
<member name="P:K4os.Hash.xxHash.HashAlgorithmAdapter.HashSize">
<inheritdoc />
</member>
<member name="P:K4os.Hash.xxHash.HashAlgorithmAdapter.Hash">
<inheritdoc />
</member>
<member name="M:K4os.Hash.xxHash.HashAlgorithmAdapter.HashCore(System.Byte[],System.Int32,System.Int32)">
<inheritdoc />
</member>
<member name="M:K4os.Hash.xxHash.HashAlgorithmAdapter.HashFinal">
<inheritdoc />
</member>
<member name="M:K4os.Hash.xxHash.HashAlgorithmAdapter.Initialize">
<inheritdoc />
</member>
<member name="T:K4os.Hash.xxHash.XXH">
<summary>
Base class for both <see cref="T:K4os.Hash.xxHash.XXH32"/> and <see cref="T:K4os.Hash.xxHash.XXH64"/>. Do not use directly.
</summary>
</member>
<member name="M:K4os.Hash.xxHash.XXH.#ctor">
<summary>Protected constructor to prevent instantiation.</summary>
</member>
<member name="T:K4os.Hash.xxHash.XXH32">
<summary>
xxHash 32-bit.
</summary>
</member>
<member name="F:K4os.Hash.xxHash.XXH32.EmptyHash">
<summary>Hash of empty buffer.</summary>
</member>
<member name="M:K4os.Hash.xxHash.XXH32.DigestOf(System.Void*,System.Int32)">
<summary>Hash of provided buffer.</summary>
<param name="bytes">Buffer.</param>
<param name="length">Length of buffer.</param>
<returns>Digest.</returns>
</member>
<member name="M:K4os.Hash.xxHash.XXH32.DigestOf(System.ReadOnlySpan{System.Byte})">
<summary>Hash of provided buffer.</summary>
<param name="bytes">Buffer.</param>
<returns>Digest.</returns>
</member>
<member name="M:K4os.Hash.xxHash.XXH32.DigestOf(System.Byte[],System.Int32,System.Int32)">
<summary>Hash of provided buffer.</summary>
<param name="bytes">Buffer.</param>
<param name="offset">Starting offset.</param>
<param name="length">Length of buffer.</param>
<returns>Digest.</returns>
</member>
<member name="M:K4os.Hash.xxHash.XXH32.#ctor">
<summary>Creates xxHash instance.</summary>
</member>
<member name="M:K4os.Hash.xxHash.XXH32.Reset">
<summary>Resets hash calculation.</summary>
</member>
<member name="M:K4os.Hash.xxHash.XXH32.Update(System.Byte*,System.Int32)">
<summary>Updates the has using given buffer.</summary>
<param name="bytes">Buffer.</param>
<param name="length">Length of buffer.</param>
</member>
<member name="M:K4os.Hash.xxHash.XXH32.Update(System.ReadOnlySpan{System.Byte})">
<summary>Updates the has using given buffer.</summary>
<param name="bytes">Buffer.</param>
</member>
<member name="M:K4os.Hash.xxHash.XXH32.Update(System.Byte[],System.Int32,System.Int32)">
<summary>Updates the has using given buffer.</summary>
<param name="bytes">Buffer.</param>
<param name="offset">Starting offset.</param>
<param name="length">Length of buffer.</param>
</member>
<member name="M:K4os.Hash.xxHash.XXH32.Digest">
<summary>Hash so far.</summary>
<returns>Hash so far.</returns>
</member>
<member name="M:K4os.Hash.xxHash.XXH32.DigestBytes">
<summary>Hash so far, as byte array.</summary>
<returns>Hash so far.</returns>
</member>
<member name="M:K4os.Hash.xxHash.XXH32.AsHashAlgorithm">
<summary>Converts this class to <see cref="T:System.Security.Cryptography.HashAlgorithm"/></summary>
<returns><see cref="T:System.Security.Cryptography.HashAlgorithm"/></returns>
</member>
<member name="T:K4os.Hash.xxHash.XXH64">
<summary>
xxHash 64-bit.
</summary>
</member>
<member name="F:K4os.Hash.xxHash.XXH64.EmptyHash">
<summary>Hash of empty buffer.</summary>
</member>
<member name="M:K4os.Hash.xxHash.XXH64.DigestOf(System.Void*,System.Int32)">
<summary>Hash of provided buffer.</summary>
<param name="bytes">Buffer.</param>
<param name="length">Length of buffer.</param>
<returns>Digest.</returns>
</member>
<member name="M:K4os.Hash.xxHash.XXH64.DigestOf(System.ReadOnlySpan{System.Byte})">
<summary>Hash of provided buffer.</summary>
<param name="bytes">Buffer.</param>
<returns>Digest.</returns>
</member>
<member name="M:K4os.Hash.xxHash.XXH64.DigestOf(System.Byte[],System.Int32,System.Int32)">
<summary>Hash of provided buffer.</summary>
<param name="bytes">Buffer.</param>
<param name="offset">Starting offset.</param>
<param name="length">Length of buffer.</param>
<returns>Digest.</returns>
</member>
<member name="M:K4os.Hash.xxHash.XXH64.#ctor">
<summary>Creates xxHash instance.</summary>
</member>
<member name="M:K4os.Hash.xxHash.XXH64.Reset">
<summary>Resets hash calculation.</summary>
</member>
<member name="M:K4os.Hash.xxHash.XXH64.Update(System.Byte*,System.Int32)">
<summary>Updates the has using given buffer.</summary>
<param name="bytes">Buffer.</param>
<param name="length">Length of buffer.</param>
</member>
<member name="M:K4os.Hash.xxHash.XXH64.Update(System.ReadOnlySpan{System.Byte})">
<summary>Updates the has using given buffer.</summary>
<param name="bytes">Buffer.</param>
</member>
<member name="M:K4os.Hash.xxHash.XXH64.Update(System.Byte[],System.Int32,System.Int32)">
<summary>Updates the has using given buffer.</summary>
<param name="bytes">Buffer.</param>
<param name="offset">Starting offset.</param>
<param name="length">Length of buffer.</param>
</member>
<member name="M:K4os.Hash.xxHash.XXH64.Digest">
<summary>Hash so far.</summary>
<returns>Hash so far.</returns>
</member>
<member name="M:K4os.Hash.xxHash.XXH64.DigestBytes">
<summary>Hash so far, as byte array.</summary>
<returns>Hash so far.</returns>
</member>
<member name="M:K4os.Hash.xxHash.XXH64.AsHashAlgorithm">
<summary>Converts this class to <see cref="T:System.Security.Cryptography.HashAlgorithm"/></summary>
<returns><see cref="T:System.Security.Cryptography.HashAlgorithm"/></returns>
</member>
</members>
</doc>

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,567 @@
[2022-06-08 17:07:00:734 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:00
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:00:768 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:00
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:03:717 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:03
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:03:811 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:03
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:04:988 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:04
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:07:125 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:07
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:08:479 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:08
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:09:684 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:09
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:09:987 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:09
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:11:264 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:11
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:12:930 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:12
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:13:683 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:13
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:17:635 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:17
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:18:308 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:18
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:22:039 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:22
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:22:057 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:22
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:22:089 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:22
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:22:154 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:22
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:22:794 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:22
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:23:506 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:23
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:28:856 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:28
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:30:327 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:30
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:30:366 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:30
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:30:432 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:30
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:30:512 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:30
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:30:567 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:30
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:30:598 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:30
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:30:679 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:30
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:30:700 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:30
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:31:580 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:31
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:31:929 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:31
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:32:677 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:32
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:32:703 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:32
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:33:134 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:33
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:33:358 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:33
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:33:734 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:33
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:33:756 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:33
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:33:912 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:33
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:35:091 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:35
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:07:35:186 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:07:35
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:02:601 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:02
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:02:682 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:02
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:04:615 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:04
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:05:887 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:05
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:06:025 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:06
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:07:211 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:07
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:09:416 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:09
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:10:583 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:10
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:11:766 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:11
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:12:072 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:12
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:13:330 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:13
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:14:991 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:14
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:15:753 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:15
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:19:613 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:19
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:20:175 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:20
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:23:869 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:23
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:23:887 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:23
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:23:918 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:23
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:23:987 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:23
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:24:615 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:24
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:25:320 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:25
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:30:721 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:30
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:32:208 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:32
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:32:250 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:32
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:32:316 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:32
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:32:398 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:32
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:32:428 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:32
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:32:456 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:32
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:32:538 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:32
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:32:557 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:32
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:33:354 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:33
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:33:689 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:33
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:34:431 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:34
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:34:451 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:34
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:34:860 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:34
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:35:111 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:35
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:35:482 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:35
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:35:501 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:35
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:35:652 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:35
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:36:812 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:36
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741
[2022-06-08 17:14:36:907 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/8 17:14:36
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 741

View File

@@ -0,0 +1,287 @@
[2022-06-16 17:51:06:354 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:06
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:06:389 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:06
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:08:209 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:08
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:10:241 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:10
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:10:407 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:10
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:11:912 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:11
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:14:268 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:14
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:15:521 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:15
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:16:842 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:16
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:17:219 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:17
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:18:762 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:18
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:20:659 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:20
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:21:520 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:21
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:25:829 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:25
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:26:490 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:26
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:31:173 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:31
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:31:208 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:31
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:31:262 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:31
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:31:344 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:31
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:32:181 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:32
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:32:996 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:32
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:39:123 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:39
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:40:895 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:40
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:40:942 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:40
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:41:042 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:41
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:41:159 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:41
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:41:238 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:41
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:41:263 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:41
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:41:383 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:41
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:41:417 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:41
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:42:744 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:42
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:43:374 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:43
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:44:221 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:44
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:44:242 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:44
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:44:668 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:44
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:44:912 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:44
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:45:316 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:45
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:45:339 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:45
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:45:525 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:45
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:46:827 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:46
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734
[2022-06-16 17:51:46:941 ][Error ]ErrorMessage:算术运算导致溢出。
ErrorTime:2022/6/16 17:51:46
ErrorSource:RCU_LogAgent_MySql-v0.01
ErrorType:System.OverflowException
ErrorTargetSite:System.Collections.Generic.List`1[RCU_LogAgent_MySql_v0._01.Form1+LogDataInfoStruct] File_Data_Parsing_To_List(fileNameInfoStruct, System.Collections.Generic.List`1[System.Byte[]])
ErrorStackTrace: 在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 734

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,26 @@
[2022-06-19 11:18:19:352 ][Error ]ErrorMessage:Timed out trying to connect!
ErrorTime:2022/6/19 11:18:19
ErrorSource:FluentFTP
ErrorType:System.TimeoutException
ErrorTargetSite:Void Connect(System.String, Int32, FluentFTP.FtpIpVersion)
ErrorStackTrace: 在 FluentFTP.FtpSocketStream.Connect(String host, Int32 port, FtpIpVersion ipVersions)
在 FluentFTP.FtpClient.Connect(FtpSocketStream stream)
在 FluentFTP.FtpClient.Connect()
在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload(Dictionary`2 FtpDownloadfile) 位置 I:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\FTP\UtsFtp.vb:行号 127
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 I:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 510
[2022-06-19 11:20:07:635 ][Error ]ErrorMessage:Timed out trying to connect!
ErrorTime:2022/6/19 11:20:07
ErrorSource:FluentFTP
ErrorType:System.TimeoutException
ErrorTargetSite:Void Connect(System.String, Int32, FluentFTP.FtpIpVersion)
ErrorStackTrace: 在 FluentFTP.FtpSocketStream.Connect(String host, Int32 port, FtpIpVersion ipVersions)
在 FluentFTP.FtpClient.Connect(FtpSocketStream stream)
在 FluentFTP.FtpClient.Connect()
在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload(Dictionary`2 FtpDownloadfile) 位置 I:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\FTP\UtsFtp.vb:行号 127
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 I:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\RCULogAgent\RCU_LogAgent_MySql-v0.01\Form1.vb:行号 510

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,11 @@
[2022-06-23 20:11:13:496 ][Error ]ErrorMessage:对路径“C:\bootmgr”的访问被拒绝。
ErrorTime:2022/6/23 20:11:13
ErrorSource:mscorlib
ErrorType:System.UnauthorizedAccessException
ErrorTargetSite:Void WinIOError(Int32, System.String)
ErrorStackTrace: 在 System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
在 System.IO.File.InternalDelete(String path, Boolean checkHost)
在 System.IO.File.Delete(String path)
在 RCU_LogAgent_MySql_v0._01.Form1.AddErroRfileToErrorfile(String g_StrPath, String strFileName) 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\SourceCode\RCULogAgent\RCU_LogAgent\Form1.vb:行号 350
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 D:\Sync\RD_PC\Project\BLV_RcuLogAgent\SourceCode\RCULogAgent\RCU_LogAgent\Form1.vb:行号 281

View File

@@ -0,0 +1,276 @@
[2022-06-25 23:36:02:214 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:36:02
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1014
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 940
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 845
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 322
[2022-06-25 23:36:02:877 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:36:02
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1014
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 940
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 845
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 322
[2022-06-25 23:36:50:343 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:36:50
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1014
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 940
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 845
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 322
[2022-06-25 23:36:51:069 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:36:51
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1014
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 940
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 845
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 322
[2022-06-25 23:40:14:910 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:40:14
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1020
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 946
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 851
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 328
[2022-06-25 23:40:24:746 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:40:24
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1020
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 946
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 851
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 328
[2022-06-25 23:40:34:899 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:40:34
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1020
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 946
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 851
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 328
[2022-06-25 23:40:44:541 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:40:44
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1020
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 946
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 851
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 328
[2022-06-25 23:41:35:000 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:41:34
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1021
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 947
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 852
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 329
[2022-06-25 23:41:41:172 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:41:41
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1021
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 947
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 852
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 329
[2022-06-25 23:42:36:221 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:42:36
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1023
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 949
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-25 23:42:45:231 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:42:45
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1023
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 949
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-25 23:44:17:121 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:44:17
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 855
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-25 23:44:22:854 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:44:22
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 855
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-25 23:47:16:407 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:47:16
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 855
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-25 23:47:29:696 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:47:29
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 855
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-25 23:49:28:963 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:49:28
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1025
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-25 23:54:16:716 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:54:16
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.newtime_h(LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1065
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 956
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-25 23:55:11:235 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:55:11
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.newtime_h(LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1065
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 956
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-25 23:55:31:254 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:55:31
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.newtime_h(LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1065
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 956
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-25 23:55:32:072 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:55:32
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.newtime_h(LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1065
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 956
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-25 23:55:50:276 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:55:50
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.newtime_h(LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1065
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 956
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-25 23:55:50:964 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/25 23:55:50
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.newtime_h(LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1065
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 956
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330

View File

@@ -0,0 +1,855 @@
[2022-06-26 00:01:48:519 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:01:48
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:01:48:567 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:01:48
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:01:48:592 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:01:48
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:01:48:617 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:01:48
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:01:48:650 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:01:48
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:02:50:204 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:02:50
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:02:50:245 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:02:50
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:02:50:267 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:02:50
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:02:50:289 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:02:50
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:02:50:315 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:02:50
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:02:50:347 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:02:50
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:03:44:572 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:03:44
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:03:44:616 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:03:44
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:03:44:639 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:03:44
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:04:23:059 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:04:23
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:04:23:103 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:04:23
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:04:23:143 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:04:23
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:04:23:185 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:04:23
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:04:23:226 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:04:23
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:04:23:290 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:04:23
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:05:41:005 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:05:40
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:05:41:035 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:05:41
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:05:41:071 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:05:41
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:05:41:118 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:05:41
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:05:41:159 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:05:41
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:06:50:285 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:06:50
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:06:57:610 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:06:57
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:06:59:510 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:06:59
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:07:01:437 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:07:01
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:07:02:032 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:07:02
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:07:02:583 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:07:02
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:07:39:135 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:07:39
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:07:43:754 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:07:43
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:07:44:542 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:07:44
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:07:45:140 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:07:45
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:07:45:870 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:07:45
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:07:46:448 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:07:46
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:08:09:789 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:08:09
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:08:09:836 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:08:09
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:08:09:883 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:08:09
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:08:09:917 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:08:09
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:08:09:957 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:08:09
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:08:10:001 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:08:10
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:08:51:009 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:08:50
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:08:51:054 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:08:51
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:08:51:085 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:08:51
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:08:51:111 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:08:51
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:08:51:140 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:08:51
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:08:51:199 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:08:51
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:10:56:224 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:10:56
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:10:56:266 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:10:56
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:10:56:314 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:10:56
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:10:56:338 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:10:56
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:10:56:365 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:10:56
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:10:56:424 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:10:56
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:11:26:048 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/26 0:11:25
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.newtime_h(LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1066
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 956
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:11:26:866 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/26 0:11:26
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.newtime_h(LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1066
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 956
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:21:37:087 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/26 0:21:37
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.newtime_h(LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1066
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 956
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:21:37:827 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/26 0:21:37
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.newtime_h(LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1066
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 956
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:31:48:089 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/26 0:31:48
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.newtime_h(LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1066
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 956
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:31:49:138 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/26 0:31:49
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.newtime_h(LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1066
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 956
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:41:59:052 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/26 0:41:59
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.newtime_h(LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1066
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 956
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:41:59:878 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/26 0:41:59
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.newtime_h(LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1066
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 956
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:52:09:796 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/26 0:52:09
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.newtime_h(LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1066
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 956
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:52:10:669 ][Error ]ErrorMessage:小时、分和秒参数描述无法表示的 DateTime。
ErrorTime:2022/6/26 0:52:10
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Int64 TimeToTicks(Int32, Int32, Int32)
ErrorStackTrace: 在 System.DateTime.TimeToTicks(Int32 hour, Int32 minute, Int32 second)
在 System.DateTime..ctor(Int32 year, Int32 month, Int32 day, Int32 hour, Int32 minute, Int32 second)
在 RCU_LogAgent_MySql_v0._01.Form1.newtime_h(LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1066
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 956
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 11:14:11:604 ][Error ]ErrorMessage:FTPS security could not be established on the server. The certificate was not accepted.
ErrorTime:2022/6/26 11:14:11
ErrorSource:FluentFTP
ErrorType:FluentFTP.FtpInvalidCertificateException
ErrorTargetSite:System.Collections.Generic.List`1[FluentFTP.FtpProfile] AutoDetect(Boolean, Boolean)
ErrorStackTrace: 在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload(Dictionary`2 FtpDownloadfile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 129
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 625
[2022-06-26 11:22:28:142 ][Error ]ErrorMessage:FTPS security could not be established on the server. The certificate was not accepted.
ErrorTime:2022/6/26 11:22:28
ErrorSource:FluentFTP
ErrorType:FluentFTP.FtpInvalidCertificateException
ErrorTargetSite:System.Collections.Generic.List`1[FluentFTP.FtpProfile] AutoDetect(Boolean, Boolean)
ErrorStackTrace: 在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload(Dictionary`2 FtpDownloadfile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 129
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 625

View File

@@ -0,0 +1,221 @@
[2022-06-26 00:01:48:519 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:01:48
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:01:48:567 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:01:48
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:01:48:592 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:01:48
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:01:48:617 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:01:48
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:01:48:650 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:01:48
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:02:50:204 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:02:50
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:02:50:245 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:02:50
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:02:50:267 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:02:50
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:02:50:289 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:02:50
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:02:50:315 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:02:50
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:02:50:347 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:02:50
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:03:44:572 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:03:44
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:03:44:616 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:03:44
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:03:44:639 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:03:44
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:03:44:669 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:03:44
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:03:44:699 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:03:44
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330
[2022-06-26 00:03:44:733 ][Error ]ErrorMessage:索引超出范围。必须为非负值并小于集合大小。
参数名: index
ErrorTime:2022/6/26 0:03:44
ErrorSource:mscorlib
ErrorType:System.ArgumentOutOfRangeException
ErrorTargetSite:Void ThrowArgumentOutOfRangeException(System.ExceptionArgument, System.ExceptionResource)
ErrorStackTrace: 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 RCU_LogAgent_MySql_v0._01.Form1.Get_Data_Time_Difference2(List`1 data_list, LogDataInfoStruct data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 1024
在 RCU_LogAgent_MySql_v0._01.Form1.File_Data_Parsing_To_List(fileNameInfoStruct datFileName, List`1 file_data) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 950
在 RCU_LogAgent_MySql_v0._01.Form1.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 854
在 RCU_LogAgent_MySql_v0._01.Form1.ScanFile() 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 330

View File

@@ -0,0 +1,60 @@
[2022-06-27 11:41:48:375 ][Error ]ErrorMessage:FTPS security could not be established on the server. The certificate was not accepted.
ErrorTime:2022/6/27 11:41:48
ErrorSource:FluentFTP
ErrorType:FluentFTP.FtpInvalidCertificateException
ErrorTargetSite:System.Collections.Generic.List`1[FluentFTP.FtpProfile] AutoDetect(Boolean, Boolean)
ErrorStackTrace: 在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload(Dictionary`2 FtpDownloadfile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 129
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 625
[2022-06-27 11:41:50:456 ][Error ]ErrorMessage:FTPS security could not be established on the server. The certificate was not accepted.
ErrorTime:2022/6/27 11:41:50
ErrorSource:FluentFTP
ErrorType:FluentFTP.FtpInvalidCertificateException
ErrorTargetSite:System.Collections.Generic.List`1[FluentFTP.FtpProfile] AutoDetect(Boolean, Boolean)
ErrorStackTrace: 在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload(Dictionary`2 FtpDownloadfile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 129
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 625
[2022-06-27 11:52:00:442 ][Error ]ErrorMessage:FTPS security could not be established on the server. The certificate was not accepted.
ErrorTime:2022/6/27 11:52:00
ErrorSource:FluentFTP
ErrorType:FluentFTP.FtpInvalidCertificateException
ErrorTargetSite:System.Collections.Generic.List`1[FluentFTP.FtpProfile] AutoDetect(Boolean, Boolean)
ErrorStackTrace: 在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload(Dictionary`2 FtpDownloadfile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 129
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 625
[2022-06-27 11:52:02:465 ][Error ]ErrorMessage:FTPS security could not be established on the server. The certificate was not accepted.
ErrorTime:2022/6/27 11:52:02
ErrorSource:FluentFTP
ErrorType:FluentFTP.FtpInvalidCertificateException
ErrorTargetSite:System.Collections.Generic.List`1[FluentFTP.FtpProfile] AutoDetect(Boolean, Boolean)
ErrorStackTrace: 在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload(Dictionary`2 FtpDownloadfile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 129
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 625
[2022-06-27 12:02:12:611 ][Error ]ErrorMessage:FTPS security could not be established on the server. The certificate was not accepted.
ErrorTime:2022/6/27 12:02:12
ErrorSource:FluentFTP
ErrorType:FluentFTP.FtpInvalidCertificateException
ErrorTargetSite:System.Collections.Generic.List`1[FluentFTP.FtpProfile] AutoDetect(Boolean, Boolean)
ErrorStackTrace: 在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload(Dictionary`2 FtpDownloadfile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 129
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 625
[2022-06-27 12:02:14:612 ][Error ]ErrorMessage:FTPS security could not be established on the server. The certificate was not accepted.
ErrorTime:2022/6/27 12:02:14
ErrorSource:FluentFTP
ErrorType:FluentFTP.FtpInvalidCertificateException
ErrorTargetSite:System.Collections.Generic.List`1[FluentFTP.FtpProfile] AutoDetect(Boolean, Boolean)
ErrorStackTrace: 在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload(Dictionary`2 FtpDownloadfile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 129
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 625

View File

@@ -0,0 +1,195 @@
[2022-06-28 11:36:17:934 ][Error ]ErrorMessage:Timed out trying to connect!
ErrorTime:2022/6/28 11:36:17
ErrorSource:FluentFTP
ErrorType:System.TimeoutException
ErrorTargetSite:Void Connect(System.String, Int32, FluentFTP.FtpIpVersion)
ErrorStackTrace: 在 FluentFTP.FtpSocketStream.Connect(String host, Int32 port, FtpIpVersion ipVersions)
在 FluentFTP.FtpClient.Connect(FtpSocketStream stream)
在 FluentFTP.FtpClient.Connect()
在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload_UdpLogOnly(Dictionary`2& FtpDownloadfile, String& BAK_Path, String FtpUploadReturnMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 132
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 626
[2022-06-28 11:36:34:748 ][Error ]ErrorMessage:Timed out trying to connect!
ErrorTime:2022/6/28 11:36:34
ErrorSource:FluentFTP
ErrorType:System.TimeoutException
ErrorTargetSite:Void Connect(System.String, Int32, FluentFTP.FtpIpVersion)
ErrorStackTrace: 在 FluentFTP.FtpSocketStream.Connect(String host, Int32 port, FtpIpVersion ipVersions)
在 FluentFTP.FtpClient.Connect(FtpSocketStream stream)
在 FluentFTP.FtpClient.Connect()
在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload_UdpLogOnly(Dictionary`2& FtpDownloadfile, String& BAK_Path, String FtpUploadReturnMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 132
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 626
[2022-06-28 12:05:53:606 ][Error ]ErrorMessage:Timed out trying to connect!
ErrorTime:2022/6/28 12:05:53
ErrorSource:FluentFTP
ErrorType:System.TimeoutException
ErrorTargetSite:Void Connect(System.String, Int32, FluentFTP.FtpIpVersion)
ErrorStackTrace: 在 FluentFTP.FtpSocketStream.Connect(String host, Int32 port, FtpIpVersion ipVersions)
在 FluentFTP.FtpClient.Connect(FtpSocketStream stream)
在 FluentFTP.FtpClient.Connect()
在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload_UdpLogOnly(Dictionary`2 FtpDownloadfile, String BAK_Path, String& FtpUploadReturnMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 132
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 626
[2022-06-28 12:07:40:859 ][Error ]ErrorMessage:Timed out trying to connect!
ErrorTime:2022/6/28 12:07:40
ErrorSource:FluentFTP
ErrorType:System.TimeoutException
ErrorTargetSite:Void Connect(System.String, Int32, FluentFTP.FtpIpVersion)
ErrorStackTrace: 在 FluentFTP.FtpSocketStream.Connect(String host, Int32 port, FtpIpVersion ipVersions)
在 FluentFTP.FtpClient.Connect(FtpSocketStream stream)
在 FluentFTP.FtpClient.Connect()
在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload_UdpLogOnly(Dictionary`2 FtpDownloadfile, String BAK_Path, String& FtpUploadReturnMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 132
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 626
[2022-06-28 12:07:57:730 ][Error ]ErrorMessage:Timed out trying to connect!
ErrorTime:2022/6/28 12:07:57
ErrorSource:FluentFTP
ErrorType:System.TimeoutException
ErrorTargetSite:Void Connect(System.String, Int32, FluentFTP.FtpIpVersion)
ErrorStackTrace: 在 FluentFTP.FtpSocketStream.Connect(String host, Int32 port, FtpIpVersion ipVersions)
在 FluentFTP.FtpClient.Connect(FtpSocketStream stream)
在 FluentFTP.FtpClient.Connect()
在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload_UdpLogOnly(Dictionary`2 FtpDownloadfile, String BAK_Path, String& FtpUploadReturnMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 132
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 626
[2022-06-28 12:17:00:496 ][Error ]ErrorMessage:Timed out trying to connect!
ErrorTime:2022/6/28 12:17:00
ErrorSource:FluentFTP
ErrorType:System.TimeoutException
ErrorTargetSite:Void Connect(System.String, Int32, FluentFTP.FtpIpVersion)
ErrorStackTrace: 在 FluentFTP.FtpSocketStream.Connect(String host, Int32 port, FtpIpVersion ipVersions)
在 FluentFTP.FtpClient.Connect(FtpSocketStream stream)
在 FluentFTP.FtpClient.Connect()
在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload_UdpLogOnly(Dictionary`2 FtpDownloadfile, String BAK_Path, String& FtpUploadReturnMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 132
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 626
[2022-06-28 12:17:17:330 ][Error ]ErrorMessage:Timed out trying to connect!
ErrorTime:2022/6/28 12:17:17
ErrorSource:FluentFTP
ErrorType:System.TimeoutException
ErrorTargetSite:Void Connect(System.String, Int32, FluentFTP.FtpIpVersion)
ErrorStackTrace: 在 FluentFTP.FtpSocketStream.Connect(String host, Int32 port, FtpIpVersion ipVersions)
在 FluentFTP.FtpClient.Connect(FtpSocketStream stream)
在 FluentFTP.FtpClient.Connect()
在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload_UdpLogOnly(Dictionary`2 FtpDownloadfile, String BAK_Path, String& FtpUploadReturnMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 132
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 626
[2022-06-28 12:17:55:930 ][Error ]ErrorMessage:Timed out trying to connect!
ErrorTime:2022/6/28 12:17:55
ErrorSource:FluentFTP
ErrorType:System.TimeoutException
ErrorTargetSite:Void Connect(System.String, Int32, FluentFTP.FtpIpVersion)
ErrorStackTrace: 在 FluentFTP.FtpSocketStream.Connect(String host, Int32 port, FtpIpVersion ipVersions)
在 FluentFTP.FtpClient.Connect(FtpSocketStream stream)
在 FluentFTP.FtpClient.Connect()
在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload_UdpLogOnly(Dictionary`2 FtpDownloadfile, String BAK_Path, String& FtpUploadReturnMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 132
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 626
[2022-06-28 12:18:12:775 ][Error ]ErrorMessage:Timed out trying to connect!
ErrorTime:2022/6/28 12:18:12
ErrorSource:FluentFTP
ErrorType:System.TimeoutException
ErrorTargetSite:Void Connect(System.String, Int32, FluentFTP.FtpIpVersion)
ErrorStackTrace: 在 FluentFTP.FtpSocketStream.Connect(String host, Int32 port, FtpIpVersion ipVersions)
在 FluentFTP.FtpClient.Connect(FtpSocketStream stream)
在 FluentFTP.FtpClient.Connect()
在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload_UdpLogOnly(Dictionary`2 FtpDownloadfile, String BAK_Path, String& FtpUploadReturnMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 132
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 626
[2022-06-28 12:20:32:078 ][Error ]ErrorMessage:Timed out trying to connect!
ErrorTime:2022/6/28 12:20:32
ErrorSource:FluentFTP
ErrorType:System.TimeoutException
ErrorTargetSite:Void Connect(System.String, Int32, FluentFTP.FtpIpVersion)
ErrorStackTrace: 在 FluentFTP.FtpSocketStream.Connect(String host, Int32 port, FtpIpVersion ipVersions)
在 FluentFTP.FtpClient.Connect(FtpSocketStream stream)
在 FluentFTP.FtpClient.Connect()
在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload_UdpLogOnly(Dictionary`2 FtpDownloadfile, String BAK_Path, String& FtpUploadReturnMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 132
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 626
[2022-06-28 12:20:48:937 ][Error ]ErrorMessage:Timed out trying to connect!
ErrorTime:2022/6/28 12:20:48
ErrorSource:FluentFTP
ErrorType:System.TimeoutException
ErrorTargetSite:Void Connect(System.String, Int32, FluentFTP.FtpIpVersion)
ErrorStackTrace: 在 FluentFTP.FtpSocketStream.Connect(String host, Int32 port, FtpIpVersion ipVersions)
在 FluentFTP.FtpClient.Connect(FtpSocketStream stream)
在 FluentFTP.FtpClient.Connect()
在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload_UdpLogOnly(Dictionary`2 FtpDownloadfile, String BAK_Path, String& FtpUploadReturnMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 132
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 626
[2022-06-28 12:37:19:187 ][Error ]ErrorMessage:Timed out trying to connect!
ErrorTime:2022/6/28 12:37:19
ErrorSource:FluentFTP
ErrorType:System.TimeoutException
ErrorTargetSite:Void Connect(System.String, Int32, FluentFTP.FtpIpVersion)
ErrorStackTrace: 在 FluentFTP.FtpSocketStream.Connect(String host, Int32 port, FtpIpVersion ipVersions)
在 FluentFTP.FtpClient.Connect(FtpSocketStream stream)
在 FluentFTP.FtpClient.Connect()
在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload_UdpLogOnly(Dictionary`2 FtpDownloadfile, String BAK_Path, String& FtpUploadReturnMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 132
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 626
[2022-06-28 12:37:36:030 ][Error ]ErrorMessage:Timed out trying to connect!
ErrorTime:2022/6/28 12:37:36
ErrorSource:FluentFTP
ErrorType:System.TimeoutException
ErrorTargetSite:Void Connect(System.String, Int32, FluentFTP.FtpIpVersion)
ErrorStackTrace: 在 FluentFTP.FtpSocketStream.Connect(String host, Int32 port, FtpIpVersion ipVersions)
在 FluentFTP.FtpClient.Connect(FtpSocketStream stream)
在 FluentFTP.FtpClient.Connect()
在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload_UdpLogOnly(Dictionary`2 FtpDownloadfile, String BAK_Path, String& FtpUploadReturnMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 132
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 626
[2022-06-28 12:38:57:931 ][Error ]ErrorMessage:Timed out trying to connect!
ErrorTime:2022/6/28 12:38:57
ErrorSource:FluentFTP
ErrorType:System.TimeoutException
ErrorTargetSite:Void Connect(System.String, Int32, FluentFTP.FtpIpVersion)
ErrorStackTrace: 在 FluentFTP.FtpSocketStream.Connect(String host, Int32 port, FtpIpVersion ipVersions)
在 FluentFTP.FtpClient.Connect(FtpSocketStream stream)
在 FluentFTP.FtpClient.Connect()
在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload_UdpLogOnly(Dictionary`2 FtpDownloadfile, String BAK_Path, String& FtpUploadReturnMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 132
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 626
[2022-06-28 12:50:14:391 ][Error ]ErrorMessage:Timed out trying to connect!
ErrorTime:2022/6/28 12:50:14
ErrorSource:FluentFTP
ErrorType:System.TimeoutException
ErrorTargetSite:Void Connect(System.String, Int32, FluentFTP.FtpIpVersion)
ErrorStackTrace: 在 FluentFTP.FtpSocketStream.Connect(String host, Int32 port, FtpIpVersion ipVersions)
在 FluentFTP.FtpClient.Connect(FtpSocketStream stream)
在 FluentFTP.FtpClient.Connect()
在 FluentFTP.FtpClient.AutoDetect(Boolean firstOnly, Boolean cloneConnection)
在 FluentFTP.FtpClient.AutoConnect()
在 RCU_LogAgent_MySql_v0._01.UTSModule.UtsFtp.FtpUpload_UdpLogOnly(Dictionary`2 FtpDownloadfile, String BAK_Path, String& FtpUploadReturnMsg) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\FTP\UtsFtp.vb:行号 132
在 RCU_LogAgent_MySql_v0._01.Form1.FTPUploadingFile(Dictionary`2 SyncToLoadFile) 位置 E:\BLV_Sync\RD_PC\Project\BLV_RcuLogAgent\src\RCULogAgent\RCU_LogAgent\Form1.vb:行号 627

View File

@@ -0,0 +1,84 @@
[2022-11-26 10:48:07:767 ][Error ]ErrorMessage:值不能为 null。
参数名: No connection associated with this transaction
ErrorTime:2022/11/26 10:48:07
ErrorSource:System.Data.SQLite
ErrorType:System.ArgumentNullException
ErrorTargetSite:Boolean IsValid(Boolean)
ErrorStackTrace: 在 System.Data.SQLite.SQLiteTransactionBase.IsValid(Boolean throwError)
在 System.Data.SQLite.SQLiteTransaction.Commit()
在 RCU_LogAgent_sqllite.LogParsing.WriteDataToDB(List`1 lstLogData) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\LogParsing.vb:行号 1099
[2022-11-26 10:49:54:766 ][Error ]ErrorMessage:值不能为 null。
参数名: No connection associated with this transaction
ErrorTime:2022/11/26 10:49:54
ErrorSource:System.Data.SQLite
ErrorType:System.ArgumentNullException
ErrorTargetSite:Boolean IsValid(Boolean)
ErrorStackTrace: 在 System.Data.SQLite.SQLiteTransactionBase.IsValid(Boolean throwError)
在 System.Data.SQLite.SQLiteTransaction.Commit()
在 RCU_LogAgent_sqllite.LogParsing.WriteDataToDB(List`1 lstLogData) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\LogParsing.vb:行号 1099
[2022-11-26 10:51:29:641 ][Error ]ErrorMessage:值不能为 null。
参数名: No connection associated with this transaction
ErrorTime:2022/11/26 10:51:29
ErrorSource:System.Data.SQLite
ErrorType:System.ArgumentNullException
ErrorTargetSite:Boolean IsValid(Boolean)
ErrorStackTrace: 在 System.Data.SQLite.SQLiteTransactionBase.IsValid(Boolean throwError)
在 System.Data.SQLite.SQLiteTransaction.Commit()
在 RCU_LogAgent_sqllite.LogParsing.WriteDataToDB(List`1 lstLogData) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\LogParsing.vb:行号 1099
[2022-11-26 10:54:49:106 ][Error ]ErrorMessage:值不能为 null。
参数名: No connection associated with this transaction
ErrorTime:2022/11/26 10:54:49
ErrorSource:System.Data.SQLite
ErrorType:System.ArgumentNullException
ErrorTargetSite:Boolean IsValid(Boolean)
ErrorStackTrace: 在 System.Data.SQLite.SQLiteTransactionBase.IsValid(Boolean throwError)
在 System.Data.SQLite.SQLiteTransaction.Commit()
在 RCU_LogAgent_sqllite.LogParsing.WriteDataToDB(List`1 lstLogData) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\LogParsing.vb:行号 1099
[2022-11-26 13:42:28:612 ][Error ]ErrorMessage:值不能为 null。
参数名: dest
ErrorTime:2022/11/26 13:42:28
ErrorSource:mscorlib
ErrorType:System.ArgumentNullException
ErrorTargetSite:Void Copy(System.Array, Int32, System.Array, Int32, Int32, Boolean)
ErrorStackTrace: 在 System.Array.Copy(Array sourceArray, Int32 sourceIndex, Array destinationArray, Int32 destinationIndex, Int32 length, Boolean reliable)
在 System.Array.Copy(Array sourceArray, Int32 sourceIndex, Array destinationArray, Int32 destinationIndex, Int32 length)
在 RCU_LogAgent_sqllite.LogParsing.File_Data_Parsing_To_Iten(fileNameInfoStruct datFileName, Byte[] databuff, LogDataInfoStruct lastdata) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\LogParsing.vb:行号 365
在 RCU_LogAgent_sqllite.LogParsing.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\LogParsing.vb:行号 276
[2022-11-26 13:43:18:882 ][Error ]ErrorMessage:值不能为 null。
参数名: dest
ErrorTime:2022/11/26 13:43:18
ErrorSource:mscorlib
ErrorType:System.ArgumentNullException
ErrorTargetSite:Void Copy(System.Array, Int32, System.Array, Int32, Int32, Boolean)
ErrorStackTrace: 在 System.Array.Copy(Array sourceArray, Int32 sourceIndex, Array destinationArray, Int32 destinationIndex, Int32 length, Boolean reliable)
在 System.Array.Copy(Array sourceArray, Int32 sourceIndex, Array destinationArray, Int32 destinationIndex, Int32 length)
在 RCU_LogAgent_sqllite.LogParsing.File_Data_Parsing_To_Iten(fileNameInfoStruct datFileName, Byte[] databuff, LogDataInfoStruct lastdata) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\LogParsing.vb:行号 365
在 RCU_LogAgent_sqllite.LogParsing.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\LogParsing.vb:行号 276
[2022-11-26 16:19:21:288 ][Error ]ErrorMessage:无法访问已释放的对象。
对象名:“RCU_Logviewer”。
ErrorTime:2022/11/26 16:19:21
ErrorSource:System.Windows.Forms
ErrorType:System.ObjectDisposedException
ErrorTargetSite:System.Object MarshaledInvoke(System.Windows.Forms.Control, System.Delegate, System.Object[], Boolean)
ErrorStackTrace: 在 System.Windows.Forms.Control.MarshaledInvoke(Control caller, Delegate method, Object[] args, Boolean synchronous)
在 System.Windows.Forms.Control.Invoke(Delegate method, Object[] args)
在 RCU_LogAgent_sqllite.RCU_Logviewer.SetUIProgressBar2(Int32 berval, Boolean ismax) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\RCU_Logviewer.vb:行号 509
在 RCU_LogAgent_sqllite.LogParsing.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\LogParsing.vb:行号 261
[2022-11-26 18:50:57:008 ][Error ]ErrorMessage:无法访问已释放的对象。
对象名:“RCU_Logviewer”。
ErrorTime:2022/11/26 18:50:56
ErrorSource:System.Windows.Forms
ErrorType:System.ObjectDisposedException
ErrorTargetSite:System.Object MarshaledInvoke(System.Windows.Forms.Control, System.Delegate, System.Object[], Boolean)
ErrorStackTrace: 在 System.Windows.Forms.Control.MarshaledInvoke(Control caller, Delegate method, Object[] args, Boolean synchronous)
在 System.Windows.Forms.Control.Invoke(Delegate method, Object[] args)
在 RCU_LogAgent_sqllite.RCU_Logviewer.SetUIProgressBar2(Int32 berval, Boolean ismax) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\RCU_Logviewer.vb:行号 514
在 RCU_LogAgent_sqllite.LogParsing.GetFileInfoList(fileNameInfoStruct datFileName, File datFile, List`1& fileInfoList, String& ErrMsg) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\LogParsing.vb:行号 264

View File

@@ -0,0 +1,522 @@
[2024-04-19 09:08:09:398 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 9:08:09
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 09:10:22:032 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 9:10:22
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 10:11:01:331 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 10:11:01
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 10:27:12:141 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 10:27:12
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 10:31:43:243 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 10:31:43
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 10:34:07:353 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 10:34:07
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 15:31:17:220 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 15:31:17
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state)
[2024-04-19 15:43:26:598 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 15:43:26
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state)
[2024-04-19 16:13:35:891 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 16:13:35
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 17:02:00:607 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 17:02:00
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 17:26:31:040 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 17:26:31
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 17:34:15:150 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 17:34:15
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 17:48:37:500 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 17:48:37
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 18:00:06:603 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 18:00:06
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 18:11:14:123 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 18:11:11
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 19:57:32:377 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 19:57:32
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 20:01:33:645 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 20:01:33
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 20:04:11:039 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 20:04:11
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 20:07:02:236 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411144303.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411144303.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:07:03:842 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 20:07:03
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 20:07:10:493 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411185224.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411185224.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:07:13:068 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411185724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411185724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:07:24:808 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411190225.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411190225.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:07:39:913 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411190724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411190724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:08:04:320 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411191224.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411191224.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:08:13:341 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411191724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411191724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:08:17:947 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411192725.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411192725.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:08:23:920 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411193224.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411193224.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:09:13:723 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411194225.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411194225.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:09:15:785 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411195224.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411195224.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:09:19:959 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411200724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411200724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:09:31:715 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411201239.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411201239.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:09:51:124 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411201724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411201724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:09:55:642 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411202724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411202724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:10:01:080 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411203244.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411203244.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:10:03:786 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411211724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411211724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:10:04:894 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411144303.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411144303.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:10:06:673 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 20:10:06
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 20:10:14:374 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411185224.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411185224.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:10:17:849 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411185724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411185724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:10:30:868 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411190225.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411190225.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:10:50:000 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411190724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411190724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:11:17:627 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411191224.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411191224.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:11:28:042 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411191724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411191724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:11:34:270 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411192725.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411192725.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:11:41:127 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411193224.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411193224.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:12:46:509 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411194225.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411194225.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:12:49:287 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411195224.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411195224.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:12:54:587 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411200724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411200724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:13:19:046 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411201724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411201724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:13:24:716 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411202724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411202724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:13:31:713 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411203244.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411203244.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:13:34:257 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411211724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411211724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:13:35:548 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411144303.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411144303.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:13:37:219 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 20:13:37
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 20:13:47:295 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411185224.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411185224.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:13:50:681 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411185724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411185724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:14:06:554 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411190225.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411190225.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:14:27:580 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411190724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411190724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:15:25:777 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411191224.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411191224.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:15:39:275 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411191724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411191724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:15:46:495 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411192725.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411192725.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:15:54:500 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411193224.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411193224.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:17:59:639 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411194225.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411194225.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:18:02:384 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411195224.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411195224.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:18:08:712 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411200724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411200724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:18:26:254 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411201239.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411201239.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:18:33:339 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411202724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411202724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:18:41:729 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411203244.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411203244.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:18:45:552 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411211724.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411211724.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:18:47:126 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411144303.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411144303.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:18:50:042 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 20:18:50
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 20:19:13:589 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411185224.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411185224.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:19:15:886 ][Error ]文件C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\B8115204_1507_31554_240411144303.dat移动到
C:\Users\Administrator\Desktop\chepiziliao\新建文件夹\Log 2024-04-12\OkFilePath\B8115204\B8115204_1507_31554_240411144303.dat
失败!
问题详情
当文件已存在时,无法创建该文件。
[2024-04-19 20:19:19:585 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 20:19:19
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state)
[2024-04-19 20:21:13:416 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 20:21:13
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 20:25:40:966 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 20:25:40
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 20:27:27:643 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 20:27:27
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 20:37:14:577 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 20:37:14
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 20:38:36:553 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 20:38:36
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 20:58:57:603 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 20:58:57
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946
[2024-04-19 21:22:33:372 ][Error ]ErrorMessage:索引超出了数组界限。
ErrorTime:2024-4-19 21:22:33
ErrorSource:RCU_LogAgent_sqllite
ErrorType:System.IndexOutOfRangeException
ErrorTargetSite:System.String Read_Parameter_Information(Byte[], Boolean)
ErrorStackTrace: 在 RCU_LogAgent_sqllite.NetworkData.Read_Parameter_Information(Byte[] data, Boolean state) 位置 D:\Sync\RD_PC\陈志豪\czh\RCU_LogAgent\NetworkData.vb:行号 946

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="RCU_LogAgent_sqllite.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
<section name="RCU_LogAgent.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
</startup>
<entityFramework>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
<provider invariantName="System.Data.SQLite.EF6" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6" />
</providers>
</entityFramework>
<system.data>
<DbProviderFactories>
<remove invariant="System.Data.SQLite.EF6" />
<add name="SQLite Data Provider (Entity Framework 6)" invariant="System.Data.SQLite.EF6" description=".NET Framework Data Provider for SQLite (Entity Framework 6)" type="System.Data.SQLite.EF6.SQLiteProviderFactory, System.Data.SQLite.EF6" />
<remove invariant="System.Data.SQLite" /><add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".NET Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" /></DbProviderFactories>
</system.data>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<userSettings>
<RCU_LogAgent_sqllite.My.MySettings>
<setting name="path" serializeAs="String">
<value>C:\</value>
</setting>
<setting name="timeout" serializeAs="String">
<value>600</value>
</setting>
<setting name="FileDir" serializeAs="String">
<value>C:\</value>
</setting>
</RCU_LogAgent_sqllite.My.MySettings>
<RCU_LogAgent.My.MySettings>
<setting name="path" serializeAs="String">
<value>C:\</value>
</setting>
<setting name="timeout" serializeAs="String">
<value>600</value>
</setting>
<setting name="FileDir" serializeAs="String">
<value>C:\</value>
</setting>
</RCU_LogAgent.My.MySettings>
</userSettings>
</configuration>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Buffers</name>
</assembly>
<members>
<member name="T:System.Buffers.ArrayPool`1">
<summary>Provides a resource pool that enables reusing instances of type <see cref="T[]"></see>.</summary>
<typeparam name="T">The type of the objects that are in the resource pool.</typeparam>
</member>
<member name="M:System.Buffers.ArrayPool`1.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
</member>
<member name="M:System.Buffers.ArrayPool`1.Create">
<summary>Creates a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
<returns>A new instance of the <see cref="System.Buffers.ArrayPool`1"></see> class.</returns>
</member>
<member name="M:System.Buffers.ArrayPool`1.Create(System.Int32,System.Int32)">
<summary>Creates a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class using the specifed configuration.</summary>
<param name="maxArrayLength">The maximum length of an array instance that may be stored in the pool.</param>
<param name="maxArraysPerBucket">The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access.</param>
<returns>A new instance of the <see cref="System.Buffers.ArrayPool`1"></see> class with the specified configuration.</returns>
</member>
<member name="M:System.Buffers.ArrayPool`1.Rent(System.Int32)">
<summary>Retrieves a buffer that is at least the requested length.</summary>
<param name="minimumLength">The minimum length of the array.</param>
<returns>An array of type <see cref="T[]"></see> that is at least <paramref name="minimumLength">minimumLength</paramref> in length.</returns>
</member>
<member name="M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)">
<summary>Returns an array to the pool that was previously obtained using the <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"></see> method on the same <see cref="T:System.Buffers.ArrayPool`1"></see> instance.</summary>
<param name="array">A buffer to return to the pool that was previously obtained using the <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"></see> method.</param>
<param name="clearArray">Indicates whether the contents of the buffer should be cleared before reuse. If <paramref name="clearArray">clearArray</paramref> is set to true, and if the pool will store the buffer to enable subsequent reuse, the <see cref="M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)"></see> method will clear the <paramref name="array">array</paramref> of its contents so that a subsequent caller using the <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"></see> method will not see the content of the previous caller. If <paramref name="clearArray">clearArray</paramref> is set to false or if the pool will release the buffer, the array&amp;#39;s contents are left unchanged.</param>
</member>
<member name="P:System.Buffers.ArrayPool`1.Shared">
<summary>Gets a shared <see cref="T:System.Buffers.ArrayPool`1"></see> instance.</summary>
<returns>A shared <see cref="System.Buffers.ArrayPool`1"></see> instance.</returns>
</member>
</members>
</doc>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,355 @@
<?xml version="1.0" encoding="utf-8"?><doc>
<assembly>
<name>System.Memory</name>
</assembly>
<members>
<member name="T:System.Span`1">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.Span`1.#ctor(`0[])">
<param name="array"></param>
</member>
<member name="M:System.Span`1.#ctor(System.Void*,System.Int32)">
<param name="pointer"></param>
<param name="length"></param>
</member>
<member name="M:System.Span`1.#ctor(`0[],System.Int32)">
<param name="array"></param>
<param name="start"></param>
</member>
<member name="M:System.Span`1.#ctor(`0[],System.Int32,System.Int32)">
<param name="array"></param>
<param name="start"></param>
<param name="length"></param>
</member>
<member name="M:System.Span`1.Clear">
</member>
<member name="M:System.Span`1.CopyTo(System.Span{`0})">
<param name="destination"></param>
</member>
<member name="M:System.Span`1.DangerousCreate(System.Object,`0@,System.Int32)">
<param name="obj"></param>
<param name="objectData"></param>
<param name="length"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.DangerousGetPinnableReference">
<returns></returns>
</member>
<member name="P:System.Span`1.Empty">
<returns></returns>
</member>
<member name="M:System.Span`1.Equals(System.Object)">
<param name="obj"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.Fill(`0)">
<param name="value"></param>
</member>
<member name="M:System.Span`1.GetHashCode">
<returns></returns>
</member>
<member name="P:System.Span`1.IsEmpty">
<returns></returns>
</member>
<member name="P:System.Span`1.Item(System.Int32)">
<param name="index"></param>
<returns></returns>
</member>
<member name="P:System.Span`1.Length">
<returns></returns>
</member>
<member name="M:System.Span`1.op_Equality(System.Span{`0},System.Span{`0})">
<param name="left"></param>
<param name="right"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.op_Implicit(System.ArraySegment{T})~System.Span{T}">
<param name="arraySegment"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.op_Implicit(System.Span{T})~System.ReadOnlySpan{T}">
<param name="span"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.op_Implicit(T[])~System.Span{T}">
<param name="array"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.op_Inequality(System.Span{`0},System.Span{`0})">
<param name="left"></param>
<param name="right"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.Slice(System.Int32)">
<param name="start"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.Slice(System.Int32,System.Int32)">
<param name="start"></param>
<param name="length"></param>
<returns></returns>
</member>
<member name="M:System.Span`1.ToArray">
<returns></returns>
</member>
<member name="M:System.Span`1.TryCopyTo(System.Span{`0})">
<param name="destination"></param>
<returns></returns>
</member>
<member name="T:System.SpanExtensions">
</member>
<member name="M:System.SpanExtensions.AsBytes``1(System.ReadOnlySpan{``0})">
<param name="source"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.AsBytes``1(System.Span{``0})">
<param name="source"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.AsSpan(System.String)">
<param name="text"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.AsSpan``1(System.ArraySegment{``0})">
<param name="arraySegment"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.AsSpan``1(``0[])">
<param name="array"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.CopyTo``1(``0[],System.Span{``0})">
<param name="array"></param>
<param name="destination"></param>
<typeparam name="T"></typeparam>
</member>
<member name="M:System.SpanExtensions.IndexOf(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="span"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf(System.Span{System.Byte},System.Byte)">
<param name="span"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf(System.ReadOnlySpan{System.Byte},System.Byte)">
<param name="span"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="span"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})">
<param name="span"></param>
<param name="value"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf``1(System.ReadOnlySpan{``0},``0)">
<param name="span"></param>
<param name="value"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf``1(System.Span{``0},System.ReadOnlySpan{``0})">
<param name="span"></param>
<param name="value"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOf``1(System.Span{``0},``0)">
<param name="span"></param>
<param name="value"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.Byte,System.Byte,System.Byte)">
<param name="span"></param>
<param name="value0"></param>
<param name="value1"></param>
<param name="value2"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.Byte,System.Byte,System.Byte)">
<param name="span"></param>
<param name="value0"></param>
<param name="value1"></param>
<param name="value2"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.Byte,System.Byte)">
<param name="span"></param>
<param name="value0"></param>
<param name="value1"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="span"></param>
<param name="values"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="span"></param>
<param name="values"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.Byte,System.Byte)">
<param name="span"></param>
<param name="value0"></param>
<param name="value1"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.NonPortableCast``2(System.ReadOnlySpan{``0})">
<param name="source"></param>
<typeparam name="TFrom"></typeparam>
<typeparam name="TTo"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.NonPortableCast``2(System.Span{``0})">
<param name="source"></param>
<typeparam name="TFrom"></typeparam>
<typeparam name="TTo"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.SequenceEqual(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="first"></param>
<param name="second"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.SequenceEqual(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="first"></param>
<param name="second"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.SequenceEqual``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})">
<param name="first"></param>
<param name="second"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.SequenceEqual``1(System.Span{``0},System.ReadOnlySpan{``0})">
<param name="first"></param>
<param name="second"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.StartsWith(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="span"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.StartsWith(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
<param name="span"></param>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.StartsWith``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})">
<param name="span"></param>
<param name="value"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:System.SpanExtensions.StartsWith``1(System.Span{``0},System.ReadOnlySpan{``0})">
<param name="span"></param>
<param name="value"></param>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="T:System.ReadOnlySpan`1">
<typeparam name="T"></typeparam>
</member>
<member name="M:System.ReadOnlySpan`1.#ctor(`0[])">
<param name="array"></param>
</member>
<member name="M:System.ReadOnlySpan`1.#ctor(System.Void*,System.Int32)">
<param name="pointer"></param>
<param name="length"></param>
</member>
<member name="M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32)">
<param name="array"></param>
<param name="start"></param>
</member>
<member name="M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32,System.Int32)">
<param name="array"></param>
<param name="start"></param>
<param name="length"></param>
</member>
<member name="M:System.ReadOnlySpan`1.CopyTo(System.Span{`0})">
<param name="destination"></param>
</member>
<member name="M:System.ReadOnlySpan`1.DangerousCreate(System.Object,`0@,System.Int32)">
<param name="obj"></param>
<param name="objectData"></param>
<param name="length"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.DangerousGetPinnableReference">
<returns></returns>
</member>
<member name="P:System.ReadOnlySpan`1.Empty">
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.Equals(System.Object)">
<param name="obj"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.GetHashCode">
<returns></returns>
</member>
<member name="P:System.ReadOnlySpan`1.IsEmpty">
<returns></returns>
</member>
<member name="P:System.ReadOnlySpan`1.Item(System.Int32)">
<param name="index"></param>
<returns></returns>
</member>
<member name="P:System.ReadOnlySpan`1.Length">
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.op_Equality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0})">
<param name="left"></param>
<param name="right"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.op_Implicit(System.ArraySegment{T})~System.ReadOnlySpan{T}">
<param name="arraySegment"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.op_Implicit(T[])~System.ReadOnlySpan{T}">
<param name="array"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.op_Inequality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0})">
<param name="left"></param>
<param name="right"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.Slice(System.Int32)">
<param name="start"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.Slice(System.Int32,System.Int32)">
<param name="start"></param>
<param name="length"></param>
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.ToArray">
<returns></returns>
</member>
<member name="M:System.ReadOnlySpan`1.TryCopyTo(System.Span{`0})">
<param name="destination"></param>
<returns></returns>
</member>
</members>
</doc>

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.