diff --git a/SalesPacking_MES_API_Project/bin/Debug/BouncyCastle.Crypto.dll b/SalesPacking_MES_API_Project/bin/Debug/BouncyCastle.Crypto.dll
new file mode 100644
index 0000000..7a8034b
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/BouncyCastle.Crypto.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Config/CheckConfig.ini b/SalesPacking_MES_API_Project/bin/Debug/Config/CheckConfig.ini
index f6c96ec..b99acd7 100644
--- a/SalesPacking_MES_API_Project/bin/Debug/Config/CheckConfig.ini
+++ b/SalesPacking_MES_API_Project/bin/Debug/Config/CheckConfig.ini
@@ -1 +1 @@
-True^False^False^True
\ No newline at end of file
+True^True^True^True
\ No newline at end of file
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Config/ComportConfig.ini b/SalesPacking_MES_API_Project/bin/Debug/Config/ComportConfig.ini
index 7a8d474..56a5aef 100644
--- a/SalesPacking_MES_API_Project/bin/Debug/Config/ComportConfig.ini
+++ b/SalesPacking_MES_API_Project/bin/Debug/Config/ComportConfig.ini
@@ -1 +1 @@
-^1^0^2^0^0
\ No newline at end of file
+^0^0^2^0^0
\ No newline at end of file
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Config/DivideConfig.ini b/SalesPacking_MES_API_Project/bin/Debug/Config/DivideConfig.ini
index 7dcbf26..364622f 100644
--- a/SalesPacking_MES_API_Project/bin/Debug/Config/DivideConfig.ini
+++ b/SalesPacking_MES_API_Project/bin/Debug/Config/DivideConfig.ini
@@ -1 +1 @@
-1^E040221^ORD^60^60^10000
\ No newline at end of file
+1^E040221^ORD^50^50^10000
\ No newline at end of file
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Google.Protobuf.dll b/SalesPacking_MES_API_Project/bin/Debug/Google.Protobuf.dll
new file mode 100644
index 0000000..3683dc8
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/Google.Protobuf.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Google.Protobuf.xml b/SalesPacking_MES_API_Project/bin/Debug/Google.Protobuf.xml
new file mode 100644
index 0000000..641fa48
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/Google.Protobuf.xml
@@ -0,0 +1,7548 @@
+
+
+
+ Google.Protobuf
+
+
+
+
+ Provides a utility routine to copy small arrays much more quickly than Buffer.BlockCopy
+
+
+
+
+ The threshold above which you should use Buffer.BlockCopy rather than ByteArray.Copy
+
+
+
+
+ Determines which copy routine to use based on the number of bytes to be copied.
+
+
+
+
+ Reverses the order of bytes in the array
+
+
+
+
+ Immutable array of bytes.
+
+
+
+
+ Unsafe operations that can cause IO Failure and/or other catestrophic side-effects.
+
+
+
+
+ Constructs a new ByteString from the given byte array. The array is
+ *not* copied, and must not be modified after this constructor is called.
+
+
+
+
+ Provides direct, unrestricted access to the bytes contained in this instance.
+ You must not modify or resize the byte array returned by this method.
+
+
+
+
+ Internal use only. Ensure that the provided array is not mutated and belongs to this instance.
+
+
+
+
+ Constructs a new ByteString from the given byte array. The array is
+ *not* copied, and must not be modified after this constructor is called.
+
+
+
+
+ Returns an empty ByteString.
+
+
+
+
+ Returns the length of this ByteString in bytes.
+
+
+
+
+ Returns true if this byte string is empty, false otherwise.
+
+
+
+
+ Converts this into a byte array.
+
+ The data is copied - changes to the returned array will not be reflected in this ByteString.
+ A byte array with the same data as this ByteString.
+
+
+
+ Converts this into a standard base64 representation.
+
+ A base64 representation of this ByteString.
+
+
+
+ Constructs a from the Base64 Encoded String.
+
+
+
+
+ Constructs a from data in the given stream, synchronously.
+
+ If successful, will be read completely, from the position
+ at the start of the call.
+ The stream to copy into a ByteString.
+ A ByteString with content read from the given stream.
+
+
+
+ Constructs a from data in the given stream, asynchronously.
+
+ If successful, will be read completely, from the position
+ at the start of the call.
+ The stream to copy into a ByteString.
+ The cancellation token to use when reading from the stream, if any.
+ A ByteString with content read from the given stream.
+
+
+
+ Constructs a from the given array. The contents
+ are copied, so further modifications to the array will not
+ be reflected in the returned ByteString.
+ This method can also be invoked in ByteString.CopyFrom(0xaa, 0xbb, ...) form
+ which is primarily useful for testing.
+
+
+
+
+ Constructs a from a portion of a byte array.
+
+
+
+
+ Creates a new by encoding the specified text with
+ the given encoding.
+
+
+
+
+ Creates a new by encoding the specified text in UTF-8.
+
+
+
+
+ Retuns the byte at the given index.
+
+
+
+
+ Converts this into a string by applying the given encoding.
+
+
+ This method should only be used to convert binary data which was the result of encoding
+ text with the given encoding.
+
+ The encoding to use to decode the binary data into text.
+ The result of decoding the binary data with the given decoding.
+
+
+
+ Converts this into a string by applying the UTF-8 encoding.
+
+
+ This method should only be used to convert binary data which was the result of encoding
+ text with UTF-8.
+
+ The result of decoding the binary data with the given decoding.
+
+
+
+ Returns an iterator over the bytes in this .
+
+ An iterator over the bytes in this object.
+
+
+
+ Returns an iterator over the bytes in this .
+
+ An iterator over the bytes in this object.
+
+
+
+ Creates a CodedInputStream from this ByteString's data.
+
+
+
+
+ Compares two byte strings for equality.
+
+ The first byte string to compare.
+ The second byte string to compare.
+ true if the byte strings are equal; false otherwise.
+
+
+
+ Compares two byte strings for inequality.
+
+ The first byte string to compare.
+ The second byte string to compare.
+ false if the byte strings are equal; true otherwise.
+
+
+
+ Compares this byte string with another object.
+
+ The object to compare this with.
+ true if refers to an equal ; false otherwise.
+
+
+
+ Returns a hash code for this object. Two equal byte strings
+ will return the same hash code.
+
+ A hash code for this object.
+
+
+
+ Compares this byte string with another.
+
+ The to compare this with.
+ true if refers to an equal byte string; false otherwise.
+
+
+
+ Used internally by CodedOutputStream to avoid creating a copy for the write
+
+
+
+
+ Copies the entire byte array to the destination array provided at the offset specified.
+
+
+
+
+ Writes the entire byte array to the provided stream
+
+
+
+
+ Reads and decodes protocol message fields.
+
+
+
+ This class is generally used by generated code to read appropriate
+ primitives from the stream. It effectively encapsulates the lowest
+ levels of protocol buffer format.
+
+
+ Repeated fields and map fields are not handled by this class; use
+ and to serialize such fields.
+
+
+
+
+
+ Whether to leave the underlying stream open when disposing of this stream.
+ This is always true when there's no stream.
+
+
+
+
+ Buffer of data read from the stream or provided at construction time.
+
+
+
+
+ The index of the buffer at which we need to refill from the stream (if there is one).
+
+
+
+
+ The position within the current buffer (i.e. the next byte to read)
+
+
+
+
+ The stream to read further input from, or null if the byte array buffer was provided
+ directly on construction, with no further data available.
+
+
+
+
+ The last tag we read. 0 indicates we've read to the end of the stream
+ (or haven't read anything yet).
+
+
+
+
+ The next tag, used to store the value read by PeekTag.
+
+
+
+
+ The total number of bytes read before the current buffer. The
+ total bytes read up to the current position can be computed as
+ totalBytesRetired + bufferPos.
+
+
+
+
+ The absolute position of the end of the current message.
+
+
+
+
+ Creates a new CodedInputStream reading data from the given byte array.
+
+
+
+
+ Creates a new that reads from the given byte array slice.
+
+
+
+
+ Creates a new reading data from the given stream, which will be disposed
+ when the returned object is disposed.
+
+ The stream to read from.
+
+
+
+ Creates a new reading data from the given stream.
+
+ The stream to read from.
+ true to leave open when the returned
+ is disposed; false to dispose of the given stream when the
+ returned object is disposed.
+
+
+
+ Creates a new CodedInputStream reading data from the given
+ stream and buffer, using the default limits.
+
+
+
+
+ Creates a new CodedInputStream reading data from the given
+ stream and buffer, using the specified limits.
+
+
+ This chains to the version with the default limits instead of vice versa to avoid
+ having to check that the default values are valid every time.
+
+
+
+
+ Creates a with the specified size and recursion limits, reading
+ from an input stream.
+
+
+ This method exists separately from the constructor to reduce the number of constructor overloads.
+ It is likely to be used considerably less frequently than the constructors, as the default limits
+ are suitable for most use cases.
+
+ The input stream to read from
+ The total limit of data to read from the stream.
+ The maximum recursion depth to allow while reading.
+ A CodedInputStream reading from with the specified size
+ and recursion limits.
+
+
+
+ Returns the current position in the input stream, or the position in the input buffer
+
+
+
+
+ Returns the last tag read, or 0 if no tags have been read or we've read beyond
+ the end of the stream.
+
+
+
+
+ Returns the size limit for this stream.
+
+
+ This limit is applied when reading from the underlying stream, as a sanity check. It is
+ not applied when reading from a byte array data source without an underlying stream.
+ The default value is Int32.MaxValue.
+
+
+ The size limit.
+
+
+
+
+ Returns the recursion limit for this stream. This limit is applied whilst reading messages,
+ to avoid maliciously-recursive data.
+
+
+ The default limit is 64.
+
+
+ The recursion limit for this stream.
+
+
+
+
+ Internal-only property; when set to true, unknown fields will be discarded while parsing.
+
+
+
+
+ Disposes of this instance, potentially closing any underlying stream.
+
+
+ As there is no flushing to perform here, disposing of a which
+ was constructed with the leaveOpen option parameter set to true (or one which
+ was constructed to read from a byte array) has no effect.
+
+
+
+
+ Verifies that the last call to ReadTag() returned tag 0 - in other words,
+ we've reached the end of the stream when we expected to.
+
+ The
+ tag read was not the one specified
+
+
+
+ Peeks at the next field tag. This is like calling , but the
+ tag is not consumed. (So a subsequent call to will return the
+ same value.)
+
+
+
+
+ Reads a field tag, returning the tag of 0 for "end of stream".
+
+
+ If this method returns 0, it doesn't necessarily mean the end of all
+ the data in this CodedInputStream; it may be the end of the logical stream
+ for an embedded message, for example.
+
+ The next field tag, or 0 for end of stream. (0 is never a valid tag.)
+
+
+
+ Skips the data for the field with the tag we've just read.
+ This should be called directly after , when
+ the caller wishes to skip an unknown field.
+
+
+ This method throws if the last-read tag was an end-group tag.
+ If a caller wishes to skip a group, they should skip the whole group, by calling this method after reading the
+ start-group tag. This behavior allows callers to call this method on any field they don't understand, correctly
+ resulting in an error if an end-group tag has not been paired with an earlier start-group tag.
+
+ The last tag was an end-group tag
+ The last read operation read to the end of the logical stream
+
+
+
+ Skip a group.
+
+
+
+
+ Reads a double field from the stream.
+
+
+
+
+ Reads a float field from the stream.
+
+
+
+
+ Reads a uint64 field from the stream.
+
+
+
+
+ Reads an int64 field from the stream.
+
+
+
+
+ Reads an int32 field from the stream.
+
+
+
+
+ Reads a fixed64 field from the stream.
+
+
+
+
+ Reads a fixed32 field from the stream.
+
+
+
+
+ Reads a bool field from the stream.
+
+
+
+
+ Reads a string field from the stream.
+
+
+
+
+ Reads an embedded message field value from the stream.
+
+
+
+
+ Reads a bytes field value from the stream.
+
+
+
+
+ Reads a uint32 field value from the stream.
+
+
+
+
+ Reads an enum field value from the stream.
+
+
+
+
+ Reads an sfixed32 field value from the stream.
+
+
+
+
+ Reads an sfixed64 field value from the stream.
+
+
+
+
+ Reads an sint32 field value from the stream.
+
+
+
+
+ Reads an sint64 field value from the stream.
+
+
+
+
+ Reads a length for length-delimited data.
+
+
+ This is internally just reading a varint, but this method exists
+ to make the calling code clearer.
+
+
+
+
+ Peeks at the next tag in the stream. If it matches ,
+ the tag is consumed and the method returns true; otherwise, the
+ stream is left in the original position and the method returns false.
+
+
+
+
+ Same code as ReadRawVarint32, but read each byte individually, checking for
+ buffer overflow.
+
+
+
+
+ Reads a raw Varint from the stream. If larger than 32 bits, discard the upper bits.
+ This method is optimised for the case where we've got lots of data in the buffer.
+ That means we can check the size just once, then just read directly from the buffer
+ without constant rechecking of the buffer length.
+
+
+
+
+ Reads a varint from the input one byte at a time, so that it does not
+ read any bytes after the end of the varint. If you simply wrapped the
+ stream in a CodedInputStream and used ReadRawVarint32(Stream)
+ then you would probably end up reading past the end of the varint since
+ CodedInputStream buffers its input.
+
+
+
+
+
+
+ Reads a raw varint from the stream.
+
+
+
+
+ Reads a 32-bit little-endian integer from the stream.
+
+
+
+
+ Reads a 64-bit little-endian integer from the stream.
+
+
+
+
+ Decode a 32-bit value with ZigZag encoding.
+
+
+ ZigZag encodes signed integers into values that can be efficiently
+ encoded with varint. (Otherwise, negative values must be
+ sign-extended to 64 bits to be varint encoded, thus always taking
+ 10 bytes on the wire.)
+
+
+
+
+ Decode a 32-bit value with ZigZag encoding.
+
+
+ ZigZag encodes signed integers into values that can be efficiently
+ encoded with varint. (Otherwise, negative values must be
+ sign-extended to 64 bits to be varint encoded, thus always taking
+ 10 bytes on the wire.)
+
+
+
+
+ Sets currentLimit to (current position) + byteLimit. This is called
+ when descending into a length-delimited embedded message. The previous
+ limit is returned.
+
+ The old limit.
+
+
+
+ Discards the current limit, returning the previous limit.
+
+
+
+
+ Returns whether or not all the data before the limit has been read.
+
+
+
+
+
+ Returns true if the stream has reached the end of the input. This is the
+ case if either the end of the underlying input source has been reached or
+ the stream has reached a limit created using PushLimit.
+
+
+
+
+ Called when buffer is empty to read more bytes from the
+ input. If is true, RefillBuffer() gurantees that
+ either there will be at least one byte in the buffer when it returns
+ or it will throw an exception. If is false,
+ RefillBuffer() returns false if no more bytes were available.
+
+
+
+
+
+
+ Read one byte from the input.
+
+
+ the end of the stream or the current limit was reached
+
+
+
+
+ Reads a fixed size of bytes from the input.
+
+
+ the end of the stream or the current limit was reached
+
+
+
+
+ Reads and discards bytes.
+
+ the end of the stream
+ or the current limit was reached
+
+
+
+ Abstraction of skipping to cope with streams which can't really skip.
+
+
+
+
+ Encodes and writes protocol message fields.
+
+
+
+ This class is generally used by generated code to write appropriate
+ primitives to the stream. It effectively encapsulates the lowest
+ levels of protocol buffer format. Unlike some other implementations,
+ this does not include combined "write tag and value" methods. Generated
+ code knows the exact byte representations of the tags they're going to write,
+ so there's no need to re-encode them each time. Manually-written code calling
+ this class should just call one of the WriteTag overloads before each value.
+
+
+ Repeated fields and map fields are not handled by this class; use RepeatedField<T>
+ and MapField<TKey, TValue> to serialize such fields.
+
+
+
+
+
+ Computes the number of bytes that would be needed to encode a
+ double field, including the tag.
+
+
+
+
+ Computes the number of bytes that would be needed to encode a
+ float field, including the tag.
+
+
+
+
+ Computes the number of bytes that would be needed to encode a
+ uint64 field, including the tag.
+
+
+
+
+ Computes the number of bytes that would be needed to encode an
+ int64 field, including the tag.
+
+
+
+
+ Computes the number of bytes that would be needed to encode an
+ int32 field, including the tag.
+
+
+
+
+ Computes the number of bytes that would be needed to encode a
+ fixed64 field, including the tag.
+
+
+
+
+ Computes the number of bytes that would be needed to encode a
+ fixed32 field, including the tag.
+
+
+
+
+ Computes the number of bytes that would be needed to encode a
+ bool field, including the tag.
+
+
+
+
+ Computes the number of bytes that would be needed to encode a
+ string field, including the tag.
+
+
+
+
+ Computes the number of bytes that would be needed to encode a
+ group field, including the tag.
+
+
+
+
+ Computes the number of bytes that would be needed to encode an
+ embedded message field, including the tag.
+
+
+
+
+ Computes the number of bytes that would be needed to encode a
+ bytes field, including the tag.
+
+
+
+
+ Computes the number of bytes that would be needed to encode a
+ uint32 field, including the tag.
+
+
+
+
+ Computes the number of bytes that would be needed to encode a
+ enum field, including the tag. The caller is responsible for
+ converting the enum value to its numeric value.
+
+
+
+
+ Computes the number of bytes that would be needed to encode an
+ sfixed32 field, including the tag.
+
+
+
+
+ Computes the number of bytes that would be needed to encode an
+ sfixed64 field, including the tag.
+
+
+
+
+ Computes the number of bytes that would be needed to encode an
+ sint32 field, including the tag.
+
+
+
+
+ Computes the number of bytes that would be needed to encode an
+ sint64 field, including the tag.
+
+
+
+
+ Computes the number of bytes that would be needed to encode a length,
+ as written by .
+
+
+
+
+ Computes the number of bytes that would be needed to encode a varint.
+
+
+
+
+ Computes the number of bytes that would be needed to encode a varint.
+
+
+
+
+ Computes the number of bytes that would be needed to encode a tag.
+
+
+
+
+ The buffer size used by CreateInstance(Stream).
+
+
+
+
+ Creates a new CodedOutputStream that writes directly to the given
+ byte array. If more bytes are written than fit in the array,
+ OutOfSpaceException will be thrown.
+
+
+
+
+ Creates a new CodedOutputStream that writes directly to the given
+ byte array slice. If more bytes are written than fit in the array,
+ OutOfSpaceException will be thrown.
+
+
+
+
+ Creates a new which write to the given stream, and disposes of that
+ stream when the returned CodedOutputStream is disposed.
+
+ The stream to write to. It will be disposed when the returned CodedOutputStream is disposed.
+
+
+
+ Creates a new CodedOutputStream which write to the given stream and uses
+ the specified buffer size.
+
+ The stream to write to. It will be disposed when the returned CodedOutputStream is disposed.
+ The size of buffer to use internally.
+
+
+
+ Creates a new CodedOutputStream which write to the given stream.
+
+ The stream to write to.
+ If true, is left open when the returned CodedOutputStream is disposed;
+ if false, the provided stream is disposed as well.
+
+
+
+ Creates a new CodedOutputStream which write to the given stream and uses
+ the specified buffer size.
+
+ The stream to write to.
+ The size of buffer to use internally.
+ If true, is left open when the returned CodedOutputStream is disposed;
+ if false, the provided stream is disposed as well.
+
+
+
+ Returns the current position in the stream, or the position in the output buffer
+
+
+
+
+ Writes a double field value, without a tag, to the stream.
+
+ The value to write
+
+
+
+ Writes a float field value, without a tag, to the stream.
+
+ The value to write
+
+
+
+ Writes a uint64 field value, without a tag, to the stream.
+
+ The value to write
+
+
+
+ Writes an int64 field value, without a tag, to the stream.
+
+ The value to write
+
+
+
+ Writes an int32 field value, without a tag, to the stream.
+
+ The value to write
+
+
+
+ Writes a fixed64 field value, without a tag, to the stream.
+
+ The value to write
+
+
+
+ Writes a fixed32 field value, without a tag, to the stream.
+
+ The value to write
+
+
+
+ Writes a bool field value, without a tag, to the stream.
+
+ The value to write
+
+
+
+ Writes a string field value, without a tag, to the stream.
+ The data is length-prefixed.
+
+ The value to write
+
+
+
+ Writes a message, without a tag, to the stream.
+ The data is length-prefixed.
+
+ The value to write
+
+
+
+ Write a byte string, without a tag, to the stream.
+ The data is length-prefixed.
+
+ The value to write
+
+
+
+ Writes a uint32 value, without a tag, to the stream.
+
+ The value to write
+
+
+
+ Writes an enum value, without a tag, to the stream.
+
+ The value to write
+
+
+
+ Writes an sfixed32 value, without a tag, to the stream.
+
+ The value to write.
+
+
+
+ Writes an sfixed64 value, without a tag, to the stream.
+
+ The value to write
+
+
+
+ Writes an sint32 value, without a tag, to the stream.
+
+ The value to write
+
+
+
+ Writes an sint64 value, without a tag, to the stream.
+
+ The value to write
+
+
+
+ Writes a length (in bytes) for length-delimited data.
+
+
+ This method simply writes a rawint, but exists for clarity in calling code.
+
+ Length value, in bytes.
+
+
+
+ Encodes and writes a tag.
+
+ The number of the field to write the tag for
+ The wire format type of the tag to write
+
+
+
+ Writes an already-encoded tag.
+
+ The encoded tag
+
+
+
+ Writes the given single-byte tag directly to the stream.
+
+ The encoded tag
+
+
+
+ Writes the given two-byte tag directly to the stream.
+
+ The first byte of the encoded tag
+ The second byte of the encoded tag
+
+
+
+ Writes the given three-byte tag directly to the stream.
+
+ The first byte of the encoded tag
+ The second byte of the encoded tag
+ The third byte of the encoded tag
+
+
+
+ Writes the given four-byte tag directly to the stream.
+
+ The first byte of the encoded tag
+ The second byte of the encoded tag
+ The third byte of the encoded tag
+ The fourth byte of the encoded tag
+
+
+
+ Writes the given five-byte tag directly to the stream.
+
+ The first byte of the encoded tag
+ The second byte of the encoded tag
+ The third byte of the encoded tag
+ The fourth byte of the encoded tag
+ The fifth byte of the encoded tag
+
+
+
+ Writes a 32 bit value as a varint. The fast route is taken when
+ there's enough buffer space left to whizz through without checking
+ for each byte; otherwise, we resort to calling WriteRawByte each time.
+
+
+
+
+ Writes out an array of bytes.
+
+
+
+
+ Writes out part of an array of bytes.
+
+
+
+
+ Encode a 32-bit value with ZigZag encoding.
+
+
+ ZigZag encodes signed integers into values that can be efficiently
+ encoded with varint. (Otherwise, negative values must be
+ sign-extended to 64 bits to be varint encoded, thus always taking
+ 10 bytes on the wire.)
+
+
+
+
+ Encode a 64-bit value with ZigZag encoding.
+
+
+ ZigZag encodes signed integers into values that can be efficiently
+ encoded with varint. (Otherwise, negative values must be
+ sign-extended to 64 bits to be varint encoded, thus always taking
+ 10 bytes on the wire.)
+
+
+
+
+ Indicates that a CodedOutputStream wrapping a flat byte array
+ ran out of space.
+
+
+
+
+ Flushes any buffered data and optionally closes the underlying stream, if any.
+
+
+
+ By default, any underlying stream is closed by this method. To configure this behaviour,
+ use a constructor overload with a leaveOpen parameter. If this instance does not
+ have an underlying stream, this method does nothing.
+
+
+ For the sake of efficiency, calling this method does not prevent future write calls - but
+ if a later write ends up writing to a stream which has been disposed, that is likely to
+ fail. It is recommend that you not call any other methods after this.
+
+
+
+
+
+ Flushes any buffered data to the underlying stream (if there is one).
+
+
+
+
+ Verifies that SpaceLeft returns zero. It's common to create a byte array
+ that is exactly big enough to hold a message, then write to it with
+ a CodedOutputStream. Calling CheckNoSpaceLeft after writing verifies that
+ the message was actually as big as expected, which can help bugs.
+
+
+
+
+ If writing to a flat array, returns the space left in the array. Otherwise,
+ throws an InvalidOperationException.
+
+
+
+
+ Utility to compare if two Lists are the same, and the hash code
+ of a List.
+
+
+
+
+ Checks if two lists are equal.
+
+
+
+
+ Gets the list's hash code.
+
+
+
+
+ Representation of a map field in a Protocol Buffer message.
+
+ Key type in the map. Must be a type supported by Protocol Buffer map keys.
+ Value type in the map. Must be a type supported by Protocol Buffers.
+
+
+ For string keys, the equality comparison is provided by .
+
+
+ Null values are not permitted in the map, either for wrapper types or regular messages.
+ If a map is deserialized from a data stream and the value is missing from an entry, a default value
+ is created instead. For primitive types, that is the regular default value (0, the empty string and so
+ on); for message types, an empty instance of the message is created, as if the map entry contained a 0-length
+ encoded value for the field.
+
+
+ This implementation does not generally prohibit the use of key/value types which are not
+ supported by Protocol Buffers (e.g. using a key type of byte
) but nor does it guarantee
+ that all operations will work in such cases.
+
+
+ The order in which entries are returned when iterating over this object is undefined, and may change
+ in future versions.
+
+
+
+
+
+ Creates a deep clone of this object.
+
+
+ A deep clone of this object.
+
+
+
+
+ Adds the specified key/value pair to the map.
+
+
+ This operation fails if the key already exists in the map. To replace an existing entry, use the indexer.
+
+ The key to add
+ The value to add.
+ The given key already exists in map.
+
+
+
+ Determines whether the specified key is present in the map.
+
+ The key to check.
+ true if the map contains the given key; false otherwise.
+
+
+
+ Removes the entry identified by the given key from the map.
+
+ The key indicating the entry to remove from the map.
+ true if the map contained the given key before the entry was removed; false otherwise.
+
+
+
+ Gets the value associated with the specified key.
+
+ The key whose value to get.
+ When this method returns, the value associated with the specified key, if the key is found;
+ otherwise, the default value for the type of the parameter.
+ This parameter is passed uninitialized.
+ true if the map contains an element with the specified key; otherwise, false.
+
+
+
+ Gets or sets the value associated with the specified key.
+
+ The key of the value to get or set.
+ The property is retrieved and key does not exist in the collection.
+ The value associated with the specified key. If the specified key is not found,
+ a get operation throws a , and a set operation creates a new element with the specified key.
+
+
+
+ Gets a collection containing the keys in the map.
+
+
+
+
+ Gets a collection containing the values in the map.
+
+
+
+
+ Adds the specified entries to the map. The keys and values are not automatically cloned.
+
+ The entries to add to the map.
+
+
+
+ Returns an enumerator that iterates through the collection.
+
+
+ An enumerator that can be used to iterate through the collection.
+
+
+
+
+ Returns an enumerator that iterates through a collection.
+
+
+ An object that can be used to iterate through the collection.
+
+
+
+
+ Adds the specified item to the map.
+
+ The item to add to the map.
+
+
+
+ Removes all items from the map.
+
+
+
+
+ Determines whether map contains an entry equivalent to the given key/value pair.
+
+ The key/value pair to find.
+
+
+
+
+ Copies the key/value pairs in this map to an array.
+
+ The array to copy the entries into.
+ The index of the array at which to start copying values.
+
+
+
+ Removes the specified key/value pair from the map.
+
+ Both the key and the value must be found for the entry to be removed.
+ The key/value pair to remove.
+ true if the key/value pair was found and removed; false otherwise.
+
+
+
+ Gets the number of elements contained in the map.
+
+
+
+
+ Gets a value indicating whether the map is read-only.
+
+
+
+
+ Determines whether the specified , is equal to this instance.
+
+ The to compare with this instance.
+
+ true if the specified is equal to this instance; otherwise, false.
+
+
+
+
+ Returns a hash code for this instance.
+
+
+ A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
+
+
+
+
+ Compares this map with another for equality.
+
+
+ The order of the key/value pairs in the maps is not deemed significant in this comparison.
+
+ The map to compare this with.
+ true if refers to an equal map; false otherwise.
+
+
+
+ Adds entries to the map from the given stream.
+
+
+ It is assumed that the stream is initially positioned after the tag specified by the codec.
+ This method will continue reading entries from the stream until the end is reached, or
+ a different tag is encountered.
+
+ Stream to read from
+ Codec describing how the key/value pairs are encoded
+
+
+
+ Writes the contents of this map to the given coded output stream, using the specified codec
+ to encode each entry.
+
+ The output stream to write to.
+ The codec to use for each entry.
+
+
+
+ Calculates the size of this map based on the given entry codec.
+
+ The codec to use to encode each entry.
+
+
+
+
+ Returns a string representation of this repeated field, in the same
+ way as it would be represented by the default JSON formatter.
+
+
+
+
+ A codec for a specific map field. This contains all the information required to encode and
+ decode the nested messages.
+
+
+
+
+ Creates a new entry codec based on a separate key codec and value codec,
+ and the tag to use for each map entry.
+
+ The key codec.
+ The value codec.
+ The map tag to use to introduce each map entry.
+
+
+
+ The tag used in the enclosing message to indicate map entries.
+
+
+
+
+ A mutable message class, used for parsing and serializing. This
+ delegates the work to a codec, but implements the interface
+ for interop with and .
+ This is nested inside Codec as it's tightly coupled to the associated codec,
+ and it's simpler if it has direct access to all its fields.
+
+
+
+
+ Provides a central place to implement equality comparisons, primarily for bitwise float/double equality.
+
+
+
+
+ Returns an equality comparer for suitable for Protobuf equality comparisons.
+ This is usually just the default equality comparer for the type, but floating point numbers are compared
+ bitwise.
+
+ The type of equality comparer to return.
+ The equality comparer.
+
+
+
+ Returns an equality comparer suitable for comparing 64-bit floating point values, by bitwise comparison.
+ (NaN values are considered equal, but only when they have the same representation.)
+
+
+
+
+ Returns an equality comparer suitable for comparing 32-bit floating point values, by bitwise comparison.
+ (NaN values are considered equal, but only when they have the same representation.)
+
+
+
+
+ Returns an equality comparer suitable for comparing nullable 64-bit floating point values, by bitwise comparison.
+ (NaN values are considered equal, but only when they have the same representation.)
+
+
+
+
+ Returns an equality comparer suitable for comparing nullable 32-bit floating point values, by bitwise comparison.
+ (NaN values are considered equal, but only when they have the same representation.)
+
+
+
+
+ Read-only wrapper around another dictionary.
+
+
+
+
+ The contents of a repeated field: essentially, a collection with some extra
+ restrictions (no null values) and capabilities (deep cloning).
+
+
+ This implementation does not generally prohibit the use of types which are not
+ supported by Protocol Buffers but nor does it guarantee that all operations will work in such cases.
+
+ The element type of the repeated field.
+
+
+
+ Creates a deep clone of this repeated field.
+
+
+ If the field type is
+ a message type, each element is also cloned; otherwise, it is
+ assumed that the field type is primitive (including string and
+ bytes, both of which are immutable) and so a simple copy is
+ equivalent to a deep clone.
+
+ A deep clone of this repeated field.
+
+
+
+ Adds the entries from the given input stream, decoding them with the specified codec.
+
+ The input stream to read from.
+ The codec to use in order to read each entry.
+
+
+
+ Calculates the size of this collection based on the given codec.
+
+ The codec to use when encoding each field.
+ The number of bytes that would be written to a by ,
+ using the same codec.
+
+
+
+ Writes the contents of this collection to the given ,
+ encoding each value using the specified codec.
+
+ The output stream to write to.
+ The codec to use when encoding each value.
+
+
+
+ Adds the specified item to the collection.
+
+ The item to add.
+
+
+
+ Removes all items from the collection.
+
+
+
+
+ Determines whether this collection contains the given item.
+
+ The item to find.
+ true if this collection contains the given item; false otherwise.
+
+
+
+ Copies this collection to the given array.
+
+ The array to copy to.
+ The first index of the array to copy to.
+
+
+
+ Removes the specified item from the collection
+
+ The item to remove.
+ true if the item was found and removed; false otherwise.
+
+
+
+ Gets the number of elements contained in the collection.
+
+
+
+
+ Gets a value indicating whether the collection is read-only.
+
+
+
+
+ Adds all of the specified values into this collection.
+
+ The values to add to this collection.
+
+
+
+ Adds all of the specified values into this collection. This method is present to
+ allow repeated fields to be constructed from queries within collection initializers.
+ Within non-collection-initializer code, consider using the equivalent
+ method instead for clarity.
+
+ The values to add to this collection.
+
+
+
+ Returns an enumerator that iterates through the collection.
+
+
+ An enumerator that can be used to iterate through the collection.
+
+
+
+
+ Determines whether the specified , is equal to this instance.
+
+ The to compare with this instance.
+
+ true if the specified is equal to this instance; otherwise, false.
+
+
+
+
+ Returns an enumerator that iterates through a collection.
+
+
+ An object that can be used to iterate through the collection.
+
+
+
+
+ Returns a hash code for this instance.
+
+
+ A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
+
+
+
+
+ Compares this repeated field with another for equality.
+
+ The repeated field to compare this with.
+ true if refers to an equal repeated field; false otherwise.
+
+
+
+ Returns the index of the given item within the collection, or -1 if the item is not
+ present.
+
+ The item to find in the collection.
+ The zero-based index of the item, or -1 if it is not found.
+
+
+
+ Inserts the given item at the specified index.
+
+ The index at which to insert the item.
+ The item to insert.
+
+
+
+ Removes the item at the given index.
+
+ The zero-based index of the item to remove.
+
+
+
+ Returns a string representation of this repeated field, in the same
+ way as it would be represented by the default JSON formatter.
+
+
+
+
+ Gets or sets the item at the specified index.
+
+
+ The element at the specified index.
+
+ The zero-based index of the element to get or set.
+ The item at the specified index.
+
+
+
+ Extension methods for , effectively providing
+ the familiar members from previous desktop framework versions while
+ targeting the newer releases, .NET Core etc.
+
+
+
+
+ Returns the public getter of a property, or null if there is no such getter
+ (either because it's read-only, or the getter isn't public).
+
+
+
+
+ Returns the public setter of a property, or null if there is no such setter
+ (either because it's write-only, or the setter isn't public).
+
+
+
+
+ Provides extension methods on Type that just proxy to TypeInfo.
+ These are used to support the new type system from .NET 4.5, without
+ having calls to GetTypeInfo all over the place. While the methods here are meant to be
+ broadly compatible with the desktop framework, there are some subtle differences in behaviour - but
+ they're not expected to affect our use cases. While the class is internal, that should be fine: we can
+ evaluate each new use appropriately.
+
+
+
+
+ See https://msdn.microsoft.com/en-us/library/system.type.isassignablefrom
+
+
+
+
+ Returns a representation of the public property associated with the given name in the given type,
+ including inherited properties or null if there is no such public property.
+ Here, "public property" means a property where either the getter, or the setter, or both, is public.
+
+
+
+
+ Returns a representation of the public method associated with the given name in the given type,
+ including inherited methods.
+
+
+ This has a few differences compared with Type.GetMethod in the desktop framework. It will throw
+ if there is an ambiguous match even between a private method and a public one, but it *won't* throw
+ if there are two overloads at different levels in the type hierarchy (e.g. class Base declares public void Foo(int) and
+ class Child : Base declares public void Foo(long)).
+
+ One type in the hierarchy declared more than one method with the same name
+
+
+
+ Factory methods for .
+
+
+
+
+ Retrieves a codec suitable for a string field with the given tag.
+
+ The tag.
+ A codec for the given tag.
+
+
+
+ Retrieves a codec suitable for a bytes field with the given tag.
+
+ The tag.
+ A codec for the given tag.
+
+
+
+ Retrieves a codec suitable for a bool field with the given tag.
+
+ The tag.
+ A codec for the given tag.
+
+
+
+ Retrieves a codec suitable for an int32 field with the given tag.
+
+ The tag.
+ A codec for the given tag.
+
+
+
+ Retrieves a codec suitable for an sint32 field with the given tag.
+
+ The tag.
+ A codec for the given tag.
+
+
+
+ Retrieves a codec suitable for a fixed32 field with the given tag.
+
+ The tag.
+ A codec for the given tag.
+
+
+
+ Retrieves a codec suitable for an sfixed32 field with the given tag.
+
+ The tag.
+ A codec for the given tag.
+
+
+
+ Retrieves a codec suitable for a uint32 field with the given tag.
+
+ The tag.
+ A codec for the given tag.
+
+
+
+ Retrieves a codec suitable for an int64 field with the given tag.
+
+ The tag.
+ A codec for the given tag.
+
+
+
+ Retrieves a codec suitable for an sint64 field with the given tag.
+
+ The tag.
+ A codec for the given tag.
+
+
+
+ Retrieves a codec suitable for a fixed64 field with the given tag.
+
+ The tag.
+ A codec for the given tag.
+
+
+
+ Retrieves a codec suitable for an sfixed64 field with the given tag.
+
+ The tag.
+ A codec for the given tag.
+
+
+
+ Retrieves a codec suitable for a uint64 field with the given tag.
+
+ The tag.
+ A codec for the given tag.
+
+
+
+ Retrieves a codec suitable for a float field with the given tag.
+
+ The tag.
+ A codec for the given tag.
+
+
+
+ Retrieves a codec suitable for a double field with the given tag.
+
+ The tag.
+ A codec for the given tag.
+
+
+
+ Retrieves a codec suitable for an enum field with the given tag.
+
+ The tag.
+ A conversion function from to the enum type.
+ A conversion function from the enum type to .
+ A codec for the given tag.
+
+
+
+ Retrieves a codec suitable for a message field with the given tag.
+
+ The tag.
+ A parser to use for the message type.
+ A codec for the given tag.
+
+
+
+ Creates a codec for a wrapper type of a class - which must be string or ByteString.
+
+
+
+
+ Creates a codec for a wrapper type of a struct - which must be Int32, Int64, UInt32, UInt64,
+ Bool, Single or Double.
+
+
+
+
+ Helper code to create codecs for wrapper types.
+
+
+ Somewhat ugly with all the static methods, but the conversions involved to/from nullable types make it
+ slightly tricky to improve. So long as we keep the public API (ForClassWrapper, ForStructWrapper) in place,
+ we can refactor later if we come up with something cleaner.
+
+
+
+
+ Returns a field codec which effectively wraps a value of type T in a message.
+
+
+
+
+
+
+ An encode/decode pair for a single field. This effectively encapsulates
+ all the information needed to read or write the field value from/to a coded
+ stream.
+
+
+ This class is public and has to be as it is used by generated code, but its public
+ API is very limited - just what the generated code needs to call directly.
+
+
+
+ This never writes default values to the stream, and does not address "packedness"
+ in repeated fields itself, other than to know whether or not the field *should* be packed.
+
+
+
+
+ Returns a delegate to write a value (unconditionally) to a coded output stream.
+
+
+
+
+ Returns the size calculator for just a value.
+
+
+
+
+ Returns a delegate to read a value from a coded input stream. It is assumed that
+ the stream is already positioned on the appropriate tag.
+
+
+
+
+ Returns the fixed size for an entry, or 0 if sizes vary.
+
+
+
+
+ Gets the tag of the codec.
+
+
+ The tag of the codec.
+
+
+
+
+ Default value for this codec. Usually the same for every instance of the same type, but
+ for string/ByteString wrapper fields the codec's default value is null, whereas for
+ other string/ByteString fields it's "" or ByteString.Empty.
+
+
+ The default value of the codec's type.
+
+
+
+
+ Write a tag and the given value, *if* the value is not the default.
+
+
+
+
+ Reads a value of the codec type from the given .
+
+ The input stream to read from.
+ The value read from the stream.
+
+
+
+ Calculates the size required to write the given value, with a tag,
+ if the value is not the default.
+
+
+
+
+ Class containing helpful workarounds for various platform compatibility
+
+
+
+
+ A message type that has a custom string format for diagnostic purposes.
+
+
+
+ Calling on a generated message type normally
+ returns the JSON representation. If a message type implements this interface,
+ then the method will be called instead of the regular
+ JSON formatting code, but only when ToString() is called either on the message itself
+ or on another message which contains it. This does not affect the normal JSON formatting of
+ the message.
+
+
+ For example, if you create a proto message representing a GUID, the internal
+ representation may be a bytes field or four fixed32 fields. However, when debugging
+ it may be more convenient to see a result in the same format as provides.
+
+ This interface extends to avoid it accidentally being implemented
+ on types other than messages, where it would not be used by anything in the framework.
+
+
+
+
+ Returns a string representation of this object, for diagnostic purposes.
+
+
+ This method is called when a message is formatted as part of a
+ call. It does not affect the JSON representation used by other than
+ in calls to . While it is recommended
+ that the result is valid JSON, this is never assumed by the Protobuf library.
+
+ A string representation of this object, for diagnostic purposes.
+
+
+
+ Generic interface for a deeply cloneable type.
+
+
+
+ All generated messages implement this interface, but so do some non-message types.
+ Additionally, due to the type constraint on T in ,
+ it is simpler to keep this as a separate interface.
+
+
+ The type itself, returned by the method.
+
+
+
+ Creates a deep clone of this object.
+
+ A deep clone of this object.
+
+
+
+ Interface for a Protocol Buffers message, supporting
+ basic operations required for serialization.
+
+
+
+
+ Merges the data from the specified coded input stream with the current message.
+
+ See the user guide for precise merge semantics.
+
+
+
+
+ Writes the data to the given coded output stream.
+
+ Coded output stream to write the data to. Must not be null.
+
+
+
+ Calculates the size of this message in Protocol Buffer wire format, in bytes.
+
+ The number of bytes required to write this message
+ to a coded output stream.
+
+
+
+ Descriptor for this message. All instances are expected to return the same descriptor,
+ and for generated types this will be an explicitly-implemented member, returning the
+ same value as the static property declared on the type.
+
+
+
+
+ Generic interface for a Protocol Buffers message,
+ where the type parameter is expected to be the same type as
+ the implementation class.
+
+ The message type.
+
+
+
+ Merges the given message into this one.
+
+ See the user guide for precise merge semantics.
+ The message to merge with this one. Must not be null.
+
+
+
+ Thrown when an attempt is made to parse invalid JSON, e.g. using
+ a non-string property key, or including a redundant comma. Parsing a protocol buffer
+ message represented in JSON using can throw both this
+ exception and depending on the situation. This
+ exception is only thrown for "pure JSON" errors, whereas InvalidProtocolBufferException
+ is thrown when the JSON may be valid in and of itself, but cannot be parsed as a protocol buffer
+ message.
+
+
+
+
+ Thrown when a protocol message being parsed is invalid in some way,
+ e.g. it contains a malformed varint or a negative byte length.
+
+
+
+
+ Creates an exception for an error condition of an invalid tag being encountered.
+
+
+
+
+ Reflection-based converter from messages to JSON.
+
+
+
+ Instances of this class are thread-safe, with no mutable state.
+
+
+ This is a simple start to get JSON formatting working. As it's reflection-based,
+ it's not as quick as baking calls into generated messages - but is a simpler implementation.
+ (This code is generally not heavily optimized.)
+
+
+
+
+
+ Returns a formatter using the default settings.
+
+
+
+
+ The JSON representation of the first 160 characters of Unicode.
+ Empty strings are replaced by the static constructor.
+
+
+
+
+ Creates a new formatted with the given settings.
+
+ The settings.
+
+
+
+ Formats the specified message as JSON.
+
+ The message to format.
+ The formatted message.
+
+
+
+ Formats the specified message as JSON.
+
+ The message to format.
+ The TextWriter to write the formatted message to.
+ The formatted message.
+
+
+
+ Converts a message to JSON for diagnostic purposes with no extra context.
+
+
+
+ This differs from calling on the default JSON
+ formatter in its handling of . As no type registry is available
+ in calls, the normal way of resolving the type of
+ an Any message cannot be applied. Instead, a JSON property named @value
+ is included with the base64 data from the property of the message.
+
+ The value returned by this method is only designed to be used for diagnostic
+ purposes. It may not be parsable by , and may not be parsable
+ by other Protocol Buffer implementations.
+
+ The message to format for diagnostic purposes.
+ The diagnostic-only JSON representation of the message
+
+
+
+ Writes a single value to the given writer as JSON. Only types understood by
+ Protocol Buffers can be written in this way. This method is only exposed for
+ advanced use cases; most users should be using
+ or .
+
+ The writer to write the value to. Must not be null.
+ The value to write. May be null.
+
+
+
+ Central interception point for well-known type formatting. Any well-known types which
+ don't need special handling can fall back to WriteMessage. We avoid assuming that the
+ values are using the embedded well-known types, in order to allow for dynamic messages
+ in the future.
+
+
+
+
+ Writes a string (including leading and trailing double quotes) to a builder, escaping as required.
+
+
+ Other than surrogate pair handling, this code is mostly taken from src/google/protobuf/util/internal/json_escaping.cc.
+
+
+
+
+ Settings controlling JSON formatting.
+
+
+
+
+ Default settings, as used by
+
+
+
+
+ Whether fields whose values are the default for the field type (e.g. 0 for integers)
+ should be formatted (true) or omitted (false).
+
+
+
+
+ The type registry used to format messages.
+
+
+
+
+ Whether to format enums as ints. Defaults to false.
+
+
+
+
+ Creates a new object with the specified formatting of default values
+ and an empty type registry.
+
+ true if default values (0, empty strings etc) should be formatted; false otherwise.
+
+
+
+ Creates a new object with the specified formatting of default values
+ and type registry.
+
+ true if default values (0, empty strings etc) should be formatted; false otherwise.
+ The to use when formatting messages.
+
+
+
+ Creates a new object with the specified parameters.
+
+ true if default values (0, empty strings etc) should be formatted; false otherwise.
+ The to use when formatting messages. TypeRegistry.Empty will be used if it is null.
+ true to format the enums as integers; false to format enums as enum names.
+
+
+
+ Creates a new object with the specified formatting of default values and the current settings.
+
+ true if default values (0, empty strings etc) should be formatted; false otherwise.
+
+
+
+ Creates a new object with the specified type registry and the current settings.
+
+ The to use when formatting messages.
+
+
+
+ Creates a new object with the specified enums formatting option and the current settings.
+
+ true to format the enums as integers; false to format enums as enum names.
+
+
+
+ Reflection-based converter from JSON to messages.
+
+
+
+ Instances of this class are thread-safe, with no mutable state.
+
+
+ This is a simple start to get JSON parsing working. As it's reflection-based,
+ it's not as quick as baking calls into generated messages - but is a simpler implementation.
+ (This code is generally not heavily optimized.)
+
+
+
+
+
+ Returns a formatter using the default settings.
+
+
+
+
+ Creates a new formatted with the given settings.
+
+ The settings.
+
+
+
+ Parses and merges the information into the given message.
+
+ The message to merge the JSON information into.
+ The JSON to parse.
+
+
+
+ Parses JSON read from and merges the information into the given message.
+
+ The message to merge the JSON information into.
+ Reader providing the JSON to parse.
+
+
+
+ Merges the given message using data from the given tokenizer. In most cases, the next
+ token should be a "start object" token, but wrapper types and nullity can invalidate
+ that assumption. This is implemented as an LL(1) recursive descent parser over the stream
+ of tokens provided by the tokenizer. This token stream is assumed to be valid JSON, with the
+ tokenizer performing that validation - but not every token stream is valid "protobuf JSON".
+
+
+
+
+ Parses into a new message.
+
+ The type of message to create.
+ The JSON to parse.
+ The JSON does not comply with RFC 7159
+ The JSON does not represent a Protocol Buffers message correctly
+
+
+
+ Parses JSON read from into a new message.
+
+ The type of message to create.
+ Reader providing the JSON to parse.
+ The JSON does not comply with RFC 7159
+ The JSON does not represent a Protocol Buffers message correctly
+
+
+
+ Parses into a new message.
+
+ The JSON to parse.
+ Descriptor of message type to parse.
+ The JSON does not comply with RFC 7159
+ The JSON does not represent a Protocol Buffers message correctly
+
+
+
+ Parses JSON read from into a new message.
+
+ Reader providing the JSON to parse.
+ Descriptor of message type to parse.
+ The JSON does not comply with RFC 7159
+ The JSON does not represent a Protocol Buffers message correctly
+
+
+
+ Creates a new instance of the message type for the given field.
+
+
+
+
+ Checks that any infinite/NaN values originated from the correct text.
+ This corrects the lenient whitespace handling of double.Parse/float.Parse, as well as the
+ way that Mono parses out-of-range values as infinity.
+
+
+
+
+ Settings controlling JSON parsing.
+
+
+
+
+ Default settings, as used by . This has the same default
+ recursion limit as , and an empty type registry.
+
+
+
+
+ The maximum depth of messages to parse. Note that this limit only applies to parsing
+ messages, not collections - so a message within a collection within a message only counts as
+ depth 2, not 3.
+
+
+
+
+ The type registry used to parse messages.
+
+
+
+
+ Whether the parser should ignore unknown fields (true) or throw an exception when
+ they are encountered (false).
+
+
+
+
+ Creates a new object with the specified recursion limit.
+
+ The maximum depth of messages to parse
+
+
+
+ Creates a new object with the specified recursion limit and type registry.
+
+ The maximum depth of messages to parse
+ The type registry used to parse messages
+
+
+
+ Creates a new object set to either ignore unknown fields, or throw an exception
+ when unknown fields are encountered.
+
+ true if unknown fields should be ignored when parsing; false to throw an exception.
+
+
+
+ Creates a new object based on this one, but with the specified recursion limit.
+
+ The new recursion limit.
+
+
+
+ Creates a new object based on this one, but with the specified type registry.
+
+ The new type registry. Must not be null.
+
+
+
+ Simple but strict JSON tokenizer, rigidly following RFC 7159.
+
+
+
+ This tokenizer is stateful, and only returns "useful" tokens - names, values etc.
+ It does not create tokens for the separator between names and values, or for the comma
+ between values. It validates the token stream as it goes - so callers can assume that the
+ tokens it produces are appropriate. For example, it would never produce "start object, end array."
+
+ Implementation details: the base class handles single token push-back and
+ Not thread-safe.
+
+
+
+
+ Creates a tokenizer that reads from the given text reader.
+
+
+
+
+ Creates a tokenizer that first replays the given list of tokens, then continues reading
+ from another tokenizer. Note that if the returned tokenizer is "pushed back", that does not push back
+ on the continuation tokenizer, or vice versa. Care should be taken when using this method - it was
+ created for the sake of Any parsing.
+
+
+
+
+ Returns the depth of the stack, purely in objects (not collections).
+ Informally, this is the number of remaining unclosed '{' characters we have.
+
+
+
+
+ Returns the next JSON token in the stream. An EndDocument token is returned to indicate the end of the stream,
+ after which point Next() should not be called again.
+
+ This implementation provides single-token buffering, and calls if there is no buffered token.
+ The next token in the stream. This is never null.
+ This method is called after an EndDocument token has been returned
+ The input text does not comply with RFC 7159
+
+
+
+ Returns the next JSON token in the stream, when requested by the base class. (The method delegates
+ to this if it doesn't have a buffered token.)
+
+ This method is called after an EndDocument token has been returned
+ The input text does not comply with RFC 7159
+
+
+
+ Skips the value we're about to read. This must only be called immediately after reading a property name.
+ If the value is an object or an array, the complete object/array is skipped.
+
+
+
+
+ Tokenizer which first exhausts a list of tokens, then consults another tokenizer.
+
+
+
+
+ Tokenizer which does all the *real* work of parsing JSON.
+
+
+
+
+ This method essentially just loops through characters skipping whitespace, validating and
+ changing state (e.g. from ObjectBeforeColon to ObjectAfterColon)
+ until it reaches something which will be a genuine token (e.g. a start object, or a value) at which point
+ it returns the token. Although the method is large, it would be relatively hard to break down further... most
+ of it is the large switch statement, which sometimes returns and sometimes doesn't.
+
+
+
+
+ Reads a string token. It is assumed that the opening " has already been read.
+
+
+
+
+ Reads an escaped character. It is assumed that the leading backslash has already been read.
+
+
+
+
+ Reads an escaped Unicode 4-nybble hex sequence. It is assumed that the leading \u has already been read.
+
+
+
+
+ Consumes a text-only literal, throwing an exception if the read text doesn't match it.
+ It is assumed that the first letter of the literal has already been read.
+
+
+
+
+ Validates that we're in a valid state to read a value (using the given error prefix if necessary)
+ and changes the state to the appropriate one, e.g. ObjectAfterColon to ObjectAfterProperty.
+
+
+
+
+ Pops the top-most container, and sets the state to the appropriate one for the end of a value
+ in the parent container.
+
+
+
+
+ Possible states of the tokenizer.
+
+
+ This is a flags enum purely so we can simply and efficiently represent a set of valid states
+ for checking.
+
+ Each is documented with an example,
+ where ^ represents the current position within the text stream. The examples all use string values,
+ but could be any value, including nested objects/arrays.
+ The complete state of the tokenizer also includes a stack to indicate the contexts (arrays/objects).
+ Any additional notional state of "AfterValue" indicates that a value has been completed, at which
+ point there's an immediate transition to ExpectedEndOfDocument, ObjectAfterProperty or ArrayAfterValue.
+
+
+ These states were derived manually by reading RFC 7159 carefully.
+
+
+
+
+
+ ^ { "foo": "bar" }
+ Before the value in a document. Next states: ObjectStart, ArrayStart, "AfterValue"
+
+
+
+
+ { "foo": "bar" } ^
+ After the value in a document. Next states: ReaderExhausted
+
+
+
+
+ { "foo": "bar" } ^ (and already read to the end of the reader)
+ Terminal state.
+
+
+
+
+ { ^ "foo": "bar" }
+ Before the *first* property in an object.
+ Next states:
+ "AfterValue" (empty object)
+ ObjectBeforeColon (read a name)
+
+
+
+
+ { "foo" ^ : "bar", "x": "y" }
+ Next state: ObjectAfterColon
+
+
+
+
+ { "foo" : ^ "bar", "x": "y" }
+ Before any property other than the first in an object.
+ (Equivalently: after any property in an object)
+ Next states:
+ "AfterValue" (value is simple)
+ ObjectStart (value is object)
+ ArrayStart (value is array)
+
+
+
+
+ { "foo" : "bar" ^ , "x" : "y" }
+ At the end of a property, so expecting either a comma or end-of-object
+ Next states: ObjectAfterComma or "AfterValue"
+
+
+
+
+ { "foo":"bar", ^ "x":"y" }
+ Read the comma after the previous property, so expecting another property.
+ This is like ObjectStart, but closing brace isn't valid here
+ Next state: ObjectBeforeColon.
+
+
+
+
+ [ ^ "foo", "bar" ]
+ Before the *first* value in an array.
+ Next states:
+ "AfterValue" (read a value)
+ "AfterValue" (end of array; will pop stack)
+
+
+
+
+ [ "foo" ^ , "bar" ]
+ After any value in an array, so expecting either a comma or end-of-array
+ Next states: ArrayAfterComma or "AfterValue"
+
+
+
+
+ [ "foo", ^ "bar" ]
+ After a comma in an array, so there *must* be another value (simple or complex).
+ Next states: "AfterValue" (simple value), StartObject, StartArray
+
+
+
+
+ Wrapper around a text reader allowing small amounts of buffering and location handling.
+
+
+
+
+ The buffered next character, if we have one.
+
+
+
+
+ Returns the next character in the stream, or null if we have reached the end.
+
+
+
+
+
+ Creates a new exception appropriate for the current state of the reader.
+
+
+
+
+ Stream implementation which proxies another stream, only allowing a certain amount
+ of data to be read. Note that this is only used to read delimited streams, so it
+ doesn't attempt to implement everything.
+
+
+
+
+ Extension methods on and .
+
+
+
+
+ Merges data from the given byte array into an existing message.
+
+ The message to merge the data into.
+ The data to merge, which must be protobuf-encoded binary data.
+
+
+
+ Merges data from the given byte array slice into an existing message.
+
+ The message to merge the data into.
+ The data containing the slice to merge, which must be protobuf-encoded binary data.
+ The offset of the slice to merge.
+ The length of the slice to merge.
+
+
+
+ Merges data from the given byte string into an existing message.
+
+ The message to merge the data into.
+ The data to merge, which must be protobuf-encoded binary data.
+
+
+
+ Merges data from the given stream into an existing message.
+
+ The message to merge the data into.
+ Stream containing the data to merge, which must be protobuf-encoded binary data.
+
+
+
+ Merges length-delimited data from the given stream into an existing message.
+
+
+ The stream is expected to contain a length and then the data. Only the amount of data
+ specified by the length will be consumed.
+
+ The message to merge the data into.
+ Stream containing the data to merge, which must be protobuf-encoded binary data.
+
+
+
+ Converts the given message into a byte array in protobuf encoding.
+
+ The message to convert.
+ The message data as a byte array.
+
+
+
+ Writes the given message data to the given stream in protobuf encoding.
+
+ The message to write to the stream.
+ The stream to write to.
+
+
+
+ Writes the length and then data of the given message to a stream.
+
+ The message to write.
+ The output stream to write to.
+
+
+
+ Converts the given message into a byte string in protobuf encoding.
+
+ The message to convert.
+ The message data as a byte string.
+
+
+
+ A general message parser, typically used by reflection-based code as all the methods
+ return simple .
+
+
+
+
+ Creates a template instance ready for population.
+
+ An empty message.
+
+
+
+ Parses a message from a byte array.
+
+ The byte array containing the message. Must not be null.
+ The newly parsed message.
+
+
+
+ Parses a message from a byte array slice.
+
+ The byte array containing the message. Must not be null.
+ The offset of the slice to parse.
+ The length of the slice to parse.
+ The newly parsed message.
+
+
+
+ Parses a message from the given byte string.
+
+ The data to parse.
+ The parsed message.
+
+
+
+ Parses a message from the given stream.
+
+ The stream to parse.
+ The parsed message.
+
+
+
+ Parses a length-delimited message from the given stream.
+
+
+ The stream is expected to contain a length and then the data. Only the amount of data
+ specified by the length will be consumed.
+
+ The stream to parse.
+ The parsed message.
+
+
+
+ Parses a message from the given coded input stream.
+
+ The stream to parse.
+ The parsed message.
+
+
+
+ Parses a message from the given JSON.
+
+ The JSON to parse.
+ The parsed message.
+ The JSON does not comply with RFC 7159
+ The JSON does not represent a Protocol Buffers message correctly
+
+
+
+ Creates a new message parser which optionally discards unknown fields when parsing.
+
+ Whether or not to discard unknown fields when parsing.
+ A newly configured message parser.
+
+
+
+ A parser for a specific message type.
+
+
+
+ This delegates most behavior to the
+ implementation within the original type, but
+ provides convenient overloads to parse from a variety of sources.
+
+
+ Most applications will never need to create their own instances of this type;
+ instead, use the static Parser property of a generated message type to obtain a
+ parser for that type.
+
+
+ The type of message to be parsed.
+
+
+
+ Creates a new parser.
+
+
+ The factory method is effectively an optimization over using a generic constraint
+ to require a parameterless constructor: delegates are significantly faster to execute.
+
+ Function to invoke when a new, empty message is required.
+
+
+
+ Creates a template instance ready for population.
+
+ An empty message.
+
+
+
+ Parses a message from a byte array.
+
+ The byte array containing the message. Must not be null.
+ The newly parsed message.
+
+
+
+ Parses a message from a byte array slice.
+
+ The byte array containing the message. Must not be null.
+ The offset of the slice to parse.
+ The length of the slice to parse.
+ The newly parsed message.
+
+
+
+ Parses a message from the given byte string.
+
+ The data to parse.
+ The parsed message.
+
+
+
+ Parses a message from the given stream.
+
+ The stream to parse.
+ The parsed message.
+
+
+
+ Parses a length-delimited message from the given stream.
+
+
+ The stream is expected to contain a length and then the data. Only the amount of data
+ specified by the length will be consumed.
+
+ The stream to parse.
+ The parsed message.
+
+
+
+ Parses a message from the given coded input stream.
+
+ The stream to parse.
+ The parsed message.
+
+
+
+ Parses a message from the given JSON.
+
+ The JSON to parse.
+ The parsed message.
+ The JSON does not comply with RFC 7159
+ The JSON does not represent a Protocol Buffers message correctly
+
+
+
+ Creates a new message parser which optionally discards unknown fields when parsing.
+
+ Whether or not to discard unknown fields when parsing.
+ A newly configured message parser.
+
+
+
+ Helper methods for throwing exceptions when preconditions are not met.
+
+
+ This class is used internally and by generated code; it is not particularly
+ expected to be used from application code, although nothing prevents it
+ from being used that way.
+
+
+
+
+ Throws an ArgumentNullException if the given value is null, otherwise
+ return the value to the caller.
+
+
+
+
+ Throws an ArgumentNullException if the given value is null, otherwise
+ return the value to the caller.
+
+
+ This is equivalent to but without the type parameter
+ constraint. In most cases, the constraint is useful to prevent you from calling CheckNotNull
+ with a value type - but it gets in the way if either you want to use it with a nullable
+ value type, or you want to use it with an unconstrained type parameter.
+
+
+
+
+ Container for a set of custom options specified within a message, field etc.
+
+
+
+ This type is publicly immutable, but internally mutable. It is only populated
+ by the descriptor parsing code - by the time any user code is able to see an instance,
+ it will be fully initialized.
+
+
+ If an option is requested using the incorrect method, an answer may still be returned: all
+ of the numeric types are represented internally using 64-bit integers, for example. It is up to
+ the caller to ensure that they make the appropriate method call for the option they're interested in.
+ Note that enum options are simply stored as integers, so the value should be fetched using
+ and then cast appropriately.
+
+
+ Repeated options are currently not supported. Asking for a single value of an option
+ which was actually repeated will return the last value, except for message types where
+ all the set values are merged together.
+
+
+
+
+
+ Singleton for all descriptors with an empty set of options.
+
+
+
+
+ A sequence of values per field. This needs to be per field rather than per tag to allow correct deserialization
+ of repeated fields which could be "int, ByteString, int" - unlikely as that is. The fact that values are boxed
+ is unfortunate; we might be able to use a struct instead, and we could combine uint and ulong values.
+
+
+
+
+ Retrieves a Boolean value for the specified option field.
+
+ The field to fetch the value for.
+ The output variable to populate.
+ true if a suitable value for the field was found; false otherwise.
+
+
+
+ Retrieves a signed 32-bit integer value for the specified option field.
+
+ The field to fetch the value for.
+ The output variable to populate.
+ true if a suitable value for the field was found; false otherwise.
+
+
+
+ Retrieves a signed 64-bit integer value for the specified option field.
+
+ The field to fetch the value for.
+ The output variable to populate.
+ true if a suitable value for the field was found; false otherwise.
+
+
+
+ Retrieves an unsigned 32-bit integer value for the specified option field,
+ assuming a fixed-length representation.
+
+ The field to fetch the value for.
+ The output variable to populate.
+ true if a suitable value for the field was found; false otherwise.
+
+
+
+ Retrieves an unsigned 64-bit integer value for the specified option field,
+ assuming a fixed-length representation.
+
+ The field to fetch the value for.
+ The output variable to populate.
+ true if a suitable value for the field was found; false otherwise.
+
+
+
+ Retrieves a signed 32-bit integer value for the specified option field,
+ assuming a fixed-length representation.
+
+ The field to fetch the value for.
+ The output variable to populate.
+ true if a suitable value for the field was found; false otherwise.
+
+
+
+ Retrieves a signed 64-bit integer value for the specified option field,
+ assuming a fixed-length representation.
+
+ The field to fetch the value for.
+ The output variable to populate.
+ true if a suitable value for the field was found; false otherwise.
+
+
+
+ Retrieves a signed 32-bit integer value for the specified option field,
+ assuming a zigzag encoding.
+
+ The field to fetch the value for.
+ The output variable to populate.
+ true if a suitable value for the field was found; false otherwise.
+
+
+
+ Retrieves a signed 64-bit integer value for the specified option field,
+ assuming a zigzag encoding.
+
+ The field to fetch the value for.
+ The output variable to populate.
+ true if a suitable value for the field was found; false otherwise.
+
+
+
+ Retrieves an unsigned 32-bit integer value for the specified option field.
+
+ The field to fetch the value for.
+ The output variable to populate.
+ true if a suitable value for the field was found; false otherwise.
+
+
+
+ Retrieves an unsigned 64-bit integer value for the specified option field.
+
+ The field to fetch the value for.
+ The output variable to populate.
+ true if a suitable value for the field was found; false otherwise.
+
+
+
+ Retrieves a 32-bit floating point value for the specified option field.
+
+ The field to fetch the value for.
+ The output variable to populate.
+ true if a suitable value for the field was found; false otherwise.
+
+
+
+ Retrieves a 64-bit floating point value for the specified option field.
+
+ The field to fetch the value for.
+ The output variable to populate.
+ true if a suitable value for the field was found; false otherwise.
+
+
+
+ Retrieves a string value for the specified option field.
+
+ The field to fetch the value for.
+ The output variable to populate.
+ true if a suitable value for the field was found; false otherwise.
+
+
+
+ Retrieves a bytes value for the specified option field.
+
+ The field to fetch the value for.
+ The output variable to populate.
+ true if a suitable value for the field was found; false otherwise.
+
+
+
+ Retrieves a message value for the specified option field.
+
+ The field to fetch the value for.
+ The output variable to populate.
+ true if a suitable value for the field was found; false otherwise.
+
+
+
+ Reads an unknown field, either parsing it and storing it or skipping it.
+
+
+ If the current set of options is empty and we manage to read a field, a new set of options
+ will be created and returned. Otherwise, the return value is this. This allows
+ us to start with a singleton empty set of options and just create new ones where necessary.
+
+ Input stream to read from.
+ The resulting set of custom options, either this or a new set.
+
+
+
+ All field values can be stored as a byte string or a 64-bit integer.
+ This struct avoids unnecessary boxing.
+
+
+
+ Holder for reflection information generated from google/protobuf/descriptor.proto
+
+
+ File descriptor for google/protobuf/descriptor.proto
+
+
+
+ The protocol compiler can output a FileDescriptorSet containing the .proto
+ files it parses.
+
+
+
+ Field number for the "file" field.
+
+
+
+ Describes a complete .proto file.
+
+
+
+ Field number for the "name" field.
+
+
+
+ file name, relative to root of source tree
+
+
+
+ Field number for the "package" field.
+
+
+
+ e.g. "foo", "foo.bar", etc.
+
+
+
+ Field number for the "dependency" field.
+
+
+
+ Names of files imported by this file.
+
+
+
+ Field number for the "public_dependency" field.
+
+
+
+ Indexes of the public imported files in the dependency list above.
+
+
+
+ Field number for the "weak_dependency" field.
+
+
+
+ Indexes of the weak imported files in the dependency list.
+ For Google-internal migration only. Do not use.
+
+
+
+ Field number for the "message_type" field.
+
+
+
+ All top-level definitions in this file.
+
+
+
+ Field number for the "enum_type" field.
+
+
+ Field number for the "service" field.
+
+
+ Field number for the "extension" field.
+
+
+ Field number for the "options" field.
+
+
+ Field number for the "source_code_info" field.
+
+
+
+ This field contains optional information about the original source code.
+ You may safely remove this entire field without harming runtime
+ functionality of the descriptors -- the information is needed only by
+ development tools.
+
+
+
+ Field number for the "syntax" field.
+
+
+
+ The syntax of the proto file.
+ The supported values are "proto2" and "proto3".
+
+
+
+
+ Describes a message type.
+
+
+
+ Field number for the "name" field.
+
+
+ Field number for the "field" field.
+
+
+ Field number for the "extension" field.
+
+
+ Field number for the "nested_type" field.
+
+
+ Field number for the "enum_type" field.
+
+
+ Field number for the "extension_range" field.
+
+
+ Field number for the "oneof_decl" field.
+
+
+ Field number for the "options" field.
+
+
+ Field number for the "reserved_range" field.
+
+
+ Field number for the "reserved_name" field.
+
+
+
+ Reserved field names, which may not be used by fields in the same message.
+ A given name may only be reserved once.
+
+
+
+ Container for nested types declared in the DescriptorProto message type.
+
+
+ Field number for the "start" field.
+
+
+ Field number for the "end" field.
+
+
+ Field number for the "options" field.
+
+
+
+ Range of reserved tag numbers. Reserved tag numbers may not be used by
+ fields or extension ranges in the same message. Reserved ranges may
+ not overlap.
+
+
+
+ Field number for the "start" field.
+
+
+
+ Inclusive.
+
+
+
+ Field number for the "end" field.
+
+
+
+ Exclusive.
+
+
+
+ Field number for the "uninterpreted_option" field.
+
+
+
+ The parser stores options it doesn't recognize here. See above.
+
+
+
+
+ Describes a field within a message.
+
+
+
+ Field number for the "name" field.
+
+
+ Field number for the "number" field.
+
+
+ Field number for the "label" field.
+
+
+ Field number for the "type" field.
+
+
+
+ If type_name is set, this need not be set. If both this and type_name
+ are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.
+
+
+
+ Field number for the "type_name" field.
+
+
+
+ For message and enum types, this is the name of the type. If the name
+ starts with a '.', it is fully-qualified. Otherwise, C++-like scoping
+ rules are used to find the type (i.e. first the nested types within this
+ message are searched, then within the parent, on up to the root
+ namespace).
+
+
+
+ Field number for the "extendee" field.
+
+
+
+ For extensions, this is the name of the type being extended. It is
+ resolved in the same manner as type_name.
+
+
+
+ Field number for the "default_value" field.
+
+
+
+ For numeric types, contains the original text representation of the value.
+ For booleans, "true" or "false".
+ For strings, contains the default text contents (not escaped in any way).
+ For bytes, contains the C escaped value. All bytes >= 128 are escaped.
+ TODO(kenton): Base-64 encode?
+
+
+
+ Field number for the "oneof_index" field.
+
+
+
+ If set, gives the index of a oneof in the containing type's oneof_decl
+ list. This field is a member of that oneof.
+
+
+
+ Field number for the "json_name" field.
+
+
+
+ JSON name of this field. The value is set by protocol compiler. If the
+ user has set a "json_name" option on this field, that option's value
+ will be used. Otherwise, it's deduced from the field's name by converting
+ it to camelCase.
+
+
+
+ Field number for the "options" field.
+
+
+ Container for nested types declared in the FieldDescriptorProto message type.
+
+
+
+ 0 is reserved for errors.
+ Order is weird for historical reasons.
+
+
+
+
+ Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT64 if
+ negative values are likely.
+
+
+
+
+ Not ZigZag encoded. Negative numbers take 10 bytes. Use TYPE_SINT32 if
+ negative values are likely.
+
+
+
+
+ Tag-delimited aggregate.
+ Group type is deprecated and not supported in proto3. However, Proto3
+ implementations should still be able to parse the group wire format and
+ treat group fields as unknown fields.
+
+
+
+
+ Length-delimited aggregate.
+
+
+
+
+ New in version 2.
+
+
+
+
+ Uses ZigZag encoding.
+
+
+
+
+ Uses ZigZag encoding.
+
+
+
+
+ 0 is reserved for errors
+
+
+
+
+ Describes a oneof.
+
+
+
+ Field number for the "name" field.
+
+
+ Field number for the "options" field.
+
+
+
+ Describes an enum type.
+
+
+
+ Field number for the "name" field.
+
+
+ Field number for the "value" field.
+
+
+ Field number for the "options" field.
+
+
+ Field number for the "reserved_range" field.
+
+
+
+ Range of reserved numeric values. Reserved numeric values may not be used
+ by enum values in the same enum declaration. Reserved ranges may not
+ overlap.
+
+
+
+ Field number for the "reserved_name" field.
+
+
+
+ Reserved enum value names, which may not be reused. A given name may only
+ be reserved once.
+
+
+
+ Container for nested types declared in the EnumDescriptorProto message type.
+
+
+
+ Range of reserved numeric values. Reserved values may not be used by
+ entries in the same enum. Reserved ranges may not overlap.
+
+ Note that this is distinct from DescriptorProto.ReservedRange in that it
+ is inclusive such that it can appropriately represent the entire int32
+ domain.
+
+
+
+ Field number for the "start" field.
+
+
+
+ Inclusive.
+
+
+
+ Field number for the "end" field.
+
+
+
+ Inclusive.
+
+
+
+
+ Describes a value within an enum.
+
+
+
+ Field number for the "name" field.
+
+
+ Field number for the "number" field.
+
+
+ Field number for the "options" field.
+
+
+
+ Describes a service.
+
+
+
+ Field number for the "name" field.
+
+
+ Field number for the "method" field.
+
+
+ Field number for the "options" field.
+
+
+
+ Describes a method of a service.
+
+
+
+ Field number for the "name" field.
+
+
+ Field number for the "input_type" field.
+
+
+
+ Input and output type names. These are resolved in the same way as
+ FieldDescriptorProto.type_name, but must refer to a message type.
+
+
+
+ Field number for the "output_type" field.
+
+
+ Field number for the "options" field.
+
+
+ Field number for the "client_streaming" field.
+
+
+
+ Identifies if client streams multiple client messages
+
+
+
+ Field number for the "server_streaming" field.
+
+
+
+ Identifies if server streams multiple server messages
+
+
+
+ Field number for the "java_package" field.
+
+
+
+ Sets the Java package where classes generated from this .proto will be
+ placed. By default, the proto package is used, but this is often
+ inappropriate because proto packages do not normally start with backwards
+ domain names.
+
+
+
+ Field number for the "java_outer_classname" field.
+
+
+
+ If set, all the classes from the .proto file are wrapped in a single
+ outer class with the given name. This applies to both Proto1
+ (equivalent to the old "--one_java_file" option) and Proto2 (where
+ a .proto always translates to a single class, but you may want to
+ explicitly choose the class name).
+
+
+
+ Field number for the "java_multiple_files" field.
+
+
+
+ If set true, then the Java code generator will generate a separate .java
+ file for each top-level message, enum, and service defined in the .proto
+ file. Thus, these types will *not* be nested inside the outer class
+ named by java_outer_classname. However, the outer class will still be
+ generated to contain the file's getDescriptor() method as well as any
+ top-level extensions defined in the file.
+
+
+
+ Field number for the "java_generate_equals_and_hash" field.
+
+
+
+ This option does nothing.
+
+
+
+ Field number for the "java_string_check_utf8" field.
+
+
+
+ If set true, then the Java2 code generator will generate code that
+ throws an exception whenever an attempt is made to assign a non-UTF-8
+ byte sequence to a string field.
+ Message reflection will do the same.
+ However, an extension field still accepts non-UTF-8 byte sequences.
+ This option has no effect on when used with the lite runtime.
+
+
+
+ Field number for the "optimize_for" field.
+
+
+ Field number for the "go_package" field.
+
+
+
+ Sets the Go package where structs generated from this .proto will be
+ placed. If omitted, the Go package will be derived from the following:
+ - The basename of the package import path, if provided.
+ - Otherwise, the package statement in the .proto file, if present.
+ - Otherwise, the basename of the .proto file, without extension.
+
+
+
+ Field number for the "cc_generic_services" field.
+
+
+
+ Should generic services be generated in each language? "Generic" services
+ are not specific to any particular RPC system. They are generated by the
+ main code generators in each language (without additional plugins).
+ Generic services were the only kind of service generation supported by
+ early versions of google.protobuf.
+
+ Generic services are now considered deprecated in favor of using plugins
+ that generate code specific to your particular RPC system. Therefore,
+ these default to false. Old code which depends on generic services should
+ explicitly set them to true.
+
+
+
+ Field number for the "java_generic_services" field.
+
+
+ Field number for the "py_generic_services" field.
+
+
+ Field number for the "php_generic_services" field.
+
+
+ Field number for the "deprecated" field.
+
+
+
+ Is this file deprecated?
+ Depending on the target platform, this can emit Deprecated annotations
+ for everything in the file, or it will be completely ignored; in the very
+ least, this is a formalization for deprecating files.
+
+
+
+ Field number for the "cc_enable_arenas" field.
+
+
+
+ Enables the use of arenas for the proto messages in this file. This applies
+ only to generated classes for C++.
+
+
+
+ Field number for the "objc_class_prefix" field.
+
+
+
+ Sets the objective c class prefix which is prepended to all objective c
+ generated classes from this .proto. There is no default.
+
+
+
+ Field number for the "csharp_namespace" field.
+
+
+
+ Namespace for generated classes; defaults to the package.
+
+
+
+ Field number for the "swift_prefix" field.
+
+
+
+ By default Swift generators will take the proto package and CamelCase it
+ replacing '.' with underscore and use that to prefix the types/symbols
+ defined. When this options is provided, they will use this value instead
+ to prefix the types/symbols defined.
+
+
+
+ Field number for the "php_class_prefix" field.
+
+
+
+ Sets the php class prefix which is prepended to all php generated classes
+ from this .proto. Default is empty.
+
+
+
+ Field number for the "php_namespace" field.
+
+
+
+ Use this option to change the namespace of php generated classes. Default
+ is empty. When this option is empty, the package name will be used for
+ determining the namespace.
+
+
+
+ Field number for the "php_metadata_namespace" field.
+
+
+
+ Use this option to change the namespace of php generated metadata classes.
+ Default is empty. When this option is empty, the proto file name will be used
+ for determining the namespace.
+
+
+
+ Field number for the "ruby_package" field.
+
+
+
+ Use this option to change the package of ruby generated classes. Default
+ is empty. When this option is not set, the package name will be used for
+ determining the ruby package.
+
+
+
+ Field number for the "uninterpreted_option" field.
+
+
+
+ The parser stores options it doesn't recognize here.
+ See the documentation for the "Options" section above.
+
+
+
+ Container for nested types declared in the FileOptions message type.
+
+
+
+ Generated classes can be optimized for speed or code size.
+
+
+
+
+ Generate complete code for parsing, serialization,
+
+
+
+
+ etc.
+
+
+
+
+ Generate code using MessageLite and the lite runtime.
+
+
+
+ Field number for the "message_set_wire_format" field.
+
+
+
+ Set true to use the old proto1 MessageSet wire format for extensions.
+ This is provided for backwards-compatibility with the MessageSet wire
+ format. You should not use this for any other reason: It's less
+ efficient, has fewer features, and is more complicated.
+
+ The message must be defined exactly as follows:
+ message Foo {
+ option message_set_wire_format = true;
+ extensions 4 to max;
+ }
+ Note that the message cannot have any defined fields; MessageSets only
+ have extensions.
+
+ All extensions of your type must be singular messages; e.g. they cannot
+ be int32s, enums, or repeated messages.
+
+ Because this is an option, the above two restrictions are not enforced by
+ the protocol compiler.
+
+
+
+ Field number for the "no_standard_descriptor_accessor" field.
+
+
+
+ Disables the generation of the standard "descriptor()" accessor, which can
+ conflict with a field of the same name. This is meant to make migration
+ from proto1 easier; new code should avoid fields named "descriptor".
+
+
+
+ Field number for the "deprecated" field.
+
+
+
+ Is this message deprecated?
+ Depending on the target platform, this can emit Deprecated annotations
+ for the message, or it will be completely ignored; in the very least,
+ this is a formalization for deprecating messages.
+
+
+
+ Field number for the "map_entry" field.
+
+
+
+ Whether the message is an automatically generated map entry type for the
+ maps field.
+
+ For maps fields:
+ map<KeyType, ValueType> map_field = 1;
+ The parsed descriptor looks like:
+ message MapFieldEntry {
+ option map_entry = true;
+ optional KeyType key = 1;
+ optional ValueType value = 2;
+ }
+ repeated MapFieldEntry map_field = 1;
+
+ Implementations may choose not to generate the map_entry=true message, but
+ use a native map in the target language to hold the keys and values.
+ The reflection APIs in such implementions still need to work as
+ if the field is a repeated message field.
+
+ NOTE: Do not set the option in .proto files. Always use the maps syntax
+ instead. The option should only be implicitly set by the proto compiler
+ parser.
+
+
+
+ Field number for the "uninterpreted_option" field.
+
+
+
+ The parser stores options it doesn't recognize here. See above.
+
+
+
+ Field number for the "ctype" field.
+
+
+
+ The ctype option instructs the C++ code generator to use a different
+ representation of the field than it normally would. See the specific
+ options below. This option is not yet implemented in the open source
+ release -- sorry, we'll try to include it in a future version!
+
+
+
+ Field number for the "packed" field.
+
+
+
+ The packed option can be enabled for repeated primitive fields to enable
+ a more efficient representation on the wire. Rather than repeatedly
+ writing the tag and type for each element, the entire array is encoded as
+ a single length-delimited blob. In proto3, only explicit setting it to
+ false will avoid using packed encoding.
+
+
+
+ Field number for the "jstype" field.
+
+
+
+ The jstype option determines the JavaScript type used for values of the
+ field. The option is permitted only for 64 bit integral and fixed types
+ (int64, uint64, sint64, fixed64, sfixed64). A field with jstype JS_STRING
+ is represented as JavaScript string, which avoids loss of precision that
+ can happen when a large value is converted to a floating point JavaScript.
+ Specifying JS_NUMBER for the jstype causes the generated JavaScript code to
+ use the JavaScript "number" type. The behavior of the default option
+ JS_NORMAL is implementation dependent.
+
+ This option is an enum to permit additional types to be added, e.g.
+ goog.math.Integer.
+
+
+
+ Field number for the "lazy" field.
+
+
+
+ Should this field be parsed lazily? Lazy applies only to message-type
+ fields. It means that when the outer message is initially parsed, the
+ inner message's contents will not be parsed but instead stored in encoded
+ form. The inner message will actually be parsed when it is first accessed.
+
+ This is only a hint. Implementations are free to choose whether to use
+ eager or lazy parsing regardless of the value of this option. However,
+ setting this option true suggests that the protocol author believes that
+ using lazy parsing on this field is worth the additional bookkeeping
+ overhead typically needed to implement it.
+
+ This option does not affect the public interface of any generated code;
+ all method signatures remain the same. Furthermore, thread-safety of the
+ interface is not affected by this option; const methods remain safe to
+ call from multiple threads concurrently, while non-const methods continue
+ to require exclusive access.
+
+ Note that implementations may choose not to check required fields within
+ a lazy sub-message. That is, calling IsInitialized() on the outer message
+ may return true even if the inner message has missing required fields.
+ This is necessary because otherwise the inner message would have to be
+ parsed in order to perform the check, defeating the purpose of lazy
+ parsing. An implementation which chooses not to check required fields
+ must be consistent about it. That is, for any particular sub-message, the
+ implementation must either *always* check its required fields, or *never*
+ check its required fields, regardless of whether or not the message has
+ been parsed.
+
+
+
+ Field number for the "deprecated" field.
+
+
+
+ Is this field deprecated?
+ Depending on the target platform, this can emit Deprecated annotations
+ for accessors, or it will be completely ignored; in the very least, this
+ is a formalization for deprecating fields.
+
+
+
+ Field number for the "weak" field.
+
+
+
+ For Google-internal migration only. Do not use.
+
+
+
+ Field number for the "uninterpreted_option" field.
+
+
+
+ The parser stores options it doesn't recognize here. See above.
+
+
+
+ Container for nested types declared in the FieldOptions message type.
+
+
+
+ Default mode.
+
+
+
+
+ Use the default type.
+
+
+
+
+ Use JavaScript strings.
+
+
+
+
+ Use JavaScript numbers.
+
+
+
+ Field number for the "uninterpreted_option" field.
+
+
+
+ The parser stores options it doesn't recognize here. See above.
+
+
+
+ Field number for the "allow_alias" field.
+
+
+
+ Set this option to true to allow mapping different tag names to the same
+ value.
+
+
+
+ Field number for the "deprecated" field.
+
+
+
+ Is this enum deprecated?
+ Depending on the target platform, this can emit Deprecated annotations
+ for the enum, or it will be completely ignored; in the very least, this
+ is a formalization for deprecating enums.
+
+
+
+ Field number for the "uninterpreted_option" field.
+
+
+
+ The parser stores options it doesn't recognize here. See above.
+
+
+
+ Field number for the "deprecated" field.
+
+
+
+ Is this enum value deprecated?
+ Depending on the target platform, this can emit Deprecated annotations
+ for the enum value, or it will be completely ignored; in the very least,
+ this is a formalization for deprecating enum values.
+
+
+
+ Field number for the "uninterpreted_option" field.
+
+
+
+ The parser stores options it doesn't recognize here. See above.
+
+
+
+ Field number for the "deprecated" field.
+
+
+
+ Is this service deprecated?
+ Depending on the target platform, this can emit Deprecated annotations
+ for the service, or it will be completely ignored; in the very least,
+ this is a formalization for deprecating services.
+
+
+
+ Field number for the "uninterpreted_option" field.
+
+
+
+ The parser stores options it doesn't recognize here. See above.
+
+
+
+ Field number for the "deprecated" field.
+
+
+
+ Is this method deprecated?
+ Depending on the target platform, this can emit Deprecated annotations
+ for the method, or it will be completely ignored; in the very least,
+ this is a formalization for deprecating methods.
+
+
+
+ Field number for the "idempotency_level" field.
+
+
+ Field number for the "uninterpreted_option" field.
+
+
+
+ The parser stores options it doesn't recognize here. See above.
+
+
+
+ Container for nested types declared in the MethodOptions message type.
+
+
+
+ Is this method side-effect-free (or safe in HTTP parlance), or idempotent,
+ or neither? HTTP based RPC implementation may choose GET verb for safe
+ methods, and PUT verb for idempotent methods instead of the default POST.
+
+
+
+
+ implies idempotent
+
+
+
+
+ idempotent, but may have side effects
+
+
+
+
+ A message representing a option the parser does not recognize. This only
+ appears in options protos created by the compiler::Parser class.
+ DescriptorPool resolves these when building Descriptor objects. Therefore,
+ options protos in descriptor objects (e.g. returned by Descriptor::options(),
+ or produced by Descriptor::CopyTo()) will never have UninterpretedOptions
+ in them.
+
+
+
+ Field number for the "name" field.
+
+
+ Field number for the "identifier_value" field.
+
+
+
+ The value of the uninterpreted option, in whatever type the tokenizer
+ identified it as during parsing. Exactly one of these should be set.
+
+
+
+ Field number for the "positive_int_value" field.
+
+
+ Field number for the "negative_int_value" field.
+
+
+ Field number for the "double_value" field.
+
+
+ Field number for the "string_value" field.
+
+
+ Field number for the "aggregate_value" field.
+
+
+ Container for nested types declared in the UninterpretedOption message type.
+
+
+
+ The name of the uninterpreted option. Each string represents a segment in
+ a dot-separated name. is_extension is true iff a segment represents an
+ extension (denoted with parentheses in options specs in .proto files).
+ E.g.,{ ["foo", false], ["bar.baz", true], ["qux", false] } represents
+ "foo.(bar.baz).qux".
+
+
+
+ Field number for the "name_part" field.
+
+
+ Field number for the "is_extension" field.
+
+
+
+ Encapsulates information about the original source file from which a
+ FileDescriptorProto was generated.
+
+
+
+ Field number for the "location" field.
+
+
+
+ A Location identifies a piece of source code in a .proto file which
+ corresponds to a particular definition. This information is intended
+ to be useful to IDEs, code indexers, documentation generators, and similar
+ tools.
+
+ For example, say we have a file like:
+ message Foo {
+ optional string foo = 1;
+ }
+ Let's look at just the field definition:
+ optional string foo = 1;
+ ^ ^^ ^^ ^ ^^^
+ a bc de f ghi
+ We have the following locations:
+ span path represents
+ [a,i) [ 4, 0, 2, 0 ] The whole field definition.
+ [a,b) [ 4, 0, 2, 0, 4 ] The label (optional).
+ [c,d) [ 4, 0, 2, 0, 5 ] The type (string).
+ [e,f) [ 4, 0, 2, 0, 1 ] The name (foo).
+ [g,h) [ 4, 0, 2, 0, 3 ] The number (1).
+
+ Notes:
+ - A location may refer to a repeated field itself (i.e. not to any
+ particular index within it). This is used whenever a set of elements are
+ logically enclosed in a single code segment. For example, an entire
+ extend block (possibly containing multiple extension definitions) will
+ have an outer location whose path refers to the "extensions" repeated
+ field without an index.
+ - Multiple locations may have the same path. This happens when a single
+ logical declaration is spread out across multiple places. The most
+ obvious example is the "extend" block again -- there may be multiple
+ extend blocks in the same scope, each of which will have the same path.
+ - A location's span is not always a subset of its parent's span. For
+ example, the "extendee" of an extension declaration appears at the
+ beginning of the "extend" block and is shared by all extensions within
+ the block.
+ - Just because a location's span is a subset of some other location's span
+ does not mean that it is a descendent. For example, a "group" defines
+ both a type and a field in a single declaration. Thus, the locations
+ corresponding to the type and field and their components will overlap.
+ - Code which tries to interpret locations should probably be designed to
+ ignore those that it doesn't understand, as more types of locations could
+ be recorded in the future.
+
+
+
+ Container for nested types declared in the SourceCodeInfo message type.
+
+
+ Field number for the "path" field.
+
+
+
+ Identifies which part of the FileDescriptorProto was defined at this
+ location.
+
+ Each element is a field number or an index. They form a path from
+ the root FileDescriptorProto to the place where the definition. For
+ example, this path:
+ [ 4, 3, 2, 7, 1 ]
+ refers to:
+ file.message_type(3) // 4, 3
+ .field(7) // 2, 7
+ .name() // 1
+ This is because FileDescriptorProto.message_type has field number 4:
+ repeated DescriptorProto message_type = 4;
+ and DescriptorProto.field has field number 2:
+ repeated FieldDescriptorProto field = 2;
+ and FieldDescriptorProto.name has field number 1:
+ optional string name = 1;
+
+ Thus, the above path gives the location of a field name. If we removed
+ the last element:
+ [ 4, 3, 2, 7 ]
+ this path refers to the whole field declaration (from the beginning
+ of the label to the terminating semicolon).
+
+
+
+ Field number for the "span" field.
+
+
+
+ Always has exactly three or four elements: start line, start column,
+ end line (optional, otherwise assumed same as start line), end column.
+ These are packed into a single field for efficiency. Note that line
+ and column numbers are zero-based -- typically you will want to add
+ 1 to each before displaying to a user.
+
+
+
+ Field number for the "leading_comments" field.
+
+
+
+ If this SourceCodeInfo represents a complete declaration, these are any
+ comments appearing before and after the declaration which appear to be
+ attached to the declaration.
+
+ A series of line comments appearing on consecutive lines, with no other
+ tokens appearing on those lines, will be treated as a single comment.
+
+ leading_detached_comments will keep paragraphs of comments that appear
+ before (but not connected to) the current element. Each paragraph,
+ separated by empty lines, will be one comment element in the repeated
+ field.
+
+ Only the comment content is provided; comment markers (e.g. //) are
+ stripped out. For block comments, leading whitespace and an asterisk
+ will be stripped from the beginning of each line other than the first.
+ Newlines are included in the output.
+
+ Examples:
+
+ optional int32 foo = 1; // Comment attached to foo.
+ // Comment attached to bar.
+ optional int32 bar = 2;
+
+ optional string baz = 3;
+ // Comment attached to baz.
+ // Another line attached to baz.
+
+ // Comment attached to qux.
+ //
+ // Another line attached to qux.
+ optional double qux = 4;
+
+ // Detached comment for corge. This is not leading or trailing comments
+ // to qux or corge because there are blank lines separating it from
+ // both.
+
+ // Detached comment for corge paragraph 2.
+
+ optional string corge = 5;
+ /* Block comment attached
+ * to corge. Leading asterisks
+ * will be removed. */
+ /* Block comment attached to
+ * grault. */
+ optional int32 grault = 6;
+
+ // ignored detached comments.
+
+
+
+ Field number for the "trailing_comments" field.
+
+
+ Field number for the "leading_detached_comments" field.
+
+
+
+ Describes the relationship between generated code and its original source
+ file. A GeneratedCodeInfo message is associated with only one generated
+ source file, but may contain references to different source .proto files.
+
+
+
+ Field number for the "annotation" field.
+
+
+
+ An Annotation connects some span of text in generated code to an element
+ of its generating .proto file.
+
+
+
+ Container for nested types declared in the GeneratedCodeInfo message type.
+
+
+ Field number for the "path" field.
+
+
+
+ Identifies the element in the original source .proto file. This field
+ is formatted the same as SourceCodeInfo.Location.path.
+
+
+
+ Field number for the "source_file" field.
+
+
+
+ Identifies the filesystem path to the original source .proto.
+
+
+
+ Field number for the "begin" field.
+
+
+
+ Identifies the starting offset in bytes in the generated code
+ that relates to the identified object.
+
+
+
+ Field number for the "end" field.
+
+
+
+ Identifies the ending offset in bytes in the generated code that
+ relates to the identified offset. The end offset should be one past
+ the last relevant byte (so the length of the text = end - begin).
+
+
+
+
+ Base class for nearly all descriptors, providing common functionality.
+
+
+
+
+ The index of this descriptor within its parent descriptor.
+
+
+ This returns the index of this descriptor within its parent, for
+ this descriptor's type. (There can be duplicate values for different
+ types, e.g. one enum type with index 0 and one message type with index 0.)
+
+
+
+
+ Returns the name of the entity (field, message etc) being described.
+
+
+
+
+ The fully qualified name of the descriptor's target.
+
+
+
+
+ The file this descriptor was declared in.
+
+
+
+
+ Contains lookup tables containing all the descriptors defined in a particular file.
+
+
+
+
+ Finds a symbol of the given name within the pool.
+
+ The type of symbol to look for
+ Fully-qualified name to look up
+ The symbol with the given name and type,
+ or null if the symbol doesn't exist or has the wrong type
+
+
+
+ Adds a package to the symbol tables. If a package by the same name
+ already exists, that is fine, but if some other kind of symbol
+ exists under the same name, an exception is thrown. If the package
+ has multiple components, this also adds the parent package(s).
+
+
+
+
+ Adds a symbol to the symbol table.
+
+ The symbol already existed
+ in the symbol table.
+
+
+
+ Verifies that the descriptor's name is valid (i.e. it contains
+ only letters, digits and underscores, and does not start with a digit).
+
+
+
+
+
+ Returns the field with the given number in the given descriptor,
+ or null if it can't be found.
+
+
+
+
+ Adds a field to the fieldsByNumber table.
+
+ A field with the same
+ containing type and number already exists.
+
+
+
+ Adds an enum value to the enumValuesByNumber table. If an enum value
+ with the same type and number already exists, this method does nothing.
+ (This is allowed; the first value defined with the number takes precedence.)
+
+
+
+
+ Looks up a descriptor by name, relative to some other descriptor.
+ The name may be fully-qualified (with a leading '.'), partially-qualified,
+ or unqualified. C++-like name lookup semantics are used to search for the
+ matching descriptor.
+
+
+ This isn't heavily optimized, but it's only used during cross linking anyway.
+ If it starts being used more widely, we should look at performance more carefully.
+
+
+
+
+ Struct used to hold the keys for the fieldByNumber table.
+
+
+
+
+ Internal class containing utility methods when working with descriptors.
+
+
+
+
+ Equivalent to Func[TInput, int, TOutput] but usable in .NET 2.0. Only used to convert
+ arrays.
+
+
+
+
+ Converts the given array into a read-only list, applying the specified conversion to
+ each input element.
+
+
+
+
+ Thrown when building descriptors fails because the source DescriptorProtos
+ are not valid.
+
+
+
+
+ The full name of the descriptor where the error occurred.
+
+
+
+
+ A human-readable description of the error. (The Message property
+ is made up of the descriptor's name and this description.)
+
+
+
+
+ Descriptor for an enum type in a .proto file.
+
+
+
+
+ The brief name of the descriptor's target.
+
+
+
+
+ The CLR type for this enum. For generated code, this will be a CLR enum type.
+
+
+
+
+ If this is a nested type, get the outer descriptor, otherwise null.
+
+
+
+
+ An unmodifiable list of defined value descriptors for this enum.
+
+
+
+
+ Finds an enum value by number. If multiple enum values have the
+ same number, this returns the first defined value with that number.
+ If there is no value for the given number, this returns null.
+
+
+
+
+ Finds an enum value by name.
+
+ The unqualified name of the value (e.g. "FOO").
+ The value's descriptor, or null if not found.
+
+
+
+ The (possibly empty) set of custom options for this enum.
+
+
+
+
+ Descriptor for a single enum value within an enum in a .proto file.
+
+
+
+
+ Returns the name of the enum value described by this object.
+
+
+
+
+ Returns the number associated with this enum value.
+
+
+
+
+ Returns the enum descriptor that this value is part of.
+
+
+
+
+ The (possibly empty) set of custom options for this enum value.
+
+
+
+
+ Base class for field accessors.
+
+
+
+
+ Descriptor for a field or extension within a message in a .proto file.
+
+
+
+
+ Get the field's containing message type.
+
+
+
+
+ Returns the oneof containing this field, or null if it is not part of a oneof.
+
+
+
+
+ The effective JSON name for this field. This is usually the lower-camel-cased form of the field name,
+ but can be overridden using the json_name option in the .proto file.
+
+
+
+
+ The brief name of the descriptor's target.
+
+
+
+
+ Returns the accessor for this field.
+
+
+
+ While a describes the field, it does not provide
+ any way of obtaining or changing the value of the field within a specific message;
+ that is the responsibility of the accessor.
+
+
+ The value returned by this property will be non-null for all regular fields. However,
+ if a message containing a map field is introspected, the list of nested messages will include
+ an auto-generated nested key/value pair message for the field. This is not represented in any
+ generated type, and the value of the map field itself is represented by a dictionary in the
+ reflection API. There are never instances of those "hidden" messages, so no accessor is provided
+ and this property will return null.
+
+
+
+
+
+ Maps a field type as included in the .proto file to a FieldType.
+
+
+
+
+ Returns true if this field is a repeated field; false otherwise.
+
+
+
+
+ Returns true if this field is a map field; false otherwise.
+
+
+
+
+ Returns true if this field is a packed, repeated field; false otherwise.
+
+
+
+
+ Returns the type of the field.
+
+
+
+
+ Returns the field number declared in the proto file.
+
+
+
+
+ Compares this descriptor with another one, ordering in "canonical" order
+ which simply means ascending order by field number.
+ must be a field of the same type, i.e. the of
+ both fields must be the same.
+
+
+
+
+ For enum fields, returns the field's type.
+
+
+
+
+ For embedded message and group fields, returns the field's type.
+
+
+
+
+ The (possibly empty) set of custom options for this field.
+
+
+
+
+ Look up and cross-link all field types etc.
+
+
+
+
+ Enumeration of all the possible field types.
+
+
+
+
+ The double field type.
+
+
+
+
+ The float field type.
+
+
+
+
+ The int64 field type.
+
+
+
+
+ The uint64 field type.
+
+
+
+
+ The int32 field type.
+
+
+
+
+ The fixed64 field type.
+
+
+
+
+ The fixed32 field type.
+
+
+
+
+ The bool field type.
+
+
+
+
+ The string field type.
+
+
+
+
+ The field type used for groups (not supported in this implementation).
+
+
+
+
+ The field type used for message fields.
+
+
+
+
+ The bytes field type.
+
+
+
+
+ The uint32 field type.
+
+
+
+
+ The sfixed32 field type.
+
+
+
+
+ The sfixed64 field type.
+
+
+
+
+ The sint32 field type.
+
+
+
+
+ The sint64 field type.
+
+
+
+
+ The field type used for enum fields.
+
+
+
+
+ Describes a .proto file, including everything defined within.
+ IDescriptor is implemented such that the File property returns this descriptor,
+ and the FullName is the same as the Name.
+
+
+
+
+ Computes the full name of a descriptor within this file, with an optional parent message.
+
+
+
+
+ Extracts public dependencies from direct dependencies. This is a static method despite its
+ first parameter, as the value we're in the middle of constructing is only used for exceptions.
+
+
+
+
+ The descriptor in its protocol message representation.
+
+
+
+
+ The file name.
+
+
+
+
+ The package as declared in the .proto file. This may or may not
+ be equivalent to the .NET namespace of the generated classes.
+
+
+
+
+ Unmodifiable list of top-level message types declared in this file.
+
+
+
+
+ Unmodifiable list of top-level enum types declared in this file.
+
+
+
+
+ Unmodifiable list of top-level services declared in this file.
+
+
+
+
+ Unmodifiable list of this file's dependencies (imports).
+
+
+
+
+ Unmodifiable list of this file's public dependencies (public imports).
+
+
+
+
+ The original serialized binary form of this descriptor.
+
+
+
+
+ Implementation of IDescriptor.FullName - just returns the same as Name.
+
+
+
+
+ Implementation of IDescriptor.File - just returns this descriptor.
+
+
+
+
+ Pool containing symbol descriptors.
+
+
+
+
+ Finds a type (message, enum, service or extension) in the file by name. Does not find nested types.
+
+ The unqualified type name to look for.
+ The type of descriptor to look for
+ The type's descriptor, or null if not found.
+
+
+
+ Builds a FileDescriptor from its protocol buffer representation.
+
+ The original serialized descriptor data.
+ We have only limited proto2 support, so serializing FileDescriptorProto
+ would not necessarily give us this.
+ The protocol message form of the FileDescriptor.
+ FileDescriptors corresponding to all of the
+ file's dependencies, in the exact order listed in the .proto file. May be null,
+ in which case it is treated as an empty array.
+ Whether unknown dependencies are ignored (true) or cause an exception to be thrown (false).
+ Details about generated code, for the purposes of reflection.
+ If is not
+ a valid descriptor. This can occur for a number of reasons, such as a field
+ having an undefined type or because two messages were defined with the same name.
+
+
+
+ Creates a descriptor for generated code.
+
+
+ This method is only designed to be used by the results of generating code with protoc,
+ which creates the appropriate dependencies etc. It has to be public because the generated
+ code is "external", but should not be called directly by end users.
+
+
+
+
+ Returns a that represents this instance.
+
+
+ A that represents this instance.
+
+
+
+
+ Returns the file descriptor for descriptor.proto.
+
+
+ This is used for protos which take a direct dependency on descriptor.proto, typically for
+ annotations. While descriptor.proto is a proto2 file, it is built into the Google.Protobuf
+ runtime for reflection purposes. The messages are internal to the runtime as they would require
+ proto2 semantics for full support, but the file descriptor is available via this property. The
+ C# codegen in protoc automatically uses this property when it detects a dependency on descriptor.proto.
+
+
+ The file descriptor for descriptor.proto.
+
+
+
+
+ The (possibly empty) set of custom options for this file.
+
+
+
+
+ Performs initialization for the given generic type argument.
+
+
+ This method is present for the sake of AOT compilers. It allows code (whether handwritten or generated)
+ to make calls into the reflection machinery of this library to express an intention to use that type
+ reflectively (e.g. for JSON parsing and formatting). The call itself does almost nothing, but AOT compilers
+ attempting to determine which generic type arguments need to be handled will spot the code path and act
+ accordingly.
+
+ The type to force initialization for.
+
+
+
+ Extra information provided by generated code when initializing a message or file descriptor.
+ These are constructed as required, and are not long-lived. Hand-written code should
+ never need to use this type.
+
+
+
+
+ Irrelevant for file descriptors; the CLR type for the message for message descriptors.
+
+
+
+
+ Irrelevant for file descriptors; the parser for message descriptors.
+
+
+
+
+ Irrelevant for file descriptors; the CLR property names (in message descriptor field order)
+ for fields in the message for message descriptors.
+
+
+
+
+ Irrelevant for file descriptors; the CLR property "base" names (in message descriptor oneof order)
+ for oneofs in the message for message descriptors. It is expected that for a oneof name of "Foo",
+ there will be a "FooCase" property and a "ClearFoo" method.
+
+
+
+
+ The reflection information for types within this file/message descriptor. Elements may be null
+ if there is no corresponding generated type, e.g. for map entry types.
+
+
+
+
+ The CLR types for enums within this file/message descriptor.
+
+
+
+
+ Creates a GeneratedClrTypeInfo for a message descriptor, with nested types, nested enums, the CLR type, property names and oneof names.
+ Each array parameter may be null, to indicate a lack of values.
+ The parameter order is designed to make it feasible to format the generated code readably.
+
+
+
+
+ Creates a GeneratedClrTypeInfo for a file descriptor, with only types and enums.
+
+
+
+
+ Interface implemented by all descriptor types.
+
+
+
+
+ Returns the name of the entity (message, field etc) being described.
+
+
+
+
+ Returns the fully-qualified name of the entity being described.
+
+
+
+
+ Returns the descriptor for the .proto file that this entity is part of.
+
+
+
+
+ Allows fields to be reflectively accessed.
+
+
+
+
+ Returns the descriptor associated with this field.
+
+
+
+
+ Clears the field in the specified message. (For repeated fields,
+ this clears the list.)
+
+
+
+
+ Fetches the field value. For repeated values, this will be an
+ implementation. For map values, this will be an
+ implementation.
+
+
+
+
+ Mutator for single "simple" fields only.
+
+
+ Repeated fields are mutated by fetching the value and manipulating it as a list.
+ Map fields are mutated by fetching the value and manipulating it as a dictionary.
+
+ The field is not a "simple" field.
+
+
+
+ Accessor for map fields.
+
+
+
+
+ Describes a message type.
+
+
+
+
+ The brief name of the descriptor's target.
+
+
+
+
+ The CLR type used to represent message instances from this descriptor.
+
+
+
+ The value returned by this property will be non-null for all regular fields. However,
+ if a message containing a map field is introspected, the list of nested messages will include
+ an auto-generated nested key/value pair message for the field. This is not represented in any
+ generated type, so this property will return null in such cases.
+
+
+ For wrapper types ( and the like), the type returned here
+ will be the generated message type, not the native type used by reflection for fields of those types. Code
+ using reflection should call to determine whether a message descriptor represents
+ a wrapper type, and handle the result appropriately.
+
+
+
+
+
+ A parser for this message type.
+
+
+
+ As is not generic, this cannot be statically
+ typed to the relevant type, but it should produce objects of a type compatible with .
+
+
+ The value returned by this property will be non-null for all regular fields. However,
+ if a message containing a map field is introspected, the list of nested messages will include
+ an auto-generated nested key/value pair message for the field. No message parser object is created for
+ such messages, so this property will return null in such cases.
+
+
+ For wrapper types ( and the like), the parser returned here
+ will be the generated message type, not the native type used by reflection for fields of those types. Code
+ using reflection should call to determine whether a message descriptor represents
+ a wrapper type, and handle the result appropriately.
+
+
+
+
+
+ Returns whether this message is one of the "well known types" which may have runtime/protoc support.
+
+
+
+
+ Returns whether this message is one of the "wrapper types" used for fields which represent primitive values
+ with the addition of presence.
+
+
+
+
+ If this is a nested type, get the outer descriptor, otherwise null.
+
+
+
+
+ A collection of fields, which can be retrieved by name or field number.
+
+
+
+
+ An unmodifiable list of this message type's nested types.
+
+
+
+
+ An unmodifiable list of this message type's enum types.
+
+
+
+
+ An unmodifiable list of the "oneof" field collections in this message type.
+
+
+
+
+ Finds a field by field name.
+
+ The unqualified name of the field (e.g. "foo").
+ The field's descriptor, or null if not found.
+
+
+
+ Finds a field by field number.
+
+ The field number within this message type.
+ The field's descriptor, or null if not found.
+
+
+
+ Finds a nested descriptor by name. The is valid for fields, nested
+ message types, oneofs and enums.
+
+ The unqualified name of the descriptor, e.g. "Foo"
+ The descriptor, or null if not found.
+
+
+
+ The (possibly empty) set of custom options for this message.
+
+
+
+
+ Looks up and cross-links all fields and nested types.
+
+
+
+
+ A collection to simplify retrieving the field accessor for a particular field.
+
+
+
+
+ Returns the fields in the message as an immutable list, in the order in which they
+ are declared in the source .proto file.
+
+
+
+
+ Returns the fields in the message as an immutable list, in ascending field number
+ order. Field numbers need not be contiguous, so there is no direct mapping from the
+ index in the list to the field number; to retrieve a field by field number, it is better
+ to use the indexer.
+
+
+
+
+ Returns a read-only dictionary mapping the field names in this message as they're available
+ in the JSON representation to the field descriptors. For example, a field foo_bar
+ in the message would result two entries, one with a key fooBar and one with a key
+ foo_bar, both referring to the same field.
+
+
+
+
+ Retrieves the descriptor for the field with the given number.
+
+ Number of the field to retrieve the descriptor for
+ The accessor for the given field
+ The message descriptor does not contain a field
+ with the given number
+
+
+
+ Retrieves the descriptor for the field with the given name.
+
+ Name of the field to retrieve the descriptor for
+ The descriptor for the given field
+ The message descriptor does not contain a field
+ with the given name
+
+
+
+ Describes a single method in a service.
+
+
+
+
+ The service this method belongs to.
+
+
+
+
+ The method's input type.
+
+
+
+
+ The method's input type.
+
+
+
+
+ Indicates if client streams multiple requests.
+
+
+
+
+ Indicates if server streams multiple responses.
+
+
+
+
+ The (possibly empty) set of custom options for this method.
+
+
+
+
+ The brief name of the descriptor's target.
+
+
+
+
+ Reflection access for a oneof, allowing clear and "get case" actions.
+
+
+
+
+ Gets the descriptor for this oneof.
+
+
+ The descriptor of the oneof.
+
+
+
+
+ Clears the oneof in the specified message.
+
+
+
+
+ Indicates which field in the oneof is set for specified message
+
+
+
+
+ Describes a "oneof" field collection in a message type: a set of
+ fields of which at most one can be set in any particular message.
+
+
+
+
+ The brief name of the descriptor's target.
+
+
+
+
+ Gets the message type containing this oneof.
+
+
+ The message type containing this oneof.
+
+
+
+
+ Gets the fields within this oneof, in declaration order.
+
+
+ The fields within this oneof, in declaration order.
+
+
+
+
+ Gets an accessor for reflective access to the values associated with the oneof
+ in a particular message.
+
+
+ The accessor used for reflective access.
+
+
+
+
+ The (possibly empty) set of custom options for this oneof.
+
+
+
+
+ Specifies the original name (in the .proto file) of a named element,
+ such as an enum value.
+
+
+
+
+ The name of the element in the .proto file.
+
+
+
+
+ If the name is preferred in the .proto file.
+
+
+
+
+ Constructs a new attribute instance for the given name.
+
+ The name of the element in the .proto file.
+
+
+
+ Represents a package in the symbol table. We use PackageDescriptors
+ just as placeholders so that someone cannot define, say, a message type
+ that has the same name as an existing package.
+
+
+
+
+ The methods in this class are somewhat evil, and should not be tampered with lightly.
+ Basically they allow the creation of relatively weakly typed delegates from MethodInfos
+ which are more strongly typed. They do this by creating an appropriate strongly typed
+ delegate from the MethodInfo, and then calling that within an anonymous method.
+ Mind-bending stuff (at least to your humble narrator) but the resulting delegates are
+ very fast compared with calling Invoke later on.
+
+
+
+
+ Empty Type[] used when calling GetProperty to force property instead of indexer fetching.
+
+
+
+
+ Creates a delegate which will cast the argument to the type that declares the method,
+ call the method on it, then convert the result to object.
+
+ The method to create a delegate for, which must be declared in an IMessage
+ implementation.
+
+
+
+ Creates a delegate which will cast the argument to the type that declares the method,
+ call the method on it, then convert the result to the specified type. The method is expected
+ to actually return an enum (because of where we're calling it - for oneof cases). Sometimes that
+ means we need some extra work to perform conversions.
+
+ The method to create a delegate for, which must be declared in an IMessage
+ implementation.
+
+
+
+ Creates a delegate which will execute the given method after casting the first argument to
+ the type that declares the method, and the second argument to the first parameter type of the method.
+
+ The method to create a delegate for, which must be declared in an IMessage
+ implementation.
+
+
+
+ Creates a delegate which will execute the given method after casting the first argument to
+ type that declares the method.
+
+ The method to create a delegate for, which must be declared in an IMessage
+ implementation.
+
+
+
+ Creates a reflection helper for the given type arguments. Currently these are created on demand
+ rather than cached; this will be "busy" when initially loading a message's descriptor, but after that
+ they can be garbage collected. We could cache them by type if that proves to be important, but creating
+ an object is pretty cheap.
+
+
+
+
+ Accessor for repeated fields.
+
+
+
+
+ Describes a service type.
+
+
+
+
+ The brief name of the descriptor's target.
+
+
+
+
+ An unmodifiable list of methods in this service.
+
+
+
+
+ Finds a method by name.
+
+ The unqualified name of the method (e.g. "Foo").
+ The method's decsriptor, or null if not found.
+
+
+
+ The (possibly empty) set of custom options for this service.
+
+
+
+
+ Accessor for single fields.
+
+
+
+
+ An immutable registry of types which can be looked up by their full name.
+
+
+
+
+ An empty type registry, containing no types.
+
+
+
+
+ Attempts to find a message descriptor by its full name.
+
+ The full name of the message, which is the dot-separated
+ combination of package, containing messages and message name
+ The message descriptor corresponding to or null
+ if there is no such message descriptor.
+
+
+
+ Creates a type registry from the specified set of file descriptors.
+
+
+ This is a convenience overload for
+ to allow calls such as TypeRegistry.FromFiles(descriptor1, descriptor2).
+
+ The set of files to include in the registry. Must not contain null values.
+ A type registry for the given files.
+
+
+
+ Creates a type registry from the specified set of file descriptors.
+
+
+ All message types within all the specified files are added to the registry, and
+ the dependencies of the specified files are also added, recursively.
+
+ The set of files to include in the registry. Must not contain null values.
+ A type registry for the given files.
+
+
+
+ Creates a type registry from the file descriptor parents of the specified set of message descriptors.
+
+
+ This is a convenience overload for
+ to allow calls such as TypeRegistry.FromFiles(descriptor1, descriptor2).
+
+ The set of message descriptors to use to identify file descriptors to include in the registry.
+ Must not contain null values.
+ A type registry for the given files.
+
+
+
+ Creates a type registry from the file descriptor parents of the specified set of message descriptors.
+
+
+ The specified message descriptors are only used to identify their file descriptors; the returned registry
+ contains all the types within the file descriptors which contain the specified message descriptors (and
+ the dependencies of those files), not just the specified messages.
+
+ The set of message descriptors to use to identify file descriptors to include in the registry.
+ Must not contain null values.
+ A type registry for the given files.
+
+
+
+ Builder class which isn't exposed, but acts as a convenient alternative to passing round two dictionaries in recursive calls.
+
+
+
+
+ Represents a single field in an UnknownFieldSet.
+
+ An UnknownField consists of four lists of values. The lists correspond
+ to the four "wire types" used in the protocol buffer binary format.
+ Normally, only one of the four lists will contain any values, since it
+ is impossible to define a valid message type that declares two different
+ types for the same field number. However, the code is designed to allow
+ for the case where the same unknown field number is encountered using
+ multiple different wire types.
+
+
+
+
+
+ Creates a new UnknownField.
+
+
+
+
+ Checks if two unknown field are equal.
+
+
+
+
+ Get the hash code of the unknown field.
+
+
+
+
+ Serializes the field, including the field number, and writes it to
+
+
+ The unknown field number.
+ The CodedOutputStream to write to.
+
+
+
+ Computes the number of bytes required to encode this field, including field
+ number.
+
+
+
+
+ Merge the values in into this field. For each list
+ of values, 's values are append to the ones in this
+ field.
+
+
+
+
+ Returns a new list containing all of the given specified values from
+ both the and lists.
+ If is null and is empty,
+ null is returned. Otherwise, either a new list is created (if
+ is null) or the elements of are added to .
+
+
+
+
+ Adds a varint value.
+
+
+
+
+ Adds a fixed32 value.
+
+
+
+
+ Adds a fixed64 value.
+
+
+
+
+ Adds a length-delimited value.
+
+
+
+
+ Adds to the , creating
+ a new list if is null. The list is returned - either
+ the original reference or the new list.
+
+
+
+
+ Used to keep track of fields which were seen when parsing a protocol message
+ but whose field numbers or types are unrecognized. This most frequently
+ occurs when new fields are added to a message type and then messages containing
+ those fields are read by old software that was built before the new types were
+ added.
+
+ Most users will never need to use this class directly.
+
+
+
+
+ Creates a new UnknownFieldSet.
+
+
+
+
+ Checks whether or not the given field number is present in the set.
+
+
+
+
+ Serializes the set and writes it to .
+
+
+
+
+ Gets the number of bytes required to encode this set.
+
+
+
+
+ Checks if two unknown field sets are equal.
+
+
+
+
+ Gets the unknown field set's hash code.
+
+
+
+
+ Adds a field to the set. If a field with the same number already exists, it
+ is replaced.
+
+
+
+
+ Parse a single field from and merge it
+ into this set.
+
+ The coded input stream containing the field
+ false if the tag is an "end group" tag, true otherwise
+
+
+
+ Create a new UnknownFieldSet if unknownFields is null.
+ Parse a single field from and merge it
+ into unknownFields. If is configured to discard unknown fields,
+ will be returned as-is and the field will be skipped.
+
+ The UnknownFieldSet which need to be merged
+ The coded input stream containing the field
+ The merged UnknownFieldSet
+
+
+
+ Merges the fields from into this set.
+ If a field number exists in both sets, the values in
+ will be appended to the values in this set.
+
+
+
+
+ Created a new UnknownFieldSet to if
+ needed and merges the fields from into the first set.
+ If a field number exists in both sets, the values in
+ will be appended to the values in this set.
+
+
+
+
+ Adds a field to the unknown field set. If a field with the same
+ number already exists, the two are merged.
+
+
+
+
+ Clone an unknown field set from .
+
+
+
+ Holder for reflection information generated from google/protobuf/any.proto
+
+
+ File descriptor for google/protobuf/any.proto
+
+
+
+ `Any` contains an arbitrary serialized protocol buffer message along with a
+ URL that describes the type of the serialized message.
+
+ Protobuf library provides support to pack/unpack Any values in the form
+ of utility functions or additional generated methods of the Any type.
+
+ Example 1: Pack and unpack a message in C++.
+
+ Foo foo = ...;
+ Any any;
+ any.PackFrom(foo);
+ ...
+ if (any.UnpackTo(&foo)) {
+ ...
+ }
+
+ Example 2: Pack and unpack a message in Java.
+
+ Foo foo = ...;
+ Any any = Any.pack(foo);
+ ...
+ if (any.is(Foo.class)) {
+ foo = any.unpack(Foo.class);
+ }
+
+ Example 3: Pack and unpack a message in Python.
+
+ foo = Foo(...)
+ any = Any()
+ any.Pack(foo)
+ ...
+ if any.Is(Foo.DESCRIPTOR):
+ any.Unpack(foo)
+ ...
+
+ Example 4: Pack and unpack a message in Go
+
+ foo := &pb.Foo{...}
+ any, err := ptypes.MarshalAny(foo)
+ ...
+ foo := &pb.Foo{}
+ if err := ptypes.UnmarshalAny(any, foo); err != nil {
+ ...
+ }
+
+ The pack methods provided by protobuf library will by default use
+ 'type.googleapis.com/full.type.name' as the type URL and the unpack
+ methods only use the fully qualified type name after the last '/'
+ in the type URL, for example "foo.bar.com/x/y.z" will yield type
+ name "y.z".
+
+ JSON
+ ====
+ The JSON representation of an `Any` value uses the regular
+ representation of the deserialized, embedded message, with an
+ additional field `@type` which contains the type URL. Example:
+
+ package google.profile;
+ message Person {
+ string first_name = 1;
+ string last_name = 2;
+ }
+
+ {
+ "@type": "type.googleapis.com/google.profile.Person",
+ "firstName": <string>,
+ "lastName": <string>
+ }
+
+ If the embedded message type is well-known and has a custom JSON
+ representation, that representation will be embedded adding a field
+ `value` which holds the custom JSON in addition to the `@type`
+ field. Example (for message [google.protobuf.Duration][]):
+
+ {
+ "@type": "type.googleapis.com/google.protobuf.Duration",
+ "value": "1.212s"
+ }
+
+
+
+ Field number for the "type_url" field.
+
+
+
+ A URL/resource name that uniquely identifies the type of the serialized
+ protocol buffer message. The last segment of the URL's path must represent
+ the fully qualified name of the type (as in
+ `path/google.protobuf.Duration`). The name should be in a canonical form
+ (e.g., leading "." is not accepted).
+
+ In practice, teams usually precompile into the binary all types that they
+ expect it to use in the context of Any. However, for URLs which use the
+ scheme `http`, `https`, or no scheme, one can optionally set up a type
+ server that maps type URLs to message definitions as follows:
+
+ * If no scheme is provided, `https` is assumed.
+ * An HTTP GET on the URL must yield a [google.protobuf.Type][]
+ value in binary format, or produce an error.
+ * Applications are allowed to cache lookup results based on the
+ URL, or have them precompiled into a binary to avoid any
+ lookup. Therefore, binary compatibility needs to be preserved
+ on changes to types. (Use versioned type names to manage
+ breaking changes.)
+
+ Note: this functionality is not currently available in the official
+ protobuf release, and it is not used for type URLs beginning with
+ type.googleapis.com.
+
+ Schemes other than `http`, `https` (or the empty scheme) might be
+ used with implementation specific semantics.
+
+
+
+ Field number for the "value" field.
+
+
+
+ Must be a valid serialized protocol buffer of the above specified type.
+
+
+
+
+ Retrieves the type name for a type URL, matching the
+ of the packed message type.
+
+
+
+ This is always just the last part of the URL, after the final slash. No validation of
+ anything before the trailing slash is performed. If the type URL does not include a slash,
+ an empty string is returned rather than an exception being thrown; this won't match any types,
+ and the calling code is probably in a better position to give a meaningful error.
+
+
+ There is no handling of fragments or queries at the moment.
+
+
+ The URL to extract the type name from
+ The type name
+
+
+
+ Unpacks the content of this Any message into the target message type,
+ which must match the type URL within this Any message.
+
+ The type of message to unpack the content into.
+ The unpacked message.
+ The target message type doesn't match the type URL in this message
+
+
+
+ Attempts to unpack the content of this Any message into the target message type,
+ if it matches the type URL within this Any message.
+
+ The type of message to attempt to unpack the content into.
+ true if the message was successfully unpacked; false if the type name didn't match
+
+
+
+ Packs the specified message into an Any message using a type URL prefix of "type.googleapis.com".
+
+ The message to pack.
+ An Any message with the content and type URL of .
+
+
+
+ Packs the specified message into an Any message using the specified type URL prefix.
+
+ The message to pack.
+ The prefix for the type URL.
+ An Any message with the content and type URL of .
+
+
+ Holder for reflection information generated from google/protobuf/api.proto
+
+
+ File descriptor for google/protobuf/api.proto
+
+
+
+ Api is a light-weight descriptor for an API Interface.
+
+ Interfaces are also described as "protocol buffer services" in some contexts,
+ such as by the "service" keyword in a .proto file, but they are different
+ from API Services, which represent a concrete implementation of an interface
+ as opposed to simply a description of methods and bindings. They are also
+ sometimes simply referred to as "APIs" in other contexts, such as the name of
+ this message itself. See https://cloud.google.com/apis/design/glossary for
+ detailed terminology.
+
+
+
+ Field number for the "name" field.
+
+
+
+ The fully qualified name of this interface, including package name
+ followed by the interface's simple name.
+
+
+
+ Field number for the "methods" field.
+
+
+
+ The methods of this interface, in unspecified order.
+
+
+
+ Field number for the "options" field.
+
+
+
+ Any metadata attached to the interface.
+
+
+
+ Field number for the "version" field.
+
+
+
+ A version string for this interface. If specified, must have the form
+ `major-version.minor-version`, as in `1.10`. If the minor version is
+ omitted, it defaults to zero. If the entire version field is empty, the
+ major version is derived from the package name, as outlined below. If the
+ field is not empty, the version in the package name will be verified to be
+ consistent with what is provided here.
+
+ The versioning schema uses [semantic
+ versioning](http://semver.org) where the major version number
+ indicates a breaking change and the minor version an additive,
+ non-breaking change. Both version numbers are signals to users
+ what to expect from different versions, and should be carefully
+ chosen based on the product plan.
+
+ The major version is also reflected in the package name of the
+ interface, which must end in `v<major-version>`, as in
+ `google.feature.v1`. For major versions 0 and 1, the suffix can
+ be omitted. Zero major versions must only be used for
+ experimental, non-GA interfaces.
+
+
+
+ Field number for the "source_context" field.
+
+
+
+ Source context for the protocol buffer service represented by this
+ message.
+
+
+
+ Field number for the "mixins" field.
+
+
+
+ Included interfaces. See [Mixin][].
+
+
+
+ Field number for the "syntax" field.
+
+
+
+ The source syntax of the service.
+
+
+
+
+ Method represents a method of an API interface.
+
+
+
+ Field number for the "name" field.
+
+
+
+ The simple name of this method.
+
+
+
+ Field number for the "request_type_url" field.
+
+
+
+ A URL of the input message type.
+
+
+
+ Field number for the "request_streaming" field.
+
+
+
+ If true, the request is streamed.
+
+
+
+ Field number for the "response_type_url" field.
+
+
+
+ The URL of the output message type.
+
+
+
+ Field number for the "response_streaming" field.
+
+
+
+ If true, the response is streamed.
+
+
+
+ Field number for the "options" field.
+
+
+
+ Any metadata attached to the method.
+
+
+
+ Field number for the "syntax" field.
+
+
+
+ The source syntax of this method.
+
+
+
+
+ Declares an API Interface to be included in this interface. The including
+ interface must redeclare all the methods from the included interface, but
+ documentation and options are inherited as follows:
+
+ - If after comment and whitespace stripping, the documentation
+ string of the redeclared method is empty, it will be inherited
+ from the original method.
+
+ - Each annotation belonging to the service config (http,
+ visibility) which is not set in the redeclared method will be
+ inherited.
+
+ - If an http annotation is inherited, the path pattern will be
+ modified as follows. Any version prefix will be replaced by the
+ version of the including interface plus the [root][] path if
+ specified.
+
+ Example of a simple mixin:
+
+ package google.acl.v1;
+ service AccessControl {
+ // Get the underlying ACL object.
+ rpc GetAcl(GetAclRequest) returns (Acl) {
+ option (google.api.http).get = "/v1/{resource=**}:getAcl";
+ }
+ }
+
+ package google.storage.v2;
+ service Storage {
+ rpc GetAcl(GetAclRequest) returns (Acl);
+
+ // Get a data record.
+ rpc GetData(GetDataRequest) returns (Data) {
+ option (google.api.http).get = "/v2/{resource=**}";
+ }
+ }
+
+ Example of a mixin configuration:
+
+ apis:
+ - name: google.storage.v2.Storage
+ mixins:
+ - name: google.acl.v1.AccessControl
+
+ The mixin construct implies that all methods in `AccessControl` are
+ also declared with same name and request/response types in
+ `Storage`. A documentation generator or annotation processor will
+ see the effective `Storage.GetAcl` method after inherting
+ documentation and annotations as follows:
+
+ service Storage {
+ // Get the underlying ACL object.
+ rpc GetAcl(GetAclRequest) returns (Acl) {
+ option (google.api.http).get = "/v2/{resource=**}:getAcl";
+ }
+ ...
+ }
+
+ Note how the version in the path pattern changed from `v1` to `v2`.
+
+ If the `root` field in the mixin is specified, it should be a
+ relative path under which inherited HTTP paths are placed. Example:
+
+ apis:
+ - name: google.storage.v2.Storage
+ mixins:
+ - name: google.acl.v1.AccessControl
+ root: acls
+
+ This implies the following inherited HTTP annotation:
+
+ service Storage {
+ // Get the underlying ACL object.
+ rpc GetAcl(GetAclRequest) returns (Acl) {
+ option (google.api.http).get = "/v2/acls/{resource=**}:getAcl";
+ }
+ ...
+ }
+
+
+
+ Field number for the "name" field.
+
+
+
+ The fully qualified name of the interface which is included.
+
+
+
+ Field number for the "root" field.
+
+
+
+ If non-empty specifies a path under which inherited HTTP paths
+ are rooted.
+
+
+
+ Holder for reflection information generated from google/protobuf/duration.proto
+
+
+ File descriptor for google/protobuf/duration.proto
+
+
+
+ A Duration represents a signed, fixed-length span of time represented
+ as a count of seconds and fractions of seconds at nanosecond
+ resolution. It is independent of any calendar and concepts like "day"
+ or "month". It is related to Timestamp in that the difference between
+ two Timestamp values is a Duration and it can be added or subtracted
+ from a Timestamp. Range is approximately +-10,000 years.
+
+ # Examples
+
+ Example 1: Compute Duration from two Timestamps in pseudo code.
+
+ Timestamp start = ...;
+ Timestamp end = ...;
+ Duration duration = ...;
+
+ duration.seconds = end.seconds - start.seconds;
+ duration.nanos = end.nanos - start.nanos;
+
+ if (duration.seconds < 0 && duration.nanos > 0) {
+ duration.seconds += 1;
+ duration.nanos -= 1000000000;
+ } else if (durations.seconds > 0 && duration.nanos < 0) {
+ duration.seconds -= 1;
+ duration.nanos += 1000000000;
+ }
+
+ Example 2: Compute Timestamp from Timestamp + Duration in pseudo code.
+
+ Timestamp start = ...;
+ Duration duration = ...;
+ Timestamp end = ...;
+
+ end.seconds = start.seconds + duration.seconds;
+ end.nanos = start.nanos + duration.nanos;
+
+ if (end.nanos < 0) {
+ end.seconds -= 1;
+ end.nanos += 1000000000;
+ } else if (end.nanos >= 1000000000) {
+ end.seconds += 1;
+ end.nanos -= 1000000000;
+ }
+
+ Example 3: Compute Duration from datetime.timedelta in Python.
+
+ td = datetime.timedelta(days=3, minutes=10)
+ duration = Duration()
+ duration.FromTimedelta(td)
+
+ # JSON Mapping
+
+ In JSON format, the Duration type is encoded as a string rather than an
+ object, where the string ends in the suffix "s" (indicating seconds) and
+ is preceded by the number of seconds, with nanoseconds expressed as
+ fractional seconds. For example, 3 seconds with 0 nanoseconds should be
+ encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should
+ be expressed in JSON format as "3.000000001s", and 3 seconds and 1
+ microsecond should be expressed in JSON format as "3.000001s".
+
+
+
+ Field number for the "seconds" field.
+
+
+
+ Signed seconds of the span of time. Must be from -315,576,000,000
+ to +315,576,000,000 inclusive. Note: these bounds are computed from:
+ 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
+
+
+
+ Field number for the "nanos" field.
+
+
+
+ Signed fractions of a second at nanosecond resolution of the span
+ of time. Durations less than one second are represented with a 0
+ `seconds` field and a positive or negative `nanos` field. For durations
+ of one second or more, a non-zero value for the `nanos` field must be
+ of the same sign as the `seconds` field. Must be from -999,999,999
+ to +999,999,999 inclusive.
+
+
+
+
+ The number of nanoseconds in a second.
+
+
+
+
+ The number of nanoseconds in a BCL tick (as used by and ).
+
+
+
+
+ The maximum permitted number of seconds.
+
+
+
+
+ The minimum permitted number of seconds.
+
+
+
+
+ Converts this to a .
+
+ If the duration is not a precise number of ticks, it is truncated towards 0.
+ The value of this duration, as a TimeSpan.
+ This value isn't a valid normalized duration, as
+ described in the documentation.
+
+
+
+ Converts the given to a .
+
+ The TimeSpan to convert.
+ The value of the given TimeSpan, as a Duration.
+
+
+
+ Returns the result of negating the duration. For example, the negation of 5 minutes is -5 minutes.
+
+ The duration to negate. Must not be null.
+ The negated value of this duration.
+
+
+
+ Adds the two specified values together.
+
+ The first value to add. Must not be null.
+ The second value to add. Must not be null.
+
+
+
+
+ Subtracts one from another.
+
+ The duration to subtract from. Must not be null.
+ The duration to subtract. Must not be null.
+ The difference between the two specified durations.
+
+
+
+ Creates a duration with the normalized values from the given number of seconds and
+ nanoseconds, conforming with the description in the proto file.
+
+
+
+
+ Converts a duration specified in seconds/nanoseconds to a string.
+
+
+ If the value is a normalized duration in the range described in duration.proto,
+ is ignored. Otherwise, if the parameter is true,
+ a JSON object with a warning is returned; if it is false, an is thrown.
+
+ Seconds portion of the duration.
+ Nanoseconds portion of the duration.
+ Determines the handling of non-normalized values
+ The represented duration is invalid, and is false.
+
+
+
+ Returns a string representation of this for diagnostic purposes.
+
+
+ Normally the returned value will be a JSON string value (including leading and trailing quotes) but
+ when the value is non-normalized or out of range, a JSON object representation will be returned
+ instead, including a warning. This is to avoid exceptions being thrown when trying to
+ diagnose problems - the regular JSON formatter will still throw an exception for non-normalized
+ values.
+
+ A string representation of this value.
+
+
+
+ Appends a number of nanoseconds to a StringBuilder. Either 0 digits are added (in which
+ case no "." is appended), or 3 6 or 9 digits. This is internal for use in Timestamp as well
+ as Duration.
+
+
+
+ Holder for reflection information generated from google/protobuf/empty.proto
+
+
+ File descriptor for google/protobuf/empty.proto
+
+
+
+ A generic empty message that you can re-use to avoid defining duplicated
+ empty messages in your APIs. A typical example is to use it as the request
+ or the response type of an API method. For instance:
+
+ service Foo {
+ rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
+ }
+
+ The JSON representation for `Empty` is empty JSON object `{}`.
+
+
+
+ Holder for reflection information generated from google/protobuf/field_mask.proto
+
+
+ File descriptor for google/protobuf/field_mask.proto
+
+
+
+ `FieldMask` represents a set of symbolic field paths, for example:
+
+ paths: "f.a"
+ paths: "f.b.d"
+
+ Here `f` represents a field in some root message, `a` and `b`
+ fields in the message found in `f`, and `d` a field found in the
+ message in `f.b`.
+
+ Field masks are used to specify a subset of fields that should be
+ returned by a get operation or modified by an update operation.
+ Field masks also have a custom JSON encoding (see below).
+
+ # Field Masks in Projections
+
+ When used in the context of a projection, a response message or
+ sub-message is filtered by the API to only contain those fields as
+ specified in the mask. For example, if the mask in the previous
+ example is applied to a response message as follows:
+
+ f {
+ a : 22
+ b {
+ d : 1
+ x : 2
+ }
+ y : 13
+ }
+ z: 8
+
+ The result will not contain specific values for fields x,y and z
+ (their value will be set to the default, and omitted in proto text
+ output):
+
+ f {
+ a : 22
+ b {
+ d : 1
+ }
+ }
+
+ A repeated field is not allowed except at the last position of a
+ paths string.
+
+ If a FieldMask object is not present in a get operation, the
+ operation applies to all fields (as if a FieldMask of all fields
+ had been specified).
+
+ Note that a field mask does not necessarily apply to the
+ top-level response message. In case of a REST get operation, the
+ field mask applies directly to the response, but in case of a REST
+ list operation, the mask instead applies to each individual message
+ in the returned resource list. In case of a REST custom method,
+ other definitions may be used. Where the mask applies will be
+ clearly documented together with its declaration in the API. In
+ any case, the effect on the returned resource/resources is required
+ behavior for APIs.
+
+ # Field Masks in Update Operations
+
+ A field mask in update operations specifies which fields of the
+ targeted resource are going to be updated. The API is required
+ to only change the values of the fields as specified in the mask
+ and leave the others untouched. If a resource is passed in to
+ describe the updated values, the API ignores the values of all
+ fields not covered by the mask.
+
+ If a repeated field is specified for an update operation, the existing
+ repeated values in the target resource will be overwritten by the new values.
+ Note that a repeated field is only allowed in the last position of a `paths`
+ string.
+
+ If a sub-message is specified in the last position of the field mask for an
+ update operation, then the existing sub-message in the target resource is
+ overwritten. Given the target message:
+
+ f {
+ b {
+ d : 1
+ x : 2
+ }
+ c : 1
+ }
+
+ And an update message:
+
+ f {
+ b {
+ d : 10
+ }
+ }
+
+ then if the field mask is:
+
+ paths: "f.b"
+
+ then the result will be:
+
+ f {
+ b {
+ d : 10
+ }
+ c : 1
+ }
+
+ However, if the update mask was:
+
+ paths: "f.b.d"
+
+ then the result would be:
+
+ f {
+ b {
+ d : 10
+ x : 2
+ }
+ c : 1
+ }
+
+ In order to reset a field's value to the default, the field must
+ be in the mask and set to the default value in the provided resource.
+ Hence, in order to reset all fields of a resource, provide a default
+ instance of the resource and set all fields in the mask, or do
+ not provide a mask as described below.
+
+ If a field mask is not present on update, the operation applies to
+ all fields (as if a field mask of all fields has been specified).
+ Note that in the presence of schema evolution, this may mean that
+ fields the client does not know and has therefore not filled into
+ the request will be reset to their default. If this is unwanted
+ behavior, a specific service may require a client to always specify
+ a field mask, producing an error if not.
+
+ As with get operations, the location of the resource which
+ describes the updated values in the request message depends on the
+ operation kind. In any case, the effect of the field mask is
+ required to be honored by the API.
+
+ ## Considerations for HTTP REST
+
+ The HTTP kind of an update operation which uses a field mask must
+ be set to PATCH instead of PUT in order to satisfy HTTP semantics
+ (PUT must only be used for full updates).
+
+ # JSON Encoding of Field Masks
+
+ In JSON, a field mask is encoded as a single string where paths are
+ separated by a comma. Fields name in each path are converted
+ to/from lower-camel naming conventions.
+
+ As an example, consider the following message declarations:
+
+ message Profile {
+ User user = 1;
+ Photo photo = 2;
+ }
+ message User {
+ string display_name = 1;
+ string address = 2;
+ }
+
+ In proto a field mask for `Profile` may look as such:
+
+ mask {
+ paths: "user.display_name"
+ paths: "photo"
+ }
+
+ In JSON, the same mask is represented as below:
+
+ {
+ mask: "user.displayName,photo"
+ }
+
+ # Field Masks and Oneof Fields
+
+ Field masks treat fields in oneofs just as regular fields. Consider the
+ following message:
+
+ message SampleMessage {
+ oneof test_oneof {
+ string name = 4;
+ SubMessage sub_message = 9;
+ }
+ }
+
+ The field mask can be:
+
+ mask {
+ paths: "name"
+ }
+
+ Or:
+
+ mask {
+ paths: "sub_message"
+ }
+
+ Note that oneof type names ("test_oneof" in this case) cannot be used in
+ paths.
+
+ ## Field Mask Verification
+
+ The implementation of any API method which has a FieldMask type field in the
+ request should verify the included field paths, and return an
+ `INVALID_ARGUMENT` error if any path is duplicated or unmappable.
+
+
+
+ Field number for the "paths" field.
+
+
+
+ The set of field mask paths.
+
+
+
+
+ Converts a timestamp specified in seconds/nanoseconds to a string.
+
+
+ If the value is a normalized duration in the range described in field_mask.proto,
+ is ignored. Otherwise, if the parameter is true,
+ a JSON object with a warning is returned; if it is false, an is thrown.
+
+ Paths in the field mask
+ Determines the handling of non-normalized values
+ The represented field mask is invalid, and is false.
+
+
+
+ Checks whether the given path is valid for a field mask.
+
+ true if the path is valid; false otherwise
+
+
+
+ Returns a string representation of this for diagnostic purposes.
+
+
+ Normally the returned value will be a JSON string value (including leading and trailing quotes) but
+ when the value is non-normalized or out of range, a JSON object representation will be returned
+ instead, including a warning. This is to avoid exceptions being thrown when trying to
+ diagnose problems - the regular JSON formatter will still throw an exception for non-normalized
+ values.
+
+ A string representation of this value.
+
+
+ Holder for reflection information generated from google/protobuf/source_context.proto
+
+
+ File descriptor for google/protobuf/source_context.proto
+
+
+
+ `SourceContext` represents information about the source of a
+ protobuf element, like the file in which it is defined.
+
+
+
+ Field number for the "file_name" field.
+
+
+
+ The path-qualified name of the .proto file that contained the associated
+ protobuf element. For example: `"google/protobuf/source_context.proto"`.
+
+
+
+ Holder for reflection information generated from google/protobuf/struct.proto
+
+
+ File descriptor for google/protobuf/struct.proto
+
+
+
+ `NullValue` is a singleton enumeration to represent the null value for the
+ `Value` type union.
+
+ The JSON representation for `NullValue` is JSON `null`.
+
+
+
+
+ Null value.
+
+
+
+
+ `Struct` represents a structured data value, consisting of fields
+ which map to dynamically typed values. In some languages, `Struct`
+ might be supported by a native representation. For example, in
+ scripting languages like JS a struct is represented as an
+ object. The details of that representation are described together
+ with the proto support for the language.
+
+ The JSON representation for `Struct` is JSON object.
+
+
+
+ Field number for the "fields" field.
+
+
+
+ Unordered map of dynamically typed values.
+
+
+
+
+ `Value` represents a dynamically typed value which can be either
+ null, a number, a string, a boolean, a recursive struct value, or a
+ list of values. A producer of value is expected to set one of that
+ variants, absence of any variant indicates an error.
+
+ The JSON representation for `Value` is JSON value.
+
+
+
+ Field number for the "null_value" field.
+
+
+
+ Represents a null value.
+
+
+
+ Field number for the "number_value" field.
+
+
+
+ Represents a double value.
+
+
+
+ Field number for the "string_value" field.
+
+
+
+ Represents a string value.
+
+
+
+ Field number for the "bool_value" field.
+
+
+
+ Represents a boolean value.
+
+
+
+ Field number for the "struct_value" field.
+
+
+
+ Represents a structured value.
+
+
+
+ Field number for the "list_value" field.
+
+
+
+ Represents a repeated `Value`.
+
+
+
+ Enum of possible cases for the "kind" oneof.
+
+
+
+ Convenience method to create a Value message with a string value.
+
+ Value to set for the StringValue property.
+ A newly-created Value message with the given value.
+
+
+
+ Convenience method to create a Value message with a number value.
+
+ Value to set for the NumberValue property.
+ A newly-created Value message with the given value.
+
+
+
+ Convenience method to create a Value message with a Boolean value.
+
+ Value to set for the BoolValue property.
+ A newly-created Value message with the given value.
+
+
+
+ Convenience method to create a Value message with a null initial value.
+
+ A newly-created Value message a null initial value.
+
+
+
+ Convenience method to create a Value message with an initial list of values.
+
+ The values provided are not cloned; the references are copied directly.
+ A newly-created Value message an initial list value.
+
+
+
+ Convenience method to create a Value message with an initial struct value
+
+ The value provided is not cloned; the reference is copied directly.
+ A newly-created Value message an initial struct value.
+
+
+
+ `ListValue` is a wrapper around a repeated field of values.
+
+ The JSON representation for `ListValue` is JSON array.
+
+
+
+ Field number for the "values" field.
+
+
+
+ Repeated field of dynamically typed values.
+
+
+
+
+ Extension methods on BCL time-related types, converting to protobuf types.
+
+
+
+
+ Converts the given to a .
+
+ The date and time to convert to a timestamp.
+ The value has a other than Utc.
+ The converted timestamp.
+
+
+
+ Converts the given to a
+
+ The offset is taken into consideration when converting the value (so the same instant in time
+ is represented) but is not a separate part of the resulting value. In other words, there is no
+ roundtrip operation to retrieve the original DateTimeOffset.
+ The date and time (with UTC offset) to convert to a timestamp.
+ The converted timestamp.
+
+
+
+ Converts the given to a .
+
+ The time span to convert.
+ The converted duration.
+
+
+ Holder for reflection information generated from google/protobuf/timestamp.proto
+
+
+ File descriptor for google/protobuf/timestamp.proto
+
+
+
+ A Timestamp represents a point in time independent of any time zone
+ or calendar, represented as seconds and fractions of seconds at
+ nanosecond resolution in UTC Epoch time. It is encoded using the
+ Proleptic Gregorian Calendar which extends the Gregorian calendar
+ backwards to year one. It is encoded assuming all minutes are 60
+ seconds long, i.e. leap seconds are "smeared" so that no leap second
+ table is needed for interpretation. Range is from
+ 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z.
+ By restricting to that range, we ensure that we can convert to
+ and from RFC 3339 date strings.
+ See [https://www.ietf.org/rfc/rfc3339.txt](https://www.ietf.org/rfc/rfc3339.txt).
+
+ # Examples
+
+ Example 1: Compute Timestamp from POSIX `time()`.
+
+ Timestamp timestamp;
+ timestamp.set_seconds(time(NULL));
+ timestamp.set_nanos(0);
+
+ Example 2: Compute Timestamp from POSIX `gettimeofday()`.
+
+ struct timeval tv;
+ gettimeofday(&tv, NULL);
+
+ Timestamp timestamp;
+ timestamp.set_seconds(tv.tv_sec);
+ timestamp.set_nanos(tv.tv_usec * 1000);
+
+ Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.
+
+ FILETIME ft;
+ GetSystemTimeAsFileTime(&ft);
+ UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;
+
+ // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
+ // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
+ Timestamp timestamp;
+ timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));
+ timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));
+
+ Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.
+
+ long millis = System.currentTimeMillis();
+
+ Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
+ .setNanos((int) ((millis % 1000) * 1000000)).build();
+
+ Example 5: Compute Timestamp from current time in Python.
+
+ timestamp = Timestamp()
+ timestamp.GetCurrentTime()
+
+ # JSON Mapping
+
+ In JSON format, the Timestamp type is encoded as a string in the
+ [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the
+ format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z"
+ where {year} is always expressed using four digits while {month}, {day},
+ {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional
+ seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),
+ are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
+ is required. A proto3 JSON serializer should always use UTC (as indicated by
+ "Z") when printing the Timestamp type and a proto3 JSON parser should be
+ able to accept both UTC and other timezones (as indicated by an offset).
+
+ For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
+ 01:30 UTC on January 15, 2017.
+
+ In JavaScript, one can convert a Date object to this format using the
+ standard [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString]
+ method. In Python, a standard `datetime.datetime` object can be converted
+ to this format using [`strftime`](https://docs.python.org/2/library/time.html#time.strftime)
+ with the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one
+ can use the Joda Time's [`ISODateTimeFormat.dateTime()`](
+ http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime--
+ ) to obtain a formatter capable of generating timestamps in this format.
+
+
+
+ Field number for the "seconds" field.
+
+
+
+ Represents seconds of UTC time since Unix epoch
+ 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
+ 9999-12-31T23:59:59Z inclusive.
+
+
+
+ Field number for the "nanos" field.
+
+
+
+ Non-negative fractions of a second at nanosecond resolution. Negative
+ second values with fractions must still have non-negative nanos values
+ that count forward in time. Must be from 0 to 999,999,999
+ inclusive.
+
+
+
+
+ Returns the difference between one and another, as a .
+
+ The timestamp to subtract from. Must not be null.
+ The timestamp to subtract. Must not be null.
+ The difference between the two specified timestamps.
+
+
+
+ Adds a to a , to obtain another Timestamp.
+
+ The timestamp to add the duration to. Must not be null.
+ The duration to add. Must not be null.
+ The result of adding the duration to the timestamp.
+
+
+
+ Subtracts a from a , to obtain another Timestamp.
+
+ The timestamp to subtract the duration from. Must not be null.
+ The duration to subtract.
+ The result of subtracting the duration from the timestamp.
+
+
+
+ Converts this timestamp into a .
+
+
+ The resulting DateTime will always have a Kind of Utc.
+ If the timestamp is not a precise number of ticks, it will be truncated towards the start
+ of time. For example, a timestamp with a value of 99 will result in a
+ value precisely on a second.
+
+ This timestamp as a DateTime.
+ The timestamp contains invalid values; either it is
+ incorrectly normalized or is outside the valid range.
+
+
+
+ Converts this timestamp into a .
+
+
+ The resulting DateTimeOffset will always have an Offset of zero.
+ If the timestamp is not a precise number of ticks, it will be truncated towards the start
+ of time. For example, a timestamp with a value of 99 will result in a
+ value precisely on a second.
+
+ This timestamp as a DateTimeOffset.
+ The timestamp contains invalid values; either it is
+ incorrectly normalized or is outside the valid range.
+
+
+
+ Converts the specified to a .
+
+
+ The Kind of is not DateTimeKind.Utc.
+ The converted timestamp.
+
+
+
+ Converts the given to a
+
+ The offset is taken into consideration when converting the value (so the same instant in time
+ is represented) but is not a separate part of the resulting value. In other words, there is no
+ roundtrip operation to retrieve the original DateTimeOffset.
+ The date and time (with UTC offset) to convert to a timestamp.
+ The converted timestamp.
+
+
+
+ Converts a timestamp specified in seconds/nanoseconds to a string.
+
+
+ If the value is a normalized duration in the range described in timestamp.proto,
+ is ignored. Otherwise, if the parameter is true,
+ a JSON object with a warning is returned; if it is false, an is thrown.
+
+ Seconds portion of the duration.
+ Nanoseconds portion of the duration.
+ Determines the handling of non-normalized values
+ The represented duration is invalid, and is false.
+
+
+
+ Returns a string representation of this for diagnostic purposes.
+
+
+ Normally the returned value will be a JSON string value (including leading and trailing quotes) but
+ when the value is non-normalized or out of range, a JSON object representation will be returned
+ instead, including a warning. This is to avoid exceptions being thrown when trying to
+ diagnose problems - the regular JSON formatter will still throw an exception for non-normalized
+ values.
+
+ A string representation of this value.
+
+
+ Holder for reflection information generated from google/protobuf/type.proto
+
+
+ File descriptor for google/protobuf/type.proto
+
+
+
+ The syntax in which a protocol buffer element is defined.
+
+
+
+
+ Syntax `proto2`.
+
+
+
+
+ Syntax `proto3`.
+
+
+
+
+ A protocol buffer message type.
+
+
+
+ Field number for the "name" field.
+
+
+
+ The fully qualified message name.
+
+
+
+ Field number for the "fields" field.
+
+
+
+ The list of fields.
+
+
+
+ Field number for the "oneofs" field.
+
+
+
+ The list of types appearing in `oneof` definitions in this type.
+
+
+
+ Field number for the "options" field.
+
+
+
+ The protocol buffer options.
+
+
+
+ Field number for the "source_context" field.
+
+
+
+ The source context.
+
+
+
+ Field number for the "syntax" field.
+
+
+
+ The source syntax.
+
+
+
+
+ A single field of a message type.
+
+
+
+ Field number for the "kind" field.
+
+
+
+ The field type.
+
+
+
+ Field number for the "cardinality" field.
+
+
+
+ The field cardinality.
+
+
+
+ Field number for the "number" field.
+
+
+
+ The field number.
+
+
+
+ Field number for the "name" field.
+
+
+
+ The field name.
+
+
+
+ Field number for the "type_url" field.
+
+
+
+ The field type URL, without the scheme, for message or enumeration
+ types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
+
+
+
+ Field number for the "oneof_index" field.
+
+
+
+ The index of the field type in `Type.oneofs`, for message or enumeration
+ types. The first type has index 1; zero means the type is not in the list.
+
+
+
+ Field number for the "packed" field.
+
+
+
+ Whether to use alternative packed wire representation.
+
+
+
+ Field number for the "options" field.
+
+
+
+ The protocol buffer options.
+
+
+
+ Field number for the "json_name" field.
+
+
+
+ The field JSON name.
+
+
+
+ Field number for the "default_value" field.
+
+
+
+ The string value of the default value of this field. Proto2 syntax only.
+
+
+
+ Container for nested types declared in the Field message type.
+
+
+
+ Basic field types.
+
+
+
+
+ Field type unknown.
+
+
+
+
+ Field type double.
+
+
+
+
+ Field type float.
+
+
+
+
+ Field type int64.
+
+
+
+
+ Field type uint64.
+
+
+
+
+ Field type int32.
+
+
+
+
+ Field type fixed64.
+
+
+
+
+ Field type fixed32.
+
+
+
+
+ Field type bool.
+
+
+
+
+ Field type string.
+
+
+
+
+ Field type group. Proto2 syntax only, and deprecated.
+
+
+
+
+ Field type message.
+
+
+
+
+ Field type bytes.
+
+
+
+
+ Field type uint32.
+
+
+
+
+ Field type enum.
+
+
+
+
+ Field type sfixed32.
+
+
+
+
+ Field type sfixed64.
+
+
+
+
+ Field type sint32.
+
+
+
+
+ Field type sint64.
+
+
+
+
+ Whether a field is optional, required, or repeated.
+
+
+
+
+ For fields with unknown cardinality.
+
+
+
+
+ For optional fields.
+
+
+
+
+ For required fields. Proto2 syntax only.
+
+
+
+
+ For repeated fields.
+
+
+
+
+ Enum type definition.
+
+
+
+ Field number for the "name" field.
+
+
+
+ Enum type name.
+
+
+
+ Field number for the "enumvalue" field.
+
+
+
+ Enum value definitions.
+
+
+
+ Field number for the "options" field.
+
+
+
+ Protocol buffer options.
+
+
+
+ Field number for the "source_context" field.
+
+
+
+ The source context.
+
+
+
+ Field number for the "syntax" field.
+
+
+
+ The source syntax.
+
+
+
+
+ Enum value definition.
+
+
+
+ Field number for the "name" field.
+
+
+
+ Enum value name.
+
+
+
+ Field number for the "number" field.
+
+
+
+ Enum value number.
+
+
+
+ Field number for the "options" field.
+
+
+
+ Protocol buffer options.
+
+
+
+
+ A protocol buffer option, which can be attached to a message, field,
+ enumeration, etc.
+
+
+
+ Field number for the "name" field.
+
+
+
+ The option's name. For protobuf built-in options (options defined in
+ descriptor.proto), this is the short name. For example, `"map_entry"`.
+ For custom options, it should be the fully-qualified name. For example,
+ `"google.api.http"`.
+
+
+
+ Field number for the "value" field.
+
+
+
+ The option's value packed in an Any message. If the value is a primitive,
+ the corresponding wrapper type defined in google/protobuf/wrappers.proto
+ should be used. If the value is an enum, it should be stored as an int32
+ value using the google.protobuf.Int32Value type.
+
+
+
+ Holder for reflection information generated from google/protobuf/wrappers.proto
+
+
+ File descriptor for google/protobuf/wrappers.proto
+
+
+
+ Field number for the single "value" field in all wrapper types.
+
+
+
+
+ Wrapper message for `double`.
+
+ The JSON representation for `DoubleValue` is JSON number.
+
+
+
+ Field number for the "value" field.
+
+
+
+ The double value.
+
+
+
+
+ Wrapper message for `float`.
+
+ The JSON representation for `FloatValue` is JSON number.
+
+
+
+ Field number for the "value" field.
+
+
+
+ The float value.
+
+
+
+
+ Wrapper message for `int64`.
+
+ The JSON representation for `Int64Value` is JSON string.
+
+
+
+ Field number for the "value" field.
+
+
+
+ The int64 value.
+
+
+
+
+ Wrapper message for `uint64`.
+
+ The JSON representation for `UInt64Value` is JSON string.
+
+
+
+ Field number for the "value" field.
+
+
+
+ The uint64 value.
+
+
+
+
+ Wrapper message for `int32`.
+
+ The JSON representation for `Int32Value` is JSON number.
+
+
+
+ Field number for the "value" field.
+
+
+
+ The int32 value.
+
+
+
+
+ Wrapper message for `uint32`.
+
+ The JSON representation for `UInt32Value` is JSON number.
+
+
+
+ Field number for the "value" field.
+
+
+
+ The uint32 value.
+
+
+
+
+ Wrapper message for `bool`.
+
+ The JSON representation for `BoolValue` is JSON `true` and `false`.
+
+
+
+ Field number for the "value" field.
+
+
+
+ The bool value.
+
+
+
+
+ Wrapper message for `string`.
+
+ The JSON representation for `StringValue` is JSON string.
+
+
+
+ Field number for the "value" field.
+
+
+
+ The string value.
+
+
+
+
+ Wrapper message for `bytes`.
+
+ The JSON representation for `BytesValue` is JSON string.
+
+
+
+ Field number for the "value" field.
+
+
+
+ The bytes value.
+
+
+
+
+ This class is used internally by the Protocol Buffer Library and generated
+ message implementations. It is public only for the sake of those generated
+ messages. Others should not use this class directly.
+
+ This class contains constants and helper functions useful for dealing with
+ the Protocol Buffer wire format.
+
+
+
+
+
+ Wire types within protobuf encoding.
+
+
+
+
+ Variable-length integer.
+
+
+
+
+ A fixed-length 64-bit value.
+
+
+
+
+ A length-delimited value, i.e. a length followed by that many bytes of data.
+
+
+
+
+ A "start group" value - not supported by this implementation.
+
+
+
+
+ An "end group" value - not supported by this implementation.
+
+
+
+
+ A fixed-length 32-bit value.
+
+
+
+
+ Given a tag value, determines the wire type (lower 3 bits).
+
+
+
+
+ Given a tag value, determines the field number (the upper 29 bits).
+
+
+
+
+ Makes a tag value given a field number and wire type.
+
+
+
+
diff --git a/SalesPacking_MES_API_Project/bin/Debug/K4os.Compression.LZ4.Streams.dll b/SalesPacking_MES_API_Project/bin/Debug/K4os.Compression.LZ4.Streams.dll
new file mode 100644
index 0000000..4c68abb
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/K4os.Compression.LZ4.Streams.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/K4os.Compression.LZ4.Streams.xml b/SalesPacking_MES_API_Project/bin/Debug/K4os.Compression.LZ4.Streams.xml
new file mode 100644
index 0000000..4e02583
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/K4os.Compression.LZ4.Streams.xml
@@ -0,0 +1,296 @@
+
+
+
+ K4os.Compression.LZ4.Streams
+
+
+
+
+ LZ4 Frame descriptor.
+
+
+
+ Content length. Not always known.
+
+
+ Indicates if content checksum is provided.
+
+
+ Indicates if blocks are chained (dependent) or not (independent).
+
+
+ Indicates if block checksums are provided.
+
+
+ Dictionary id. May be null.
+
+
+ Block size.
+
+
+
+ Decoder settings.
+
+
+
+ Extra memory for decompression.
+
+
+
+ LZ4 Decompression stream handling.
+
+
+
+ Creates new instance .
+ Inner stream.
+ A function which will create appropriate decoder depending
+ on frame descriptor.
+ If true inner stream will not be closed after disposing.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Length of stream. Please note, this will only work if original LZ4 stream has
+ ContentLength field set in descriptor. Otherwise returned value will be -1.
+
+
+
+
+ Position within the stream. Position can be read, but cannot be set as LZ4 stream does
+ not have Seek capability.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ LZ4 encoder settings.
+
+
+
+
+ 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.
+
+
+
+
+ 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.
+
+
+
+
+ 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.
+
+
+
+ Indicates is content checksum is provided. Not implemented yet.
+
+
+ Indicates if block checksum is provided. Not implemented yet.
+
+
+ Dictionary id. Not implemented yet.
+
+
+ Compression level.
+
+
+ Extra memory (for the process, more is usually better).
+
+
+
+ LZ4 compression stream.
+
+
+
+ Creates new instance of .
+ Inner stream.
+ LZ4 Descriptor.
+ Function which will take descriptor and return
+ appropriate encoder.
+ Indicates if stream should be left
+ open after disposing.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Length of the stream and number of bytes written so far.
+
+
+ Read-only position in the stream. Trying to set it will throw
+ .
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ LZ4 frame descriptor.
+
+
+
+ Content length (if available).
+
+
+ Indicates if content checksum if present.
+
+
+ Indicates if blocks are chained.
+
+
+ Indicates if block checksums are present.
+
+
+ Dictionary id (or null).
+
+
+ Block size.
+
+
+ Creates new instance of .
+ Content length.
+ Content checksum flag.
+ Chaining flag.
+ Block checksum flag.
+ Dictionary id.
+ Block size.
+
+
+
+ Utility class with factory methods to create LZ4 compression and decompression streams.
+
+
+
+ Created compression stream on top of inner stream.
+ Inner stream.
+ Compression settings.
+ Leave inner stream open after disposing.
+ Compression stream.
+
+
+ Created compression stream on top of inner stream.
+ Inner stream.
+ Compression level.
+ Extra memory used for compression.
+ Leave inner stream open after disposing.
+ Compression stream.
+
+
+ Creates decompression stream on top of inner stream.
+ Inner stream.
+ Decompression settings.
+ Leave inner stream open after disposing.
+ Decompression stream.
+
+
+ Creates decompression stream on top of inner stream.
+ Inner stream.
+ Extra memory used for decompression.
+ Leave inner stream open after disposing.
+ Decompression stream.
+
+
+
diff --git a/SalesPacking_MES_API_Project/bin/Debug/K4os.Compression.LZ4.dll b/SalesPacking_MES_API_Project/bin/Debug/K4os.Compression.LZ4.dll
new file mode 100644
index 0000000..ea7a325
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/K4os.Compression.LZ4.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/K4os.Compression.LZ4.xml b/SalesPacking_MES_API_Project/bin/Debug/K4os.Compression.LZ4.xml
new file mode 100644
index 0000000..9af6341
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/K4os.Compression.LZ4.xml
@@ -0,0 +1,794 @@
+
+
+
+ K4os.Compression.LZ4
+
+
+
+
+ Action performed by encoder using FlushAndEncode method.
+
+
+
+ Nothing has happened, most likely loading 0 bytes.
+
+
+ Some bytes has been loaded into encoder.
+
+
+ Compression was not possible so bytes has been copied.
+
+
+ Compression succeeded.
+
+
+
+ Interface of LZ4 decoder used by LZ4 streams.
+
+
+
+ Block size.
+
+
+ Bytes already decoded and available to be read.
+ Always smaller than
+
+
+
+ Decodes previously compressed block and caches decompressed block in decoder.
+ Returns number of bytes decoded. These bytes can be read with .
+
+ Points to compressed block.
+ Length of compressed block.
+ Size of the block. Value 0 indicates default block size.
+ Number of decoded bytes.
+
+
+
+ Inject already decompressed block and caches it in decoder.
+ Used with uncompressed-yet-chained blocks and pre-made dictionaries.
+ These bytes can be read with .
+
+ Points to uncompressed block.
+ Length of uncompressed block.
+ Number of decoded bytes.
+
+
+
+ Reads previously decoded bytes. Please note, should be
+ negative number, pointing to bytes before current head.
+
+ Buffer to write to.
+ Offset in source buffer relatively to current head.
+ Please note, it should be negative value.
+ Number of bytes to read.
+
+
+
+ Interface of LZ4 encoder used by LZ4 streams.
+
+
+
+ Block size.
+
+
+ Number of bytes read for compression.
+ Always smaller than
+
+
+ Adds bytes to internal buffer. Increases
+ Source buffer.
+ Source buffer length.
+ Number of bytes topped up. If this function returns 0 it means that buffer
+ is full ( equals ) and
+ should be called to flush it.
+
+
+
+ Encodes bytes in internal buffer (see: , ).
+ If is true then if encoded buffer is bigger than
+ source buffer source bytes are copied instead. In such case returned length is negative.
+
+ Target buffer.
+ Target buffer length.
+ Indicates if copying is allowed.
+ Length of encoded buffer. Negative if bytes are just copied.
+
+
+
+ LZ4 decoder used with independent blocks mode. Plase note, that it will fail
+ if input data has been compressed with chained blocks
+ ( and )
+
+
+
+
+
+
+
+
+
+ Creates new instance of block decoder.
+ Block size. Must be equal or greater to one used for compression.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Independent block encoder. Produces larger files but uses less memory and
+ gives better performance.
+
+
+
+ Creates new instance of
+ Compression level.
+ Block size.
+
+
+
+
+
+
+
+
+ LZ4 decoder handling dependent blocks.
+
+
+ Creates new instance of .
+ Block size.
+ Number of extra blocks.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Static class with factory methods to create LZ4 decoders.
+
+
+
+ Creates appropriate decoder for given parameters.
+ Dependent blocks.
+ Block size.
+ Number of extra blocks.
+ LZ4 decoder.
+
+
+
+ Static class with factory method to create LZ4 encoders.
+
+
+
+ Creates appropriate decoder for given parameters.
+ Dependent blocks.
+ Compression level.
+ Block size.
+ Number of extra blocks.
+ LZ4 encoder.
+
+
+
+ Base class for LZ4 encoders. Provides basic functionality shared by
+ , ,
+ and encoders. Do not used directly.
+
+
+
+ Creates new instance of encoder.
+ Needs to be true if using dependent blocks.
+ Block size.
+ Number of extra blocks.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Encodes single block using appropriate algorithm.
+ Source buffer.
+ Source buffer length.
+ Target buffer.
+ Target buffer length.
+ Number of bytes actually written to target buffer.
+
+
+ Copies current dictionary.
+ Target buffer.
+ Dictionary length.
+ Dictionary length.
+
+
+
+
+
+
+ Functionality of encoders added on top of fixed interface.
+
+
+
+ Tops encoder up with some data.
+ Encoder.
+ Buffer pointer, will be shifted after operation by the number of
+ bytes actually loaded.
+ Length of buffer.
+ true if buffer was topped up, false if no bytes were loaded.
+
+
+ Tops encoder up with some data.
+ Encoder.
+ Buffer.
+ Buffer offset.
+ Length of buffer.
+ Number of bytes actually loaded.
+
+
+ Tops encoder up with some data.
+ Encoder.
+ Buffer.
+ Buffer offset, will be increased after operation by the number
+ of bytes actually loaded.
+ Length of buffer.
+ true if buffer was topped up, false if no bytes were loaded.
+
+
+ Encodes all bytes currently stored in encoder into target buffer.
+ Encoder.
+ Target buffer.
+ Offset in target buffer.
+ Length of target buffer.
+ if true copying bytes is allowed.
+ Number of bytes encoder. If bytes were copied than this value is negative.
+
+
+ Encodes all bytes currently stored in encoder into target buffer.
+ Encoder.
+ Target buffer.
+ Offset in target buffer. Will be updated after operation.
+ Length of target buffer.
+ if true copying bytes is allowed.
+ Result of this action. Bytes can be Copied (),
+ Encoded () or nothing could have
+ happened ().
+
+
+ Encodes all bytes currently stored in encoder into target buffer.
+ Encoder.
+ Target buffer. Will be updated after operation.
+ Length of buffer.
+ if true copying bytes is allowed.
+ Result of this action. Bytes can be Copied (),
+ Encoded () or nothing could have
+ happened ().
+
+
+ Tops encoder and encodes content.
+ Encoder.
+ Source buffer (used to top up from).
+ Source buffer length.
+ Target buffer (used to encode into)
+ Target buffer length.
+ Forces encoding even if encoder is not full.
+ Allows to copy bytes if compression was not possible.
+ Number of bytes loaded (topped up)
+ Number if bytes encoded or copied.
+ Value is 0 if no encoding was done.
+ Action performed.
+
+
+ Tops encoder and encodes content.
+ Encoder.
+ Source buffer (used to top up from).
+ Offset within source buffer.
+ Source buffer length.
+ Target buffer (used to encode into)
+ Offset within target buffer.
+ Target buffer length.
+ Forces encoding even if encoder is not full.
+ Allows to copy bytes if compression was not possible.
+ Number of bytes loaded (topped up)
+ Number if bytes encoded or copied.
+ Value is 0 if no encoding was done.
+ Action performed.
+
+
+ Encoded remaining bytes in encoder.
+ Encoder.
+ Target buffer.
+ Target buffer length.
+ Allows to copy bytes if compression was not possible.
+ Number if bytes encoded or copied.
+ Value is 0 if no encoding was done.
+ Action performed.
+
+
+ Encoded remaining bytes in encoder.
+ Encoder.
+ Target buffer.
+ Offset within target buffer.
+ Target buffer length.
+ Allows to copy bytes if compression was not possible.
+ Number if bytes encoded or copied.
+ Value is 0 if no encoding was done.
+ Action performed.
+
+
+ Drains decoder by reading all bytes which are ready.
+ Decoder.
+ Target buffer.
+ Offset within target buffer.
+ Offset in decoder relatively to decoder's head.
+ Please note, it should be negative value.
+ Number of bytes.
+
+
+ Decodes data and immediately drains it into target buffer.
+ Decoder.
+ Source buffer (with compressed data, to be decoded).
+ Source buffer length.
+ Target buffer (to drained into).
+ Target buffer length.
+ Number of bytes actually decoded.
+ true decoder was drained, false otherwise.
+
+
+ Decodes data and immediately drains it into target buffer.
+ Decoder.
+ Source buffer (with compressed data, to be decoded).
+ Offset within source buffer.
+ Source buffer length.
+ Target buffer (to drained into).
+ Offset within target buffer.
+ Target buffer length.
+ Number of bytes actually decoded.
+ true decoder was drained, false otherwise.
+
+
+
+ LZ4 encoder using dependent blocks with fast compression.
+
+
+
+ Creates new instance of
+ Block size.
+ Number of extra blocks.
+
+
+
+
+
+
+
+
+
+
+
+
+ LZ4 encoder using dependent blocks with high compression.
+
+
+
+ Creates new instance of
+ Compression level.
+ Block size.
+ Number of extra blocks.
+
+
+
+
+
+
+
+
+
+
+
+ Utility class with memory related functions.
+
+
+ 1 KiB
+
+
+ 2 KiB
+
+
+ 4 KiB
+
+
+ 8 KiB
+
+
+ 16 KiB
+
+
+ 32 KiB
+
+
+ 64 KiB
+
+
+ 128 KiB
+
+
+ 256 KiB
+
+
+ 512 KiB
+
+
+ 1 MiB
+
+
+ 4 MiB
+
+
+ Empty byte array.
+
+
+ Rounds integer value up to nearest multiple of step.
+ A value.
+ A step.
+ Value rounded up.
+
+
+
+ Copies memory block for to .
+ Even though it is called "copy" it actually behaves like "move" which
+ might be potential problem, although it shouldn't as I cannot think about
+ any situation when "copy" invalid behaviour (forward copy of overlapping blocks)
+ can be a desired.
+
+ The target block address.
+ The source block address.
+ Length in bytes.
+
+
+
+ Copies memory block for to .
+ It handle "move" semantic properly handling overlapping blocks properly.
+
+ The target block address.
+ The source block address.
+ Length in bytes.
+
+
+
+ Copies memory block for to
+ up to (around) .
+ It does not handle overlapping blocks and may copy up to 8 bytes more than expected.
+
+ The target block address.
+ The source block address.
+ The limit (in target block).
+
+
+ Fill block of memory with zeroes.
+ Address.
+ Length.
+
+
+ Fills memory block with repeating pattern of a single byte.
+ Address.
+ A pattern.
+ Length.
+
+
+
+ Copies memory block for to .
+ This is proper implementation of memcpy (with all then weird behaviour for
+ overlapping blocks). It is slower than "Copy" but may be required if "Copy"
+ causes problems.
+
+ The target block address.
+ The source block address.
+ Length in bytes.
+
+
+
+ Copies memory block backwards from to .
+ This is needed to implement memmove It is slower than "Move" but is needed for .NET 4.5,
+ which does not implement Buffer.MemoryCopy.
+
+ The target block address.
+ The source block address.
+ Length in bytes.
+
+
+
+ Moves memory block for to .
+ It handles overlapping block properly.
+
+ The target block address.
+ The source block address.
+ Length in bytes.
+
+
+ Copies exactly 8 bytes from source to target.
+ Target address.
+ Source address.
+
+
+ Copies exactly 16 bytes from source to target.
+ Target address.
+ Source address.
+
+
+ Copies exactly 18 bytes from source to target.
+ Target address.
+ Source address.
+
+
+ Allocated block of memory. It is NOT initialized with zeroes.
+ Size in bytes.
+ Pointer to allocated block.
+
+
+ Allocated block of memory and fills it with zeroes.
+ Size in bytes.
+ Pointer to allocated block.
+
+
+
+ Free memory allocated previously with or
+
+
+
+
+ Reads exactly 1 byte from given address.
+ Address.
+ Byte at given address.
+
+
+ Reads exactly 2 bytes from given address.
+ Address.
+ 2 bytes at given address.
+
+
+ Reads exactly 4 bytes from given address.
+ Address.
+ 4 bytes at given address.
+
+
+ Reads exactly 8 bytes from given address.
+ Address.
+ 8 bytes at given address.
+
+
+ Writes exactly 1 byte to given address.
+ Address.
+ Value.
+
+
+ Writes exactly 2 bytes to given address.
+ Address.
+ Value.
+
+
+ Writes exactly 4 bytes to given address.
+ Address.
+ Value.
+
+
+ Writes exactly 8 bytes to given address.
+ Address.
+ Value.
+
+
+
+ Skeleton for class with unmanaged resources.
+ Implements but also handles proper release in
+ case was not called.
+
+
+
+ Determines if object was already disposed.
+
+
+ Throws exception is object has been disposed already. Convenience method.
+ Thrown if object is already disposed.
+
+
+ Method releasing unmanaged resources.
+
+
+ Method releasing managed resources.
+
+
+
+ Disposed resources.
+
+ true if dispose was explicitly called,
+ false if called from GC.
+
+
+
+
+
+ Destructor.
+
+
+
+ Static class exposing LZ4 block compression methods.
+
+
+
+ Maximum size after compression.
+ Length of input buffer.
+ Maximum length after compression.
+
+
+ Compresses data from one buffer into another.
+ Input buffer.
+ Length of input buffer.
+ Output buffer.
+ Output buffer length.
+ Compression level.
+ Number of bytes written, or negative value if output buffer is too small.
+
+
+ Compresses data from one buffer into another.
+ Input buffer.
+ Output buffer.
+ Compression level.
+ Number of bytes written, or negative value if output buffer is too small.
+
+
+ Compresses data from one buffer into another.
+ Input buffer.
+ Input buffer offset.
+ Input buffer length.
+ Output buffer.
+ Output buffer offset.
+ Output buffer length.
+ Compression level.
+ Number of bytes written, or negative value if output buffer is too small.
+
+
+ Decompresses data from given buffer.
+ Input buffer.
+ Input buffer length.
+ Output buffer.
+ Output buffer length.
+ Number of bytes written, or negative value if output buffer is too small.
+
+
+ Decompresses data from given buffer.
+ Input buffer.
+ Output buffer.
+ Number of bytes written, or negative value if output buffer is too small.
+
+
+ Decompresses data from given buffer.
+ Input buffer.
+ Input buffer offset.
+ Input buffer length.
+ Output buffer.
+ Output buffer offset.
+ Output buffer length.
+ Number of bytes written, or negative value if output buffer is too small.
+
+
+ Compression level.
+
+
+ Fast compression.
+
+
+ High compression, level 3.
+
+
+ High compression, level 4.
+
+
+ High compression, level 5.
+
+
+ High compression, level 6.
+
+
+ High compression, level 7.
+
+
+ High compression, level 8.
+
+
+ High compression, level 9.
+
+
+ Optimal compression, level 10.
+
+
+ Optimal compression, level 11.
+
+
+ Maximum compression, level 12.
+
+
+
+ Pickling support with LZ4 compression.
+
+
+
+ Compresses input buffer into self-contained package.
+ Input buffer.
+ Compression level.
+ Output buffer.
+
+
+ Compresses input buffer into self-contained package.
+ Input buffer.
+ Input buffer offset.
+ Input buffer length.
+ Compression level.
+ Output buffer.
+
+
+ Compresses input buffer into self-contained package.
+ Input buffer.
+ Compression level.
+ Output buffer.
+
+
+ Compresses input buffer into self-contained package.
+ Input buffer.
+ Length of input data.
+ Compression level.
+ Output buffer.
+
+
+ Decompresses previously pickled buffer (see: .
+ Input buffer.
+ Output buffer.
+
+
+ Decompresses previously pickled buffer (see: .
+ Input buffer.
+ Input buffer offset.
+ Input buffer length.
+ Output buffer.
+
+
+ Decompresses previously pickled buffer (see: .
+ Input buffer.
+ Output buffer.
+
+
+ Decompresses previously pickled buffer (see: .
+ Input buffer.
+ Input buffer length.
+ Output buffer.
+
+
+
diff --git a/SalesPacking_MES_API_Project/bin/Debug/K4os.Hash.xxHash.dll b/SalesPacking_MES_API_Project/bin/Debug/K4os.Hash.xxHash.dll
new file mode 100644
index 0000000..b4cb8d9
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/K4os.Hash.xxHash.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/K4os.Hash.xxHash.xml b/SalesPacking_MES_API_Project/bin/Debug/K4os.Hash.xxHash.xml
new file mode 100644
index 0000000..2b84147
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/K4os.Hash.xxHash.xml
@@ -0,0 +1,163 @@
+
+
+
+ K4os.Hash.xxHash
+
+
+
+
+ Adapter implementing
+
+
+
+
+ Creates new .
+
+ Hash size (in bytes)
+ Reset function.
+ Update function.
+ Digest function.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Base class for both and . Do not use directly.
+
+
+
+ Protected constructor to prevent instantiation.
+
+
+
+ xxHash 32-bit.
+
+
+
+ Hash of empty buffer.
+
+
+ Hash of provided buffer.
+ Buffer.
+ Length of buffer.
+ Digest.
+
+
+ Hash of provided buffer.
+ Buffer.
+ Digest.
+
+
+ Hash of provided buffer.
+ Buffer.
+ Starting offset.
+ Length of buffer.
+ Digest.
+
+
+ Creates xxHash instance.
+
+
+ Resets hash calculation.
+
+
+ Updates the has using given buffer.
+ Buffer.
+ Length of buffer.
+
+
+ Updates the has using given buffer.
+ Buffer.
+
+
+ Updates the has using given buffer.
+ Buffer.
+ Starting offset.
+ Length of buffer.
+
+
+ Hash so far.
+ Hash so far.
+
+
+ Hash so far, as byte array.
+ Hash so far.
+
+
+ Converts this class to
+
+
+
+
+ xxHash 64-bit.
+
+
+
+ Hash of empty buffer.
+
+
+ Hash of provided buffer.
+ Buffer.
+ Length of buffer.
+ Digest.
+
+
+ Hash of provided buffer.
+ Buffer.
+ Digest.
+
+
+ Hash of provided buffer.
+ Buffer.
+ Starting offset.
+ Length of buffer.
+ Digest.
+
+
+ Creates xxHash instance.
+
+
+ Resets hash calculation.
+
+
+ Updates the has using given buffer.
+ Buffer.
+ Length of buffer.
+
+
+ Updates the has using given buffer.
+ Buffer.
+
+
+ Updates the has using given buffer.
+ Buffer.
+ Starting offset.
+ Length of buffer.
+
+
+ Hash so far.
+ Hash so far.
+
+
+ Hash so far, as byte array.
+ Hash so far.
+
+
+ Converts this class to
+
+
+
+
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-6-26.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-6-26.csv
new file mode 100644
index 0000000..c696f2f
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-6-26.csv
@@ -0,0 +1,49 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250626-0009,2025-6-26,11:5:33,해외주문,07041187330,L001-0032,핏업밸트 쇼핑백(150*65*460),2,0,0,459634832495,ORD250626-0009,L001-0032
+ORD250626-0009,2025-6-26,11:5:33,해외주문,07041187330,JGIFT-0025,EMS Belt_Peach,2,0,0,459634832495,ORD250626-0009,JGIFT-0025
+ORD250626-0009,2025-6-26,11:5:33,해외주문,07041187330,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459634832495,ORD250626-0009,K001-0008
+ORD250626-0024,2025-6-26,11:9:18,이주향,010-9796-6210,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459634832646,ORD250626-0024,K001-0020
+ORD250626-0024,2025-6-26,11:9:18,이주향,010-9796-6210,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459634832646,ORD250626-0024,L004-0023
+ORD250626-0024,2025-6-26,11:9:18,이주향,010-9796-6210,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459634832646,ORD250626-0024,8809595040017
+ORD250626-0030,2025-6-26,11:24:51,윤은주,010-8962-7841,JGIFT-0025,EMS Belt_Peach,1,0,0,459634832705,402505180100,JGIFT-0025
+ORD250626-0030,2025-6-26,11:24:51,윤은주,010-8962-7841,L001-0030,뷰티루틴 쇼핑백,2,0,0,459634832705,402505180100,L001-0030
+ORD250626-0030,2025-6-26,11:24:51,윤은주,010-8962-7841,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459634832705,402505180100,K001-0008
+ORD250626-0030,2025-6-26,11:24:51,윤은주,010-8962-7841,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459634832705,402505180100,L004-0023
+ORD250626-0030,2025-6-26,11:24:51,윤은주,010-8962-7841,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459634832705,402505180100,502506348100
+ORD250626-0030,2025-6-26,11:24:51,윤은주,010-8962-7841,P001-0153,사각 가죽케이스 퍼플,1,0,0,459634832705,402505180100,8809595040482
+ORD250626-0030,2025-6-26,11:24:51,윤은주,010-8962-7841,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],1,40000,400000,459634832705,402505180100,402505180100
+ORD250626-0031,2025-6-26,11:28:15,이정은,010-9602-0530,JGIFT-0025,EMS Belt_Peach,1,0,0,459634832716,402505164100,JGIFT-0025
+ORD250626-0031,2025-6-26,11:28:15,이정은,010-9602-0530,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459634832716,402505164100,502506281100
+ORD250626-0031,2025-6-26,11:28:15,이정은,010-9602-0530,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],1,40000,400000,459634832716,402505164100,402505164100
+ORD250626-0031,2025-6-26,11:28:15,이정은,010-9602-0530,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459634832716,402505164100,L004-0023
+ORD250626-0031,2025-6-26,11:28:15,이정은,010-9602-0530,P001-0153,사각 가죽케이스 퍼플,1,0,0,459634832716,402505164100,8809595040482
+ORD250626-0031,2025-6-26,11:28:15,이정은,010-9602-0530,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459634832716,402505164100,K001-0008
+ORD250626-0031,2025-6-26,11:28:15,이정은,010-9602-0530,L001-0030,뷰티루틴 쇼핑백,2,0,0,459634832716,402505164100,L001-0030
+ORD250626-0029,2025-6-26,11:35:37,라윤민,010-4003-2050,JGIFT-0025,EMS Belt_Peach,1,0,0,459634832694,302505856150,JGIFT-0025
+ORD250626-0029,2025-6-26,11:35:37,라윤민,010-4003-2050,P001-MM001K,[MAXIMUM_V2_YELLOW] FULL PACK (KR),1,0,0,459634832694,302505856150,302505856150
+ORD250626-0029,2025-6-26,11:35:37,라윤민,010-4003-2050,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459634832694,302505856150,L004-0023
+ORD250626-0029,2025-6-26,11:35:37,라윤민,010-4003-2050,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459634832694,302505856150,502506234100
+ORD250626-0029,2025-6-26,11:35:37,라윤민,010-4003-2050,P001-0156,우디케이스,1,0,0,459634832694,302505856150,8809595040598
+ORD250626-0029,2025-6-26,11:35:37,라윤민,010-4003-2050,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459634832694,302505856150,K001-0008
+ORD250626-0029,2025-6-26,11:35:37,라윤민,010-4003-2050,L001-0030,뷰티루틴 쇼핑백,2,0,0,459634832694,302505856150,L001-0030
+ORD250626-0039,2025-6-26,11:41:51,류지은,010-9559-5041,L001-0030,뷰티루틴 쇼핑백,1,0,0,59634832786,602503575130,L001-0030
+ORD250626-0039,2025-6-26,11:41:51,류지은,010-9559-5041,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,59634832786,602503575130,602503575130
+ORD250626-0039,2025-6-26,11:41:51,류지은,010-9559-5041,K001-0008,제품 6Set 포장박스 (6호),1,0,0,59634832786,602503575130,K001-0008
+ORD250626-0039,2025-6-26,11:41:51,류지은,010-9559-5041,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,59634832786,602503575130,L004-0023
+ORD250626-0039,2025-6-26,11:41:51,류지은,010-9559-5041,P001-0152,원형케이스 퍼플,1,0,0,59634832786,602503575130,8809595040512
+ORD250626-0039,2025-6-26,11:41:51,류지은,010-9559-5041,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,59634832786,602503575130,8809595040635
+ORD250626-0025,2025-6-26,11:49:45,안창욱,010-8221-1631,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459634832650,ORD250626-0025,K001-0020
+ORD250626-0025,2025-6-26,11:49:45,안창욱,010-8221-1631,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459634832650,ORD250626-0025,L004-0023
+ORD250626-0025,2025-6-26,11:49:45,안창욱,010-8221-1631,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459634832650,ORD250626-0025,8809595040017
+ORD250626-0054,2025-6-26,15:34:23,서유나,010-2685-7942,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692282237160,ORD250626-0054,K001-0008
+ORD250626-0054,2025-6-26,15:34:23,서유나,010-2685-7942,JGIFT-0025,EMS Belt_Peach,1,0,0,692282237160,ORD250626-0054,JGIFT-0025
+ORD250626-0054,2025-6-26,15:34:23,서유나,010-2685-7942,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692282237160,ORD250626-0054,L001-0032
+ORD250626-0163,2025-6-26,16:32:19,신세계면세점,,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),8,0,0,L001-0030,312505055180,312505303180/312505297180/312505321180/312505079180/312505279180/312505055180/312505332180/312505359180
+ORD250626-0099,2025-6-26,16:53:58,이다윤,0502-3176-2719,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,692284143223,ORD250626-0099,L004-0023
+ORD250626-0099,2025-6-26,16:53:58,이다윤,0502-3176-2719,K001-0010,젤 3개 포장박스 (1호),1,0,0,692284143223,ORD250626-0099,K001-0010
+ORD250626-0098,2025-6-26,16:58:22,이지혜,010-4242-3532,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,692284143212,ORD250626-0098,K001-0020
+ORD250626-0098,2025-6-26,16:58:22,이지혜,010-4242-3532,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,692284143212,ORD250626-0098,8809595040017
+ORD250626-0098,2025-6-26,16:58:22,이지혜,010-4242-3532,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692284143212,ORD250626-0098,L004-0023
+ORD250626-0097,2025-6-26,16:59:48,이종순,010-5334-4085,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,692284143201,ORD250626-0097,8809595040017
+ORD250626-0097,2025-6-26,16:59:48,이종순,010-5334-4085,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,692284143201,ORD250626-0097,K001-0020
+ORD250626-0097,2025-6-26,16:59:48,이종순,010-5334-4085,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692284143201,ORD250626-0097,L004-0023
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-6-27.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-6-27.csv
new file mode 100644
index 0000000..6ac1c7d
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-6-27.csv
@@ -0,0 +1,118 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250627-0029,2025-6-27,13:26:7,최은진,0504-2305-6450,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459643925893,312505702180,K001-0008
+ORD250627-0029,2025-6-27,13:26:7,최은진,0504-2305-6450,P001-0156,우디케이스,1,0,0,459643925893,312505702180,8809595040598
+ORD250627-0029,2025-6-27,13:26:7,최은진,0504-2305-6450,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),1,0,0,459643925893,312505702180,312505702180
+ORD250627-0029,2025-6-27,13:26:7,최은진,0504-2305-6450,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,459643925893,312505702180,8809595040017
+ORD250627-0029,2025-6-27,13:26:7,최은진,0504-2305-6450,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459643925893,312505702180,8809595040628
+ORD250627-0029,2025-6-27,13:26:7,최은진,0504-2305-6450,L001-0030,뷰티루틴 쇼핑백,1,0,0,459643925893,312505702180,L001-0030
+ORD250627-0029,2025-6-27,13:26:7,최은진,0504-2305-6450,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459643925893,312505702180,8809595040635
+ORD250627-0031,2025-6-27,13:33:7,박영자(주문자:장*애),0504-2357-4263,L004-0001,DUALSONIC Blooming Moisture Gel,11,0,0,459643925915,312506846100,8809595040017
+ORD250627-0031,2025-6-27,13:33:7,박영자(주문자:장*애),0504-2357-4263,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459643925915,312506846100,K001-0008
+ORD250627-0031,2025-6-27,13:33:7,박영자(주문자:장*애),0504-2357-4263,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459643925915,312506846100,8809595040635
+ORD250627-0031,2025-6-27,13:33:7,박영자(주문자:장*애),0504-2357-4263,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459643925915,312506846100,8809595040628
+ORD250627-0031,2025-6-27,13:33:7,박영자(주문자:장*애),0504-2357-4263,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459643925915,312506846100,312506846100
+ORD250627-0031,2025-6-27,13:33:7,박영자(주문자:장*애),0504-2357-4263,P001-0156,우디케이스,1,0,0,459643925915,312506846100,8809595040598
+ORD250627-0031,2025-6-27,13:33:7,박영자(주문자:장*애),0504-2357-4263,L001-0030,뷰티루틴 쇼핑백,1,0,0,459643925915,312506846100,L001-0030
+ORD250627-0030,2025-6-27,13:37:51,김명선,0504-2143-0685,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459643925904,312506821100,312506821100
+ORD250627-0030,2025-6-27,13:37:51,김명선,0504-2143-0685,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459643925904,312506821100,8809595040635
+ORD250627-0030,2025-6-27,13:37:51,김명선,0504-2143-0685,P001-0156,우디케이스,1,0,0,459643925904,312506821100,8809595040598
+ORD250627-0030,2025-6-27,13:37:51,김명선,0504-2143-0685,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459643925904,312506821100,8809595040628
+ORD250627-0030,2025-6-27,13:37:51,김명선,0504-2143-0685,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459643925904,312506821100,K001-0008
+ORD250627-0030,2025-6-27,13:37:51,김명선,0504-2143-0685,L001-0030,뷰티루틴 쇼핑백,1,0,0,459643925904,312506821100,L001-0030
+ORD250627-0030,2025-6-27,13:37:51,김명선,0504-2143-0685,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,459643925904,312506821100,8809595040017
+ORD250627-0027,2025-6-27,13:41:38,김세욱(주문자:황*석),0504-2323-0366,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459643925871,312505375180,K001-0008
+ORD250627-0027,2025-6-27,13:41:38,김세욱(주문자:황*석),0504-2323-0366,P001-0156,우디케이스,1,0,0,459643925871,312505375180,8809595040598
+ORD250627-0027,2025-6-27,13:41:38,김세욱(주문자:황*석),0504-2323-0366,L001-0030,뷰티루틴 쇼핑백,1,0,0,459643925871,312505375180,L001-0030
+ORD250627-0027,2025-6-27,13:41:38,김세욱(주문자:황*석),0504-2323-0366,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),1,0,0,459643925871,312505375180,312505375180
+ORD250627-0027,2025-6-27,13:41:38,김세욱(주문자:황*석),0504-2323-0366,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,459643925871,312505375180,8809595040017
+ORD250627-0027,2025-6-27,13:41:38,김세욱(주문자:황*석),0504-2323-0366,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459643925871,312505375180,8809595040628
+ORD250627-0027,2025-6-27,13:41:38,김세욱(주문자:황*석),0504-2323-0366,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459643925871,312505375180,8809595040635
+ORD250627-0007,2025-6-27,13:47:46,양희우,010-3400-7872,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925672,312506764100,8809595040673
+ORD250627-0007,2025-6-27,13:47:46,양희우,010-3400-7872,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459643925672,312506764100,312506764100
+ORD250627-0007,2025-6-27,13:47:46,양희우,010-3400-7872,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459643925672,312506764100,K001-0007
+ORD250627-0007,2025-6-27,13:47:46,양희우,010-3400-7872,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459643925672,312506764100,L004-0023
+ORD250627-0007,2025-6-27,13:47:46,양희우,010-3400-7872,L001-0030,뷰티루틴 쇼핑백,1,0,0,459643925672,312506764100,L001-0030
+ORD250627-0007,2025-6-27,13:47:46,양희우,010-3400-7872,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925672,312506764100,8809595040680
+ORD250627-0007,2025-6-27,13:47:46,양희우,010-3400-7872,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925672,312506764100,8809595040697
+ORD250627-0006,2025-6-27,13:52:15,정경,010-4144-7555,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459643925661,312506819100,L004-0023
+ORD250627-0006,2025-6-27,13:52:15,정경,010-4144-7555,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925661,312506819100,8809595040673
+ORD250627-0006,2025-6-27,13:52:15,정경,010-4144-7555,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925661,312506819100,8809595040697
+ORD250627-0006,2025-6-27,13:52:15,정경,010-4144-7555,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459643925661,312506819100,312506819100
+ORD250627-0006,2025-6-27,13:52:15,정경,010-4144-7555,L001-0030,뷰티루틴 쇼핑백,1,0,0,459643925661,312506819100,L001-0030
+ORD250627-0006,2025-6-27,13:52:15,정경,010-4144-7555,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925661,312506819100,8809595040680
+ORD250627-0006,2025-6-27,13:52:15,정경,010-4144-7555,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459643925661,312506819100,K001-0007
+ORD250627-0023,2025-6-27,14:0:33,박혜연,010-8777-9067,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459643925834,602503101130,L004-0023
+ORD250627-0023,2025-6-27,14:0:33,박혜연,010-8777-9067,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459643925834,602503101130,8809595040635
+ORD250627-0023,2025-6-27,14:0:33,박혜연,010-8777-9067,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459643925834,602503101130,602503101130
+ORD250627-0023,2025-6-27,14:0:33,박혜연,010-8777-9067,L001-0030,뷰티루틴 쇼핑백,1,0,0,459643925834,602503101130,L001-0030
+ORD250627-0023,2025-6-27,14:0:33,박혜연,010-8777-9067,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459643925834,602503101130,JGIFT-0010
+ORD250627-0023,2025-6-27,14:0:33,박혜연,010-8777-9067,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459643925834,602503101130,8809750465013
+ORD250627-0023,2025-6-27,14:0:33,박혜연,010-8777-9067,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459643925834,602503101130,K001-0007
+ORD250627-0014,2025-6-27,14:3:47,김유진,010-4086-3614,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925742,602503068130,8809595040673
+ORD250627-0014,2025-6-27,14:3:47,김유진,010-4086-3614,L001-0030,뷰티루틴 쇼핑백,1,0,0,459643925742,602503068130,L001-0030
+ORD250627-0014,2025-6-27,14:3:47,김유진,010-4086-3614,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459643925742,602503068130,L004-0023
+ORD250627-0014,2025-6-27,14:3:47,김유진,010-4086-3614,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459643925742,602503068130,602503068130
+ORD250627-0014,2025-6-27,14:3:47,김유진,010-4086-3614,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459643925742,602503068130,K001-0007
+ORD250627-0014,2025-6-27,14:3:47,김유진,010-4086-3614,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925742,602503068130,8809595040697
+ORD250627-0014,2025-6-27,14:3:47,김유진,010-4086-3614,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925742,602503068130,8809595040680
+ORD250627-0015,2025-6-27,14:7:25,정정일,010-3507-9008,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459643925753,602503845110,K001-0007
+ORD250627-0015,2025-6-27,14:7:25,정정일,010-3507-9008,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925753,602503845110,8809595040697
+ORD250627-0015,2025-6-27,14:7:25,정정일,010-3507-9008,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,459643925753,602503845110,602503845110
+ORD250627-0015,2025-6-27,14:7:25,정정일,010-3507-9008,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459643925753,602503845110,L004-0023
+ORD250627-0015,2025-6-27,14:7:25,정정일,010-3507-9008,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925753,602503845110,8809595040680
+ORD250627-0015,2025-6-27,14:7:25,정정일,010-3507-9008,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925753,602503845110,8809595040673
+ORD250627-0015,2025-6-27,14:7:25,정정일,010-3507-9008,L001-0030,뷰티루틴 쇼핑백,1,0,0,459643925753,602503845110,L001-0030
+ORD250627-0013,2025-6-27,14:10:12,김다정,010-2446-3370,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925731,602503170130,8809595040680
+ORD250627-0013,2025-6-27,14:10:12,김다정,010-2446-3370,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925731,602503170130,8809595040673
+ORD250627-0013,2025-6-27,14:10:12,김다정,010-2446-3370,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925731,602503170130,8809595040697
+ORD250627-0013,2025-6-27,14:10:12,김다정,010-2446-3370,L001-0030,뷰티루틴 쇼핑백,1,0,0,459643925731,602503170130,L001-0030
+ORD250627-0013,2025-6-27,14:10:12,김다정,010-2446-3370,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459643925731,602503170130,K001-0007
+ORD250627-0013,2025-6-27,14:10:12,김다정,010-2446-3370,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459643925731,602503170130,602503170130
+ORD250627-0013,2025-6-27,14:10:12,김다정,010-2446-3370,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459643925731,602503170130,L004-0023
+ORD250627-0012,2025-6-27,14:12:53,정현우,010-8612-6327,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925720,602503091130,8809595040673
+ORD250627-0012,2025-6-27,14:12:53,정현우,010-8612-6327,L001-0030,뷰티루틴 쇼핑백,1,0,0,459643925720,602503091130,L001-0030
+ORD250627-0012,2025-6-27,14:12:53,정현우,010-8612-6327,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459643925720,602503091130,L004-0023
+ORD250627-0012,2025-6-27,14:12:53,정현우,010-8612-6327,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925720,602503091130,8809595040680
+ORD250627-0012,2025-6-27,14:12:53,정현우,010-8612-6327,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459643925720,602503091130,K001-0007
+ORD250627-0012,2025-6-27,14:12:53,정현우,010-8612-6327,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459643925720,602503091130,602503091130
+ORD250627-0012,2025-6-27,14:12:53,정현우,010-8612-6327,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925720,602503091130,8809595040697
+ORD250627-0011,2025-6-27,14:25:59,김청하,010-7542-3047,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925716,602503171130,8809595040697
+ORD250627-0011,2025-6-27,14:25:59,김청하,010-7542-3047,L001-0030,뷰티루틴 쇼핑백,1,0,0,459643925716,602503171130,L001-0030
+ORD250627-0011,2025-6-27,14:25:59,김청하,010-7542-3047,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925716,602503171130,8809595040673
+ORD250627-0011,2025-6-27,14:25:59,김청하,010-7542-3047,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459643925716,602503171130,L004-0023
+ORD250627-0011,2025-6-27,14:25:59,김청하,010-7542-3047,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459643925716,602503171130,602503171130
+ORD250627-0011,2025-6-27,14:25:59,김청하,010-7542-3047,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,459643925716,602503171130,8809595040680
+ORD250627-0011,2025-6-27,14:25:59,김청하,010-7542-3047,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459643925716,602503171130,K001-0007
+ORD250627-0073,2025-6-27,15:18:33,신혜원,01092768256,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459647152871,312506217100,312506217100
+ORD250627-0073,2025-6-27,15:18:33,신혜원,01092768256,K001-0041,단품 1SET 박스 (3호),1,0,0,459647152871,312506217100,K001-0041
+ORD250627-0073,2025-6-27,15:18:33,신혜원,01092768256,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459647152871,312506217100,8809595040017
+ORD250627-0044,2025-6-27,15:19:51,손혜원,02-3893-5227,K001-0010,젤 3개 포장박스 (1호),1,0,0,692300537002,ORD250627-0044,K001-0010
+ORD250627-0044,2025-6-27,15:19:51,손혜원,02-3893-5227,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,692300537002,ORD250627-0044,L004-0023
+ORD250627-0041,2025-6-27,15:20:47,오정희,010-3315-2747,K001-0010,젤 3개 포장박스 (1호),1,0,0,692300536976,ORD250627-0041,K001-0010
+ORD250627-0041,2025-6-27,15:20:47,오정희,010-3315-2747,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,692300536976,ORD250627-0041,L004-0023
+ORD250627-0040,2025-6-27,15:23:47,서유진,0502-3077-3346,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,692300536965,ORD250627-0040,8809595040017
+ORD250627-0040,2025-6-27,15:23:47,서유진,0502-3077-3346,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692300536965,ORD250627-0040,L004-0023
+ORD250627-0040,2025-6-27,15:23:47,서유진,0502-3077-3346,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,692300536965,ORD250627-0040,K001-0020
+ORD250627-0039,2025-6-27,15:26:29,민보경,010-3546-0522,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,692300536954,ORD250627-0039,K001-0020
+ORD250627-0039,2025-6-27,15:26:29,민보경,010-3546-0522,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692300536954,ORD250627-0039,L004-0023
+ORD250627-0039,2025-6-27,15:26:29,민보경,010-3546-0522,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,692300536954,ORD250627-0039,8809595040017
+ORD250627-0038,2025-6-27,15:28:18,김지영,010-2577-1193,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,692300536943,ORD250627-0038,L001-0031
+ORD250627-0038,2025-6-27,15:28:18,김지영,010-2577-1193,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,692300536943,ORD250627-0038,8809527487118
+ORD250627-0038,2025-6-27,15:28:18,김지영,010-2577-1193,K001-0022,가죽케이스 박스 (2호),1,0,0,692300536943,ORD250627-0038,K001-0022
+ORD250627-0037,2025-6-27,15:29:39,하지민,010-5398-9609,K001-0022,가죽케이스 박스 (2호),1,0,0,692300536932,ORD250627-0037,K001-0022
+ORD250627-0037,2025-6-27,15:29:39,하지민,010-5398-9609,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,692300536932,ORD250627-0037,L001-0031
+ORD250627-0037,2025-6-27,15:29:39,하지민,010-5398-9609,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,692300536932,ORD250627-0037,8809527487118
+ORD250627-0072,2025-6-27,15:32:24,노명희,010-6850-0517,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692300537282,312505408180,K001-0007
+ORD250627-0072,2025-6-27,15:32:24,노명희,010-6850-0517,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692300537282,312505408180,8809595040017
+ORD250627-0072,2025-6-27,15:32:24,노명희,010-6850-0517,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,692300537282,312505408180,8809595040628
+ORD250627-0072,2025-6-27,15:32:24,노명희,010-6850-0517,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),1,0,0,692300537282,312505408180,312505408180
+ORD250627-0072,2025-6-27,15:32:24,노명희,010-6850-0517,L001-0030,뷰티루틴 쇼핑백,1,0,0,692300537282,312505408180,L001-0030
+ORD250627-0083,2025-6-27,15:56:6,김선영,010-9328-5324,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692302868783,ORD250627-0083,L001-0032
+ORD250627-0083,2025-6-27,15:56:6,김선영,010-9328-5324,JGIFT-0026,EMS Belt_Purple,1,0,0,692302868783,ORD250627-0083,JGIFT-0026
+ORD250627-0083,2025-6-27,15:56:6,김선영,010-9328-5324,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692302868783,ORD250627-0083,K001-0008
+ORD250627-0086,2025-6-27,15:57:8,최무경,010-9809-7845,L001-0032,핏업밸트 쇼핑백(150*65*460),2,0,0,692302868816,ORD250627-0086,L001-0032
+ORD250627-0086,2025-6-27,15:57:8,최무경,010-9809-7845,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692302868816,ORD250627-0086,K001-0008
+ORD250627-0086,2025-6-27,15:57:8,최무경,010-9809-7845,JGIFT-0027,EMS Belt_Lemon,1,0,0,692302868816,ORD250627-0086,8809595041007
+ORD250627-0086,2025-6-27,15:57:8,최무경,010-9809-7845,JGIFT-0025,EMS Belt_Peach,1,0,0,692302868816,ORD250627-0086,JGIFT-0025
+ORD250627-0087,2025-6-27,16:21:54,김윤수,010-2737-5211,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,692299831262,602506007130,602506007130
+ORD250627-0087,2025-6-27,16:21:54,김윤수,010-2737-5211,K001-0022,가죽케이스 박스 (2호),1,0,0,692299831262,602506007130,K001-0022
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-6-30.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-6-30.csv
new file mode 100644
index 0000000..62cbc8f
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-6-30.csv
@@ -0,0 +1,234 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250630-0004,2025-6-30,10:33:14,쿠팡 서울_1,070-5038-6954,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,692300205703,ORD250630-0004,8809595040017
+ORD250630-0005,2025-6-30,10:38:47,쿠팡 서울_2,070-5038-6954,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,692300205714,ORD250630-0005,8809595040017
+ORD250630-0019,2025-6-30,10:50:58,박정윤,010-5285-4393,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,459657469434,ORD250630-0019,L004-0023
+ORD250630-0019,2025-6-30,10:50:58,박정윤,010-5285-4393,K001-0010,젤 3개 포장박스 (1호),1,0,0,459657469434,ORD250630-0019,K001-0010
+ORD250630-0018,2025-6-30,10:55:0,이금복,010-5769-7812,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459657469423,ORD250630-0018,8809595040017
+ORD250630-0018,2025-6-30,10:55:0,이금복,010-5769-7812,K001-0010,젤 3개 포장박스 (1호),1,0,0,459657469423,ORD250630-0018,K001-0010
+ORD250630-0017,2025-6-30,10:56:30,문양숙,010-5555-9591,P001-DS007A,DUALSONIC Pro Face CARTRIDGE 1Set,1,6000,0,459657469412,112506033000,112506033000
+ORD250630-0017,2025-6-30,10:56:30,문양숙,010-5555-9591,K001-0010,젤 3개 포장박스 (1호),1,0,0,459657469412,112506033000,K001-0010
+ORD250630-0041,2025-6-30,13:7:45,해외주문,07041187330,K001-0041,단품 1SET 박스 (3호),1,0,0,459659959905,602503093130,K001-0041
+ORD250630-0041,2025-6-30,13:7:45,해외주문,07041187330,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459659959905,602503093130,602503093130
+ORD250630-0041,2025-6-30,13:7:45,해외주문,07041187330,L001-0030,뷰티루틴 쇼핑백,1,0,0,459659959905,602503093130,L001-0030
+ORD250630-0034,2025-6-30,13:9:52,이기선,0504-2089-9708,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459659959824,ORD250630-0034,L004-0023
+ORD250630-0034,2025-6-30,13:9:52,이기선,0504-2089-9708,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459659959824,ORD250630-0034,8809595040017
+ORD250630-0034,2025-6-30,13:9:52,이기선,0504-2089-9708,K001-0022,가죽케이스 박스 (2호),1,0,0,459659959824,ORD250630-0034,K001-0022
+ORD250630-0036,2025-6-30,13:12:10,김예나,01084968077,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459659959850,312506741100,312506741100
+ORD250630-0036,2025-6-30,13:12:10,김예나,01084968077,L001-0030,뷰티루틴 쇼핑백,1,0,0,459659959850,312506741100,L001-0030
+ORD250630-0036,2025-6-30,13:12:10,김예나,01084968077,K001-0041,단품 1SET 박스 (3호),1,0,0,459659959850,312506741100,K001-0041
+ORD250630-0037,2025-6-30,13:14:28,이희성,01041142799,L001-0030,뷰티루틴 쇼핑백,2,0,0,459659959861,502506273100,L001-0030
+ORD250630-0037,2025-6-30,13:14:28,이희성,01041142799,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459659959861,502506273100,K001-0008
+ORD250630-0037,2025-6-30,13:14:28,이희성,01041142799,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459659959861,502506273100,502506273100
+ORD250630-0037,2025-6-30,13:14:28,이희성,01041142799,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459659959861,502506273100,602503059130
+ORD250630-0038,2025-6-30,13:16:46,김유미,01075221692,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459659959872,502506102100,502506102100
+ORD250630-0038,2025-6-30,13:16:46,김유미,01075221692,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459659959872,502506102100,K001-0008
+ORD250630-0038,2025-6-30,13:16:46,김유미,01075221692,L001-0030,뷰티루틴 쇼핑백,2,0,0,459659959872,502506102100,L001-0030
+ORD250630-0038,2025-6-30,13:16:46,김유미,01075221692,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,459659959872,502506102100,602501223111
+ORD250630-0039,2025-6-30,13:18:28,엄기성,01049213750,K001-0041,단품 1SET 박스 (3호),1,0,0,459659959883,602503167130,K001-0041
+ORD250630-0039,2025-6-30,13:18:28,엄기성,01049213750,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459659959883,602503167130,602503167130
+ORD250630-0039,2025-6-30,13:18:28,엄기성,01049213750,L001-0030,뷰티루틴 쇼핑백,1,0,0,459659959883,602503167130,L001-0030
+ORD250630-0043,2025-6-30,13:19:28,최*균,0502-6386-8001,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459659959920,ORD250630-0043,L004-0023
+ORD250630-0043,2025-6-30,13:19:28,최*균,0502-6386-8001,K001-0022,가죽케이스 박스 (2호),1,0,0,459659959920,ORD250630-0043,K001-0022
+ORD250630-0035,2025-6-30,13:20:41,황문*,0503-6366-5922,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459659959835,ORD250630-0035,L004-0023
+ORD250630-0035,2025-6-30,13:20:41,황문*,0503-6366-5922,K001-0010,젤 3개 포장박스 (1호),1,0,0,459659959835,ORD250630-0035,K001-0010
+ORD250630-0032,2025-6-30,13:22:16,박태규,0504-2118-0009,K001-0022,가죽케이스 박스 (2호),1,0,0,459659959802,ORD250630-0032,K001-0022
+ORD250630-0032,2025-6-30,13:22:16,박태규,0504-2118-0009,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459659959802,ORD250630-0032,8809595040017
+ORD250630-0031,2025-6-30,13:23:29,이계원,0504-2243-4779,K001-0010,젤 3개 포장박스 (1호),1,0,0,459659959791,ORD250630-0031,K001-0010
+ORD250630-0031,2025-6-30,13:23:29,이계원,0504-2243-4779,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459659959791,ORD250630-0031,8809595040017
+ORD250630-0030,2025-6-30,13:24:34,이혜*,0502-2175-0104,K001-0010,젤 3개 포장박스 (1호),1,0,0,459659959780,112506035000,K001-0010
+ORD250630-0030,2025-6-30,13:24:34,이혜*,0502-2175-0104,P001-DS007A,DUALSONIC Pro Face CARTRIDGE 1Set,1,6000,0,459659959780,112506035000,112506035000
+ORD250630-0028,2025-6-30,13:25:47,방윤*,0502-2190-9438,K001-0010,젤 3개 포장박스 (1호),1,0,0,459659959765,132407042000,K001-0010
+ORD250630-0028,2025-6-30,13:25:47,방윤*,0502-2190-9438,P001-DS015A,DUALSONIC Pro BODY CARTRIDGE 1Set,1,30000,0,459659959765,132407042000,132407042000
+ORD250630-0029,2025-6-30,13:26:42,김경*,0502-2182-3697,K001-0010,젤 3개 포장박스 (1호),1,0,0,459659959776,112504092000,K001-0010
+ORD250630-0029,2025-6-30,13:26:42,김경*,0502-2182-3697,P001-DS007A,DUALSONIC Pro Face CARTRIDGE 1Set,1,6000,0,459659959776,112504092000,112504092000
+ORD250630-0109,2025-6-30,13:40:14,정미영,010-5497-1611,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459660262342,ORD250630-0109,L001-0032
+ORD250630-0109,2025-6-30,13:40:14,정미영,010-5497-1611,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262342,ORD250630-0109,K001-0008
+ORD250630-0109,2025-6-30,13:40:14,정미영,010-5497-1611,JGIFT-0026,EMS Belt_Purple,1,0,0,459660262342,ORD250630-0109,JGIFT-0026
+ORD250630-0145,2025-6-30,13:41:2,이진욱,010-2933-5938,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459660262703,ORD250630-0145,L001-0032
+ORD250630-0145,2025-6-30,13:41:2,이진욱,010-2933-5938,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262703,ORD250630-0145,K001-0008
+ORD250630-0145,2025-6-30,13:41:2,이진욱,010-2933-5938,JGIFT-0026,EMS Belt_Purple,1,0,0,459660262703,ORD250630-0145,JGIFT-0026
+ORD250630-0148,2025-6-30,13:41:50,김유진,010-9354-4417,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262736,ORD250630-0148,K001-0008
+ORD250630-0148,2025-6-30,13:41:50,김유진,010-9354-4417,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459660262736,ORD250630-0148,L001-0032
+ORD250630-0148,2025-6-30,13:41:50,김유진,010-9354-4417,JGIFT-0026,EMS Belt_Purple,1,0,0,459660262736,ORD250630-0148,JGIFT-0026
+ORD250630-0139,2025-6-30,13:43:10,박옥*,0502-2178-7494,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459660262644,ORD250630-0139,L001-0032
+ORD250630-0139,2025-6-30,13:43:10,박옥*,0502-2178-7494,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262644,ORD250630-0139,K001-0008
+ORD250630-0139,2025-6-30,13:43:10,박옥*,0502-2178-7494,JGIFT-0026,EMS Belt_Purple,1,0,0,459660262644,ORD250630-0139,JGIFT-0026
+ORD250630-0149,2025-6-30,13:44:1,문승희,010-8295-5191,JGIFT-0026,EMS Belt_Purple,1,0,0,459660262740,ORD250630-0149,JGIFT-0026
+ORD250630-0149,2025-6-30,13:44:1,문승희,010-8295-5191,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262740,ORD250630-0149,K001-0008
+ORD250630-0149,2025-6-30,13:44:1,문승희,010-8295-5191,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459660262740,ORD250630-0149,L001-0032
+ORD250630-0150,2025-6-30,13:44:44,임치영,010-5883-1647,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459660262751,ORD250630-0150,L001-0032
+ORD250630-0150,2025-6-30,13:44:44,임치영,010-5883-1647,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262751,ORD250630-0150,K001-0008
+ORD250630-0150,2025-6-30,13:44:44,임치영,010-5883-1647,JGIFT-0026,EMS Belt_Purple,1,0,0,459660262751,ORD250630-0150,JGIFT-0026
+ORD250630-0151,2025-6-30,13:48:18,김동혁,010-6559-5322,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459660262762,ORD250630-0151,L001-0032
+ORD250630-0151,2025-6-30,13:48:18,김동혁,010-6559-5322,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262762,ORD250630-0151,K001-0008
+ORD250630-0151,2025-6-30,13:48:18,김동혁,010-6559-5322,JGIFT-0026,EMS Belt_Purple,1,0,0,459660262762,ORD250630-0151,JGIFT-0026
+ORD250630-0146,2025-6-30,13:49:34,유민상,010-9057-4270,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459660262714,ORD250630-0146,L001-0032
+ORD250630-0146,2025-6-30,13:49:34,유민상,010-9057-4270,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262714,ORD250630-0146,K001-0008
+ORD250630-0146,2025-6-30,13:49:34,유민상,010-9057-4270,JGIFT-0026,EMS Belt_Purple,1,0,0,459660262714,ORD250630-0146,JGIFT-0026
+ORD250630-0147,2025-6-30,13:50:39,노우미,010-4340-0000,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262725,ORD250630-0147,K001-0008
+ORD250630-0147,2025-6-30,13:50:39,노우미,010-4340-0000,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459660262725,ORD250630-0147,L001-0032
+ORD250630-0147,2025-6-30,13:50:39,노우미,010-4340-0000,JGIFT-0026,EMS Belt_Purple,1,0,0,459660262725,ORD250630-0147,JGIFT-0026
+ORD250630-0141,2025-6-30,13:52:2,오승희,010-2281-6960,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262666,ORD250630-0141,K001-0008
+ORD250630-0141,2025-6-30,13:52:2,오승희,010-2281-6960,JGIFT-0024,EMS Belt_Mint,1,0,0,459660262666,ORD250630-0141,JGIFT-0024
+ORD250630-0141,2025-6-30,13:52:2,오승희,010-2281-6960,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459660262666,ORD250630-0141,L001-0032
+ORD250630-0142,2025-6-30,13:53:16,김현수,010-4602-4948,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459660262670,ORD250630-0142,L001-0032
+ORD250630-0142,2025-6-30,13:53:16,김현수,010-4602-4948,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262670,ORD250630-0142,K001-0008
+ORD250630-0142,2025-6-30,13:53:16,김현수,010-4602-4948,JGIFT-0024,EMS Belt_Mint,1,0,0,459660262670,ORD250630-0142,JGIFT-0024
+ORD250630-0143,2025-6-30,13:54:13,윤정인,010-8905-7628,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262681,ORD250630-0143,K001-0008
+ORD250630-0143,2025-6-30,13:54:13,윤정인,010-8905-7628,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459660262681,ORD250630-0143,L001-0032
+ORD250630-0143,2025-6-30,13:54:13,윤정인,010-8905-7628,JGIFT-0024,EMS Belt_Mint,1,0,0,459660262681,ORD250630-0143,JGIFT-0024
+ORD250630-0131,2025-6-30,13:55:24,권영진,010-2893-0691,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262563,ORD250630-0131,K001-0008
+ORD250630-0131,2025-6-30,13:55:24,권영진,010-2893-0691,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459660262563,ORD250630-0131,L001-0032
+ORD250630-0131,2025-6-30,13:55:24,권영진,010-2893-0691,JGIFT-0025,EMS Belt_Peach,1,0,0,459660262563,ORD250630-0131,JGIFT-0025
+ORD250630-0156,2025-6-30,13:56:26,류시우,010-8848-9315,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262810,ORD250630-0156,K001-0008
+ORD250630-0156,2025-6-30,13:56:26,류시우,010-8848-9315,JGIFT-0025,EMS Belt_Peach,1,0,0,459660262810,ORD250630-0156,JGIFT-0025
+ORD250630-0156,2025-6-30,13:56:26,류시우,010-8848-9315,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459660262810,ORD250630-0156,L001-0032
+ORD250630-0155,2025-6-30,13:58:1,양상규,010-6381-0937,JGIFT-0025,EMS Belt_Peach,1,0,0,459660262806,ORD250630-0155,JGIFT-0025
+ORD250630-0155,2025-6-30,13:58:1,양상규,010-6381-0937,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459660262806,ORD250630-0155,L001-0032
+ORD250630-0155,2025-6-30,13:58:1,양상규,010-6381-0937,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262806,ORD250630-0155,K001-0008
+ORD250630-0154,2025-6-30,13:59:7,최지원,010-9279-0986,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459660262795,ORD250630-0154,L001-0032
+ORD250630-0154,2025-6-30,13:59:7,최지원,010-9279-0986,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262795,ORD250630-0154,K001-0008
+ORD250630-0154,2025-6-30,13:59:7,최지원,010-9279-0986,JGIFT-0025,EMS Belt_Peach,1,0,0,459660262795,ORD250630-0154,JGIFT-0025
+ORD250630-0153,2025-6-30,14:0:10,조미희,010-4078-9611,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262784,ORD250630-0153,K001-0008
+ORD250630-0153,2025-6-30,14:0:10,조미희,010-4078-9611,JGIFT-0025,EMS Belt_Peach,1,0,0,459660262784,ORD250630-0153,JGIFT-0025
+ORD250630-0153,2025-6-30,14:0:10,조미희,010-4078-9611,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459660262784,ORD250630-0153,L001-0032
+ORD250630-0152,2025-6-30,14:1:19,이진주,010-4656-1240,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262773,ORD250630-0152,K001-0008
+ORD250630-0152,2025-6-30,14:1:19,이진주,010-4656-1240,JGIFT-0025,EMS Belt_Peach,1,0,0,459660262773,ORD250630-0152,JGIFT-0025
+ORD250630-0152,2025-6-30,14:1:19,이진주,010-4656-1240,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459660262773,ORD250630-0152,L001-0032
+ORD250630-0054,2025-6-30,14:6:3,정경희,010-3807-2093,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,459660261793,ORD250630-0054,L004-0023
+ORD250630-0054,2025-6-30,14:6:3,정경희,010-3807-2093,K001-0010,젤 3개 포장박스 (1호),1,0,0,459660261793,ORD250630-0054,K001-0010
+ORD250630-0054,2025-6-30,14:6:3,정경희,010-3807-2093,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459660261793,ORD250630-0054,8809595040017
+ORD250630-0103,2025-6-30,14:8:27,이선미,0502-3379-4433,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459660262283,ORD250630-0103,8809595040017
+ORD250630-0103,2025-6-30,14:8:27,이선미,0502-3379-4433,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459660262283,ORD250630-0103,L004-0023
+ORD250630-0103,2025-6-30,14:8:27,이선미,0502-3379-4433,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459660262283,ORD250630-0103,K001-0020
+ORD250630-0102,2025-6-30,14:14:52,김건곤,010-2588-7892,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459660262272,ORD250630-0102,8809595040017
+ORD250630-0102,2025-6-30,14:14:52,김건곤,010-2588-7892,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459660262272,ORD250630-0102,K001-0020
+ORD250630-0102,2025-6-30,14:14:52,김건곤,010-2588-7892,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459660262272,ORD250630-0102,L004-0023
+ORD250630-0055,2025-6-30,14:18:13,안후남,010-8565-5080,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459660261804,ORD250630-0055,8809595040017
+ORD250630-0055,2025-6-30,14:18:13,안후남,010-8565-5080,K001-0010,젤 3개 포장박스 (1호),1,0,0,459660261804,ORD250630-0055,K001-0010
+ORD250630-0107,2025-6-30,14:19:0,박영선,010-9392-7260,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,459660262320,ORD250630-0107,L004-0023
+ORD250630-0107,2025-6-30,14:19:0,박영선,010-9392-7260,K001-0010,젤 3개 포장박스 (1호),1,0,0,459660262320,ORD250630-0107,K001-0010
+ORD250630-0106,2025-6-30,14:20:37,강경호,010-8884-4914,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459660262316,ORD250630-0106,L004-0023
+ORD250630-0106,2025-6-30,14:20:37,강경호,010-8884-4914,K001-0022,가죽케이스 박스 (2호),1,0,0,459660262316,ORD250630-0106,K001-0022
+ORD250630-0108,2025-6-30,14:22:23,임형일,010-4086-8464,K001-0010,젤 3개 포장박스 (1호),1,0,0,459660262331,ORD250630-0108,K001-0010
+ORD250630-0108,2025-6-30,14:22:23,임형일,010-4086-8464,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,459660262331,ORD250630-0108,L004-0023
+ORD250630-0108,2025-6-30,14:22:23,임형일,010-4086-8464,L004-0032,Elixir Lifting Collagen Ampoule(엘릭시르 콜라겐 앰플) 35ML,1,0,0,459660262331,ORD250630-0108,8809527486586
+ORD250630-0121,2025-6-30,14:32:24,김인영,010-6276-0339,L001-0030,뷰티루틴 쇼핑백,3,0,0,459660262460,ORD250630-0121,L001-0030
+ORD250630-0121,2025-6-30,14:32:24,김인영,010-6276-0339,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459660262460,ORD250630-0121,K001-0007
+ORD250630-0121,2025-6-30,14:32:24,김인영,010-6276-0339,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),3,0,0,459660262460,ORD250630-0121,8809595040628
+ORD250630-0121,2025-6-30,14:32:24,김인영,010-6276-0339,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),3,0,0,459660262460,ORD250630-0121,8809595040635
+ORD250630-0122,2025-6-30,14:35:13,김성태,010-9009-5768,L001-0030,뷰티루틴 쇼핑백,3,0,0,459660262471,ORD250630-0122,L001-0030
+ORD250630-0122,2025-6-30,14:35:13,김성태,010-9009-5768,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),3,0,0,459660262471,ORD250630-0122,8809595040628
+ORD250630-0122,2025-6-30,14:35:13,김성태,010-9009-5768,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),3,0,0,459660262471,ORD250630-0122,8809595040635
+ORD250630-0122,2025-6-30,14:35:13,김성태,010-9009-5768,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459660262471,ORD250630-0122,K001-0007
+ORD250630-0123,2025-6-30,14:37:9,김성태,010-9009-5768,L001-0030,뷰티루틴 쇼핑백,3,0,0,459660262482,ORD250630-0123,L001-0030
+ORD250630-0123,2025-6-30,14:37:9,김성태,010-9009-5768,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),3,0,0,459660262482,ORD250630-0123,8809595040635
+ORD250630-0123,2025-6-30,14:37:9,김성태,010-9009-5768,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459660262482,ORD250630-0123,K001-0007
+ORD250630-0123,2025-6-30,14:37:9,김성태,010-9009-5768,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),3,0,0,459660262482,ORD250630-0123,8809595040628
+ORD250630-0124,2025-6-30,14:39:35,유수화,0502-3178-3567,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),3,0,0,459660262493,ORD250630-0124,8809595040628
+ORD250630-0124,2025-6-30,14:39:35,유수화,0502-3178-3567,L001-0030,뷰티루틴 쇼핑백,3,0,0,459660262493,ORD250630-0124,L001-0030
+ORD250630-0124,2025-6-30,14:39:35,유수화,0502-3178-3567,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459660262493,ORD250630-0124,K001-0007
+ORD250630-0124,2025-6-30,14:39:35,유수화,0502-3178-3567,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),3,0,0,459660262493,ORD250630-0124,8809595040635
+ORD250630-0125,2025-6-30,14:41:41,김은진,010-5547-2357,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),3,0,0,459660262504,ORD250630-0125,8809595040628
+ORD250630-0125,2025-6-30,14:41:41,김은진,010-5547-2357,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),3,0,0,459660262504,ORD250630-0125,8809595040635
+ORD250630-0125,2025-6-30,14:41:41,김은진,010-5547-2357,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459660262504,ORD250630-0125,K001-0007
+ORD250630-0125,2025-6-30,14:41:41,김은진,010-5547-2357,L001-0030,뷰티루틴 쇼핑백,3,0,0,459660262504,ORD250630-0125,L001-0030
+ORD250630-0126,2025-6-30,14:43:40,김서윤,010-5486-2021,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),3,0,0,459660262515,ORD250630-0126,8809595040635
+ORD250630-0126,2025-6-30,14:43:40,김서윤,010-5486-2021,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),3,0,0,459660262515,ORD250630-0126,8809595040628
+ORD250630-0126,2025-6-30,14:43:40,김서윤,010-5486-2021,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459660262515,ORD250630-0126,K001-0007
+ORD250630-0126,2025-6-30,14:43:40,김서윤,010-5486-2021,L001-0030,뷰티루틴 쇼핑백,3,0,0,459660262515,ORD250630-0126,L001-0030
+ORD250630-0127,2025-6-30,14:46:9,배은희,0502-3280-9261,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459660262526,ORD250630-0127,K001-0007
+ORD250630-0127,2025-6-30,14:46:9,배은희,0502-3280-9261,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),3,0,0,459660262526,ORD250630-0127,8809595040635
+ORD250630-0127,2025-6-30,14:46:9,배은희,0502-3280-9261,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),3,0,0,459660262526,ORD250630-0127,8809595040628
+ORD250630-0127,2025-6-30,14:46:9,배은희,0502-3280-9261,L001-0030,뷰티루틴 쇼핑백,3,0,0,459660262526,ORD250630-0127,L001-0030
+ORD250630-0120,2025-6-30,14:49:43,곽현숙,010-6778-0330,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),3,0,0,60262456,ORD250630-0120,8809595040635
+ORD250630-0120,2025-6-30,14:49:43,곽현숙,010-6778-0330,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,60262456,ORD250630-0120,K001-0007
+ORD250630-0120,2025-6-30,14:49:43,곽현숙,010-6778-0330,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),3,0,0,60262456,ORD250630-0120,8809595040628
+ORD250630-0120,2025-6-30,14:49:43,곽현숙,010-6778-0330,L001-0030,뷰티루틴 쇼핑백,3,0,0,60262456,ORD250630-0120,L001-0030
+ORD250630-0128,2025-6-30,14:53:48,문창준,010-5619-8217,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),6,0,0,459660262530,ORD250630-0128,8809595040635
+ORD250630-0128,2025-6-30,14:53:48,문창준,010-5619-8217,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),6,0,0,459660262530,ORD250630-0128,8809595040628
+ORD250630-0128,2025-6-30,14:53:48,문창준,010-5619-8217,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262530,ORD250630-0128,K001-0008
+ORD250630-0128,2025-6-30,14:53:48,문창준,010-5619-8217,L001-0030,뷰티루틴 쇼핑백,6,0,0,459660262530,ORD250630-0128,L001-0030
+ORD250630-0133,2025-6-30,14:56:8,서주*,0503-6372-5495,K001-0010,젤 3개 포장박스 (1호),1,0,0,459660262585,ORD250630-0133,K001-0010
+ORD250630-0133,2025-6-30,14:56:8,서주*,0503-6372-5495,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,459660262585,ORD250630-0133,L004-0023
+ORD250630-0056,2025-6-30,14:56:58,김현영,010-2378-5373,K001-0041,단품 1SET 박스 (3호),1,0,0,459660261815,502506142100,K001-0041
+ORD250630-0056,2025-6-30,14:56:58,김현영,010-2378-5373,L001-0030,뷰티루틴 쇼핑백,1,0,0,459660261815,502506142100,L001-0030
+ORD250630-0056,2025-6-30,14:56:58,김현영,010-2378-5373,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459660261815,502506142100,502506142100
+ORD250630-0134,2025-6-30,14:59:32,해외주문,07041187330,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],1,40000,400000,459660262596,402502115100,402502115100
+ORD250630-0134,2025-6-30,14:59:32,해외주문,07041187330,L001-0030,뷰티루틴 쇼핑백,1,0,0,459660262596,402502115100,L001-0030
+ORD250630-0134,2025-6-30,14:59:32,해외주문,07041187330,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459660262596,402502115100,K001-0007
+ORD250630-0134,2025-6-30,14:59:32,해외주문,07041187330,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459660262596,402502115100,8809595040017
+ORD250630-0101,2025-6-30,15:23:16,차경자,010-3388-7094,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459660262261,ORD250630-0101,L004-0023
+ORD250630-0101,2025-6-30,15:23:16,차경자,010-3388-7094,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459660262261,ORD250630-0101,8809595040017
+ORD250630-0101,2025-6-30,15:23:16,차경자,010-3388-7094,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459660262261,ORD250630-0101,K001-0020
+ORD250630-0100,2025-6-30,15:25:27,박남수,010-2034-2905,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459660262250,ORD250630-0100,K001-0020
+ORD250630-0100,2025-6-30,15:25:27,박남수,010-2034-2905,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459660262250,ORD250630-0100,L004-0023
+ORD250630-0100,2025-6-30,15:25:27,박남수,010-2034-2905,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459660262250,ORD250630-0100,8809595040017
+ORD250630-0099,2025-6-30,15:27:1,최무결,010-3509-2137,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459660262246,ORD250630-0099,8809595040017
+ORD250630-0099,2025-6-30,15:27:1,최무결,010-3509-2137,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459660262246,ORD250630-0099,L004-0023
+ORD250630-0099,2025-6-30,15:27:1,최무결,010-3509-2137,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459660262246,ORD250630-0099,K001-0020
+ORD250630-0098,2025-6-30,15:29:3,jeonghee,010-3101-4608,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459660262235,ORD250630-0098,K001-0020
+ORD250630-0098,2025-6-30,15:29:3,jeonghee,010-3101-4608,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459660262235,ORD250630-0098,8809595040017
+ORD250630-0098,2025-6-30,15:29:3,jeonghee,010-3101-4608,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459660262235,ORD250630-0098,L004-0023
+ORD250630-0097,2025-6-30,15:31:17,이승준,010-4614-7210,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459660262224,ORD250630-0097,L004-0023
+ORD250630-0097,2025-6-30,15:31:17,이승준,010-4614-7210,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459660262224,ORD250630-0097,8809595040017
+ORD250630-0097,2025-6-30,15:31:17,이승준,010-4614-7210,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459660262224,ORD250630-0097,K001-0020
+ORD250630-0096,2025-6-30,15:33:4,최길남,010-5366-6604,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459660262213,ORD250630-0096,L004-0023
+ORD250630-0096,2025-6-30,15:33:4,최길남,010-5366-6604,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459660262213,ORD250630-0096,8809595040017
+ORD250630-0096,2025-6-30,15:33:4,최길남,010-5366-6604,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459660262213,ORD250630-0096,K001-0020
+ORD250630-0094,2025-6-30,15:35:7,우민호,010-8000-4449,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459660262191,ORD250630-0094,L004-0023
+ORD250630-0094,2025-6-30,15:35:7,우민호,010-8000-4449,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459660262191,ORD250630-0094,8809595040017
+ORD250630-0094,2025-6-30,15:35:7,우민호,010-8000-4449,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459660262191,ORD250630-0094,K001-0020
+ORD250630-0095,2025-6-30,15:37:24,김보람,010-4656-9306,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459660262202,ORD250630-0095,8809595040017
+ORD250630-0095,2025-6-30,15:37:24,김보람,010-4656-9306,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459660262202,ORD250630-0095,L004-0023
+ORD250630-0095,2025-6-30,15:37:24,김보람,010-4656-9306,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459660262202,ORD250630-0095,K001-0020
+ORD250630-0093,2025-6-30,15:39:17,이소연,010-2784-8988,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459660262180,ORD250630-0093,K001-0020
+ORD250630-0093,2025-6-30,15:39:17,이소연,010-2784-8988,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459660262180,ORD250630-0093,8809595040017
+ORD250630-0093,2025-6-30,15:39:17,이소연,010-2784-8988,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459660262180,ORD250630-0093,L004-0023
+ORD250630-0092,2025-6-30,15:42:37,오수정,010-3299-4563,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459660262176,ORD250630-0092,8809595040017
+ORD250630-0092,2025-6-30,15:42:37,오수정,010-3299-4563,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459660262176,ORD250630-0092,L004-0023
+ORD250630-0092,2025-6-30,15:42:37,오수정,010-3299-4563,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459660262176,ORD250630-0092,K001-0020
+ORD250630-0091,2025-6-30,15:44:21,나미옥,010-3121-3214,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459660262165,ORD250630-0091,L004-0023
+ORD250630-0091,2025-6-30,15:44:21,나미옥,010-3121-3214,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459660262165,ORD250630-0091,K001-0020
+ORD250630-0091,2025-6-30,15:44:21,나미옥,010-3121-3214,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459660262165,ORD250630-0091,8809595040017
+ORD250630-0090,2025-6-30,15:45:52,이순희,010-3372-4553,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459660262154,ORD250630-0090,L004-0023
+ORD250630-0090,2025-6-30,15:45:52,이순희,010-3372-4553,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459660262154,ORD250630-0090,K001-0020
+ORD250630-0090,2025-6-30,15:45:52,이순희,010-3372-4553,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459660262154,ORD250630-0090,8809595040017
+ORD250630-0089,2025-6-30,15:48:16,서지형,010-3427-2652,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459660262143,ORD250630-0089,8809595040017
+ORD250630-0089,2025-6-30,15:48:16,서지형,010-3427-2652,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459660262143,ORD250630-0089,K001-0020
+ORD250630-0089,2025-6-30,15:48:16,서지형,010-3427-2652,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459660262143,ORD250630-0089,L004-0023
+ORD250630-0194,2025-6-30,15:49:50,김대석,010-6530-0730,K001-0010,젤 3개 포장박스 (1호),1,0,0,692341003324,ORD250630-0194,K001-0010
+ORD250630-0194,2025-6-30,15:49:50,김대석,010-6530-0730,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,692341003324,ORD250630-0194,L004-0023
+ORD250630-0193,2025-6-30,15:51:33,신화선,010-9484-0501,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692341003313,ORD250630-0193,L004-0023
+ORD250630-0193,2025-6-30,15:51:33,신화선,010-9484-0501,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,692341003313,ORD250630-0193,K001-0020
+ORD250630-0193,2025-6-30,15:51:33,신화선,010-9484-0501,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,692341003313,ORD250630-0193,8809595040017
+ORD250630-0191,2025-6-30,15:52:52,방선아,010-8881-2323,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,692341003291,ORD250630-0191,8809595040017
+ORD250630-0191,2025-6-30,15:52:52,방선아,010-8881-2323,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,692341003291,ORD250630-0191,K001-0020
+ORD250630-0191,2025-6-30,15:52:52,방선아,010-8881-2323,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692341003291,ORD250630-0191,L004-0023
+ORD250630-0192,2025-6-30,15:59:6,정지윤,010-5764-0782,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,692341003302,ORD250630-0192,8809595040017
+ORD250630-0192,2025-6-30,15:59:6,정지윤,010-5764-0782,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692341003302,ORD250630-0192,L004-0023
+ORD250630-0192,2025-6-30,15:59:6,정지윤,010-5764-0782,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,692341003302,ORD250630-0192,K001-0020
+ORD250630-0190,2025-6-30,16:1:25,이영주,010-7227-7717,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692341003280,ORD250630-0190,L004-0023
+ORD250630-0190,2025-6-30,16:1:25,이영주,010-7227-7717,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,692341003280,ORD250630-0190,K001-0020
+ORD250630-0190,2025-6-30,16:1:25,이영주,010-7227-7717,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,692341003280,ORD250630-0190,8809595040017
+ORD250630-0105,2025-6-30,16:6:33,박지원,0502-3578-5598,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459660262305,ORD250630-0105,K001-0008
+ORD250630-0105,2025-6-30,16:6:33,박지원,0502-3578-5598,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),30,0,0,459660262305,ORD250630-0105,L004-0023
+ORD250630-0105,2025-6-30,16:6:33,박지원,0502-3578-5598,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,459660262305,ORD250630-0105,8809595040017
+ORD250630-0213,2025-6-30,16:49:54,박정연,010-8780-2209,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,92342611180,ORD250630-0213,L004-0023
+ORD250630-0213,2025-6-30,16:49:54,박정연,010-8780-2209,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,92342611180,ORD250630-0213,8809595040017
+ORD250630-0213,2025-6-30,16:49:54,박정연,010-8780-2209,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,92342611180,ORD250630-0213,K001-0020
+ORD250630-0212,2025-6-30,16:53:9,김지은,010-2545-5591,L001-0030,뷰티루틴 쇼핑백,1,0,0,692342611176,602503108130,L001-0030
+ORD250630-0212,2025-6-30,16:53:9,김지은,010-2545-5591,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,692342611176,602503108130,L004-0023
+ORD250630-0212,2025-6-30,16:53:9,김지은,010-2545-5591,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,692342611176,602503108130,8809595040673
+ORD250630-0212,2025-6-30,16:53:9,김지은,010-2545-5591,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692342611176,602503108130,K001-0007
+ORD250630-0212,2025-6-30,16:53:9,김지은,010-2545-5591,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,692342611176,602503108130,8809595040680
+ORD250630-0212,2025-6-30,16:53:9,김지은,010-2545-5591,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,692342611176,602503108130,8809595040697
+ORD250630-0212,2025-6-30,16:53:9,김지은,010-2545-5591,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,692342611176,602503108130,602503108130
+ORD250630-0216,2025-6-30,17:9:34,정성원,010-9483-1654,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692342611213,402502123100,L004-0023
+ORD250630-0216,2025-6-30,17:9:34,정성원,010-9483-1654,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692342611213,402502123100,502506256100
+ORD250630-0216,2025-6-30,17:9:34,정성원,010-9483-1654,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],1,40000,400000,692342611213,402502123100,402502123100
+ORD250630-0216,2025-6-30,17:9:34,정성원,010-9483-1654,L001-0030,뷰티루틴 쇼핑백,2,0,0,692342611213,402502123100,L001-0030
+ORD250630-0216,2025-6-30,17:9:34,정성원,010-9483-1654,JGIFT-0025,EMS Belt_Peach,1,0,0,692342611213,402502123100,JGIFT-0025
+ORD250630-0216,2025-6-30,17:9:34,정성원,010-9483-1654,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692342611213,402502123100,K001-0008
+ORD250630-0216,2025-6-30,17:9:34,정성원,010-9483-1654,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,692342611213,402502123100,8809750465013
+ORD250630-0216,2025-6-30,17:9:34,정성원,010-9483-1654,P001-0156,우디케이스,1,0,0,692342611213,402502123100,8809595040598
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-1.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-1.csv
new file mode 100644
index 0000000..8dc0c99
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-1.csv
@@ -0,0 +1,89 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250701-0002,2025-7-1,13:14:31,김나영,010-6582-6552,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459670412972,ORD250701-0002,8809595040017
+ORD250701-0002,2025-7-1,13:14:31,김나영,010-6582-6552,K001-0010,젤 3개 포장박스 (1호),1,0,0,459670412972,ORD250701-0002,K001-0010
+ORD250701-0093,2025-7-1,13:17:6,김성태,01091769735,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,459671082721,502506184100,602501037111
+ORD250701-0093,2025-7-1,13:17:6,김성태,01091769735,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459671082721,502506184100,K001-0008
+ORD250701-0093,2025-7-1,13:17:6,김성태,01091769735,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459671082721,502506184100,502506184100
+ORD250701-0093,2025-7-1,13:17:6,김성태,01091769735,L001-0030,뷰티루틴 쇼핑백,2,0,0,459671082721,502506184100,L001-0030
+ORD250701-0091,2025-7-1,13:19:46,조영진,01045228534,K001-0041,단품 1SET 박스 (3호),1,0,0,459671082706,312506095101,K001-0041
+ORD250701-0091,2025-7-1,13:19:46,조영진,01045228534,L001-0030,뷰티루틴 쇼핑백,1,0,0,459671082706,312506095101,L001-0030
+ORD250701-0091,2025-7-1,13:19:46,조영진,01045228534,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459671082706,312506095101,312506095101
+ORD250701-0087,2025-7-1,13:22:37,김서희,010-9321-7874,PF001-001C,[BR] DAY SHOT (14 BOTTLES),2,0,0,459671082662,ORD250701-0087,8809595040642
+ORD250701-0087,2025-7-1,13:22:37,김서희,010-9321-7874,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459671082662,ORD250701-0087,K001-0007
+ORD250701-0087,2025-7-1,13:22:37,김서희,010-9321-7874,L001-0030,뷰티루틴 쇼핑백,4,0,0,459671082662,ORD250701-0087,L001-0030
+ORD250701-0087,2025-7-1,13:22:37,김서희,010-9321-7874,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),3,0,0,459671082662,ORD250701-0087,8809595040635
+ORD250701-0087,2025-7-1,13:22:37,김서희,010-9321-7874,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),3,0,0,459671082662,ORD250701-0087,8809595040628
+ORD250701-0086,2025-7-1,13:26:26,이은정,010-9133-7397,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),3,0,0,459671082651,ORD250701-0086,8809595040628
+ORD250701-0086,2025-7-1,13:26:26,이은정,010-9133-7397,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459671082651,ORD250701-0086,K001-0007
+ORD250701-0086,2025-7-1,13:26:26,이은정,010-9133-7397,L001-0030,뷰티루틴 쇼핑백,3,0,0,459671082651,ORD250701-0086,L001-0030
+ORD250701-0086,2025-7-1,13:26:26,이은정,010-9133-7397,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),3,0,0,459671082651,ORD250701-0086,8809595040635
+ORD250701-0085,2025-7-1,13:28:30,이주희,010-3006-2019,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),3,0,0,459671082640,ORD250701-0085,8809595040635
+ORD250701-0085,2025-7-1,13:28:30,이주희,010-3006-2019,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),3,0,0,459671082640,ORD250701-0085,8809595040628
+ORD250701-0085,2025-7-1,13:28:30,이주희,010-3006-2019,L001-0030,뷰티루틴 쇼핑백,3,0,0,459671082640,ORD250701-0085,L001-0030
+ORD250701-0085,2025-7-1,13:28:30,이주희,010-3006-2019,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459671082640,ORD250701-0085,K001-0007
+ORD250701-0079,2025-7-1,13:29:46,조새롬,010-4030-8629,L001-0030,뷰티루틴 쇼핑백,1,0,0,459671082581,ORD250701-0079,L001-0030
+ORD250701-0079,2025-7-1,13:29:46,조새롬,010-4030-8629,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,459671082581,ORD250701-0079,8809595040628
+ORD250701-0079,2025-7-1,13:29:46,조새롬,010-4030-8629,K001-0041,단품 1SET 박스 (3호),1,0,0,459671082581,ORD250701-0079,K001-0041
+ORD250701-0076,2025-7-1,13:32:21,진수연,010-4106-6683,K001-0022,가죽케이스 박스 (2호),1,0,0,459671082555,ORD250701-0076,K001-0022
+ORD250701-0076,2025-7-1,13:32:21,진수연,010-4106-6683,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459671082555,ORD250701-0076,L004-0023
+ORD250701-0074,2025-7-1,13:33:54,서주현,010-5226-5763,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459671082533,ORD250701-0074,8809595040017
+ORD250701-0074,2025-7-1,13:33:54,서주현,010-5226-5763,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459671082533,ORD250701-0074,L004-0023
+ORD250701-0074,2025-7-1,13:33:54,서주현,010-5226-5763,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459671082533,ORD250701-0074,K001-0020
+ORD250701-0073,2025-7-1,13:36:55,고순영,010-3829-6548,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459671082522,ORD250701-0073,8809595040017
+ORD250701-0073,2025-7-1,13:36:55,고순영,010-3829-6548,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459671082522,ORD250701-0073,K001-0020
+ORD250701-0073,2025-7-1,13:36:55,고순영,010-3829-6548,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459671082522,ORD250701-0073,L004-0023
+ORD250701-0072,2025-7-1,13:38:38,김혜선,010-2050-7750,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459671082511,ORD250701-0072,8809595040017
+ORD250701-0072,2025-7-1,13:38:38,김혜선,010-2050-7750,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459671082511,ORD250701-0072,K001-0020
+ORD250701-0072,2025-7-1,13:38:38,김혜선,010-2050-7750,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459671082511,ORD250701-0072,L004-0023
+ORD250701-0071,2025-7-1,13:40:38,김효순,010-9766-2547,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459671082500,ORD250701-0071,8809595040017
+ORD250701-0071,2025-7-1,13:40:38,김효순,010-9766-2547,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459671082500,ORD250701-0071,L004-0023
+ORD250701-0071,2025-7-1,13:40:38,김효순,010-9766-2547,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459671082500,ORD250701-0071,K001-0020
+ORD250701-0070,2025-7-1,13:43:1,유지희,010-6596-1249,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459671082496,ORD250701-0070,8809595040017
+ORD250701-0070,2025-7-1,13:43:1,유지희,010-6596-1249,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459671082496,ORD250701-0070,L004-0023
+ORD250701-0070,2025-7-1,13:43:1,유지희,010-6596-1249,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459671082496,ORD250701-0070,K001-0020
+ORD250701-0069,2025-7-1,13:45:23,김성태,010-9176-9735,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459671082485,ORD250701-0069,8809595040017
+ORD250701-0069,2025-7-1,13:45:23,김성태,010-9176-9735,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459671082485,ORD250701-0069,K001-0020
+ORD250701-0069,2025-7-1,13:45:23,김성태,010-9176-9735,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459671082485,ORD250701-0069,L004-0023
+ORD250701-0068,2025-7-1,13:47:44,윤서정,010-8856-0355,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459671082474,ORD250701-0068,L004-0023
+ORD250701-0068,2025-7-1,13:47:44,윤서정,010-8856-0355,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459671082474,ORD250701-0068,K001-0020
+ORD250701-0068,2025-7-1,13:47:44,윤서정,010-8856-0355,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459671082474,ORD250701-0068,8809595040017
+ORD250701-0067,2025-7-1,13:49:50,신민주,010-9095-8375,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459671082463,ORD250701-0067,L004-0023
+ORD250701-0067,2025-7-1,13:49:50,신민주,010-9095-8375,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459671082463,ORD250701-0067,K001-0020
+ORD250701-0067,2025-7-1,13:49:50,신민주,010-9095-8375,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459671082463,ORD250701-0067,8809595040017
+ORD250701-0066,2025-7-1,13:51:53,채인숙,010-3594-0121,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459671082452,ORD250701-0066,K001-0020
+ORD250701-0066,2025-7-1,13:51:53,채인숙,010-3594-0121,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459671082452,ORD250701-0066,L004-0023
+ORD250701-0066,2025-7-1,13:51:53,채인숙,010-3594-0121,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459671082452,ORD250701-0066,8809595040017
+ORD250701-0065,2025-7-1,13:55:18,마태숙,010-5547-6644,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459671082441,ORD250701-0065,L004-0023
+ORD250701-0065,2025-7-1,13:55:18,마태숙,010-5547-6644,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459671082441,ORD250701-0065,8809595040017
+ORD250701-0065,2025-7-1,13:55:18,마태숙,010-5547-6644,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459671082441,ORD250701-0065,K001-0020
+ORD250701-0109,2025-7-1,14:56:55,박계화,01064175129,L001-0030,뷰티루틴 쇼핑백,1,0,0,692362335463,602503100130,L001-0030
+ORD250701-0109,2025-7-1,14:56:55,박계화,01064175129,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,692362335463,602503100130,602503100130
+ORD250701-0109,2025-7-1,14:56:55,박계화,01064175129,K001-0041,단품 1SET 박스 (3호),1,0,0,692362335463,602503100130,K001-0041
+ORD250701-0108,2025-7-1,14:58:19,유희숙,0504-2229-6127,K001-0022,가죽케이스 박스 (2호),1,0,0,692362335452,ORD250701-0108,K001-0022
+ORD250701-0108,2025-7-1,14:58:19,유희숙,0504-2229-6127,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,692362335452,ORD250701-0108,8809595040017
+ORD250701-0104,2025-7-1,15:11:59,서효숙,010-6604-9002,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,692362335415,ORD250701-0104,K001-0020
+ORD250701-0104,2025-7-1,15:11:59,서효숙,010-6604-9002,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,692362335415,ORD250701-0104,8809595040017
+ORD250701-0104,2025-7-1,15:11:59,서효숙,010-6604-9002,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692362335415,ORD250701-0104,L004-0023
+ORD250701-0103,2025-7-1,15:14:19,김지은,010-4200-7062,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,692362335404,ORD250701-0103,8809595040017
+ORD250701-0103,2025-7-1,15:14:19,김지은,010-4200-7062,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,692362335404,ORD250701-0103,K001-0020
+ORD250701-0103,2025-7-1,15:14:19,김지은,010-4200-7062,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692362335404,ORD250701-0103,L004-0023
+ORD250701-0105,2025-7-1,15:34:59,김정원,010-3253-0502,P001-0156,우디케이스,1,0,0,692362335426,402502124100,8809595040598
+ORD250701-0105,2025-7-1,15:34:59,김정원,010-3253-0502,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692362335426,402502124100,L004-0023
+ORD250701-0105,2025-7-1,15:34:59,김정원,010-3253-0502,L001-0030,뷰티루틴 쇼핑백,2,0,0,692362335426,402502124100,L001-0030
+ORD250701-0105,2025-7-1,15:34:59,김정원,010-3253-0502,JGIFT-0025,EMS Belt_Peach,1,0,0,692362335426,402502124100,JGIFT-0025
+ORD250701-0105,2025-7-1,15:34:59,김정원,010-3253-0502,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,692362335426,402502124100,8809750465013
+ORD250701-0105,2025-7-1,15:34:59,김정원,010-3253-0502,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692362335426,402502124100,502506230100
+ORD250701-0105,2025-7-1,15:34:59,김정원,010-3253-0502,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],1,40000,400000,692362335426,402502124100,402502124100
+ORD250701-0105,2025-7-1,15:34:59,김정원,010-3253-0502,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692362335426,402502124100,K001-0008
+ORD250701-0097,2025-7-1,15:55:53,성경미,010-4564-7588,P001-0101,Micro B-Type 충전기 Assy,1,0,0,692365244022,ORD250701-0097,8809595040246
+ORD250701-0097,2025-7-1,15:55:53,성경미,010-4564-7588,K001-0010,젤 3개 포장박스 (1호),1,0,0,692365244022,ORD250701-0097,K001-0010
+ORD250701-0113,2025-7-1,16:14:48,윤정진,010-7317-4215,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,692365300523,ORD250701-0113,K001-0020
+ORD250701-0113,2025-7-1,16:14:48,윤정진,010-7317-4215,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,692365300523,ORD250701-0113,8809595040017
+ORD250701-0113,2025-7-1,16:14:48,윤정진,010-7317-4215,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692365300523,ORD250701-0113,L004-0023
+ORD250701-0115,2025-7-1,16:20:9,전경진,010-7997-2219,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,692365300545,502506125100,602503217130
+ORD250701-0115,2025-7-1,16:20:9,전경진,010-7997-2219,L001-0030,뷰티루틴 쇼핑백,2,0,0,692365300545,502506125100,L001-0030
+ORD250701-0115,2025-7-1,16:20:9,전경진,010-7997-2219,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692365300545,502506125100,502506125100
+ORD250701-0115,2025-7-1,16:20:9,전경진,010-7997-2219,JGIFT-0025,EMS Belt_Peach,1,0,0,692365300545,502506125100,JGIFT-0025
+ORD250701-0115,2025-7-1,16:20:9,전경진,010-7997-2219,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),7,0,0,692365300545,502506125100,L004-0023
+ORD250701-0115,2025-7-1,16:20:9,전경진,010-7997-2219,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692365300545,502506125100,K001-0008
+ORD250701-0115,2025-7-1,16:20:9,전경진,010-7997-2219,P001-0156,우디케이스,1,0,0,692365300545,502506125100,8809595040598
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-10.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-10.csv
new file mode 100644
index 0000000..95cb21e
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-10.csv
@@ -0,0 +1,58 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250710-0001,2025-7-10,10:30:4,쿠팡 동탄1_1,070-7771-6872,K001-0041,단품 1SET 박스 (3호),1,0,0,692487843304,602502548120,K001-0041
+ORD250710-0001,2025-7-10,10:30:4,쿠팡 동탄1_1,070-7771-6872,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,692487843304,602502548120,L004-0023
+ORD250710-0001,2025-7-10,10:30:4,쿠팡 동탄1_1,070-7771-6872,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),1,0,0,692487843304,602502548120,602502548120
+ORD250710-0042,2025-7-10,11:45:9,이숙영,0504-2333-5561,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459748412863,ORD250710-0042,L004-0023
+ORD250710-0042,2025-7-10,11:45:9,이숙영,0504-2333-5561,K001-0022,가죽케이스 박스 (2호),1,0,0,459748412863,ORD250710-0042,K001-0022
+ORD250710-0045,2025-7-10,11:47:16,최*원,0502-6307-3612,K001-0022,가죽케이스 박스 (2호),1,0,0,459748412896,ORD250710-0045,K001-0022
+ORD250710-0045,2025-7-10,11:47:16,최*원,0502-6307-3612,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459748412896,ORD250710-0045,L004-0023
+ORD250710-0046,2025-7-10,11:49:26,노인화,01076746322,K001-0010,젤 3개 포장박스 (1호),1,0,0,459748412900,ORD250710-0046,K001-0010
+ORD250710-0046,2025-7-10,11:49:26,노인화,01076746322,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,459748412900,ORD250710-0046,L004-0023
+ORD250710-0058,2025-7-10,11:50:54,김유경,010-4288-8322,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,459748796275,ORD250710-0058,L004-0023
+ORD250710-0058,2025-7-10,11:50:54,김유경,010-4288-8322,K001-0010,젤 3개 포장박스 (1호),1,0,0,459748796275,ORD250710-0058,K001-0010
+ORD250710-0060,2025-7-10,11:54:38,이수연,010-3732-3858,K001-0010,젤 3개 포장박스 (1호),1,0,0,459748796290,ORD250710-0060,K001-0010
+ORD250710-0060,2025-7-10,11:54:38,이수연,010-3732-3858,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459748796290,ORD250710-0060,8809595040017
+ORD250710-0057,2025-7-10,11:55:41,정현주,010-6654-1936,K001-0010,젤 3개 포장박스 (1호),1,0,0,459748796264,ORD250710-0057,K001-0010
+ORD250710-0057,2025-7-10,11:55:41,정현주,010-6654-1936,P001-0108,C-Type 충전기 Assy,1,0,0,459748796264,ORD250710-0057,8809595040246
+ORD250710-0059,2025-7-10,11:57:57,이문숙,010-4427-8350,K001-0010,젤 3개 포장박스 (1호),1,0,0,459748796286,112501003010,K001-0010
+ORD250710-0059,2025-7-10,11:57:57,이문숙,010-4427-8350,P001-DS148A,DUALSONIC BLACK Pro EYE CARTRIDGE 1Set 100,000샷,1,0,100000,459748796286,112501003010,122507001010
+ORD250710-0059,2025-7-10,11:57:57,이문숙,010-4427-8350,P001-DS150A,DUALSONIC BLACK Pro FACE CARTRIDGE 1Set 10,000샷,1,10000,0,459748796286,112501003010,112501003010
+ORD250710-0039,2025-7-10,13:1:20,김희경,0504-2464-9373,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459748412830,ORD250710-0039,8809595040017
+ORD250710-0039,2025-7-10,13:1:20,김희경,0504-2464-9373,K001-0022,가죽케이스 박스 (2호),1,0,0,459748412830,ORD250710-0039,K001-0022
+ORD250710-0037,2025-7-10,13:3:50,박영희,01062477215,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459748412815,ORD250710-0037,8809595040017
+ORD250710-0037,2025-7-10,13:3:50,박영희,01062477215,K001-0022,가죽케이스 박스 (2호),1,0,0,459748412815,ORD250710-0037,K001-0022
+ORD250710-0037,2025-7-10,13:3:50,박영희,01062477215,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459748412815,ORD250710-0037,L004-0023
+ORD250710-0062,2025-7-10,14:11:12,이성수대리님,02-2142-6487 ,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),10,0,0,JGIFT-0010,312506359101,312506820100/312506751100/312506830100/312506734100/312506722100/312506862100/312506752100/312506359101/312506912100/312506926100
+ORD250710-0063,2025-7-10,14:17:7,이성수대리님,02-2142-6487 ,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),10,0,0,JGIFT-0010,312506268101,312506268101/312506331101/312506281101/312506275101/312506273101/312506277101/312506286101/312506304101/312506384101/312506305101
+ORD250710-0064,2025-7-10,14:21:2,이성수대리님,02-2142-6487 ,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),10,0,0,JGIFT-0010,602503053130,602503053130/602503078130/602503069130/602503070130/602503323130/602503317130/602503229130/602503117130/602503398130/602503127130
+ORD250710-0065,2025-7-10,14:28:11,이성수대리님,02-2142-6487 ,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),10,0,0,004-0023,602501123131,602501246131/602501990130/602501274131/602501315133/602501313131/602501192132/602501216132/602501298131/602501123131/602501576132
+ORD250710-0067,2025-7-10,14:32:21,이성수대리님,02-2142-6487 ,P001-AT001,[ALTO_WHITE] FULL PACK (KR),10,0,0,L004-0023,502506026100,502506360100/502506422100/502506275100/502506451100/502506225100/502506448100/502506026100/502506447100/502506454100/502506337100
+ORD250710-0084,2025-7-10,14:42:27,직원구매용,,JGIFT-0028,EMS Belt_Pink,1,0,0,459753151340,ORD250710-0084,JGIFT-0028
+ORD250710-0086,2025-7-10,15:28:47,허선희,0504-2255-8263,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,692531776730,ORD250710-0086,8809595040017
+ORD250710-0086,2025-7-10,15:28:47,허선희,0504-2255-8263,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,692531776730,ORD250710-0086,L004-0023
+ORD250710-0086,2025-7-10,15:28:47,허선희,0504-2255-8263,K001-0022,가죽케이스 박스 (2호),1,0,0,692531776730,ORD250710-0086,K001-0022
+ORD250710-0090,2025-7-10,16:30:37,전혜경,0508-6840-5568,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,692533559943,ORD250710-0090,8809595040017
+ORD250710-0090,2025-7-10,16:30:37,전혜경,0508-6840-5568,K001-0010,젤 3개 포장박스 (1호),1,0,0,692533559943,ORD250710-0090,K001-0010
+ORD250710-0096,2025-7-10,16:32:10,이효석,010-7140-5737,K001-0010,젤 3개 포장박스 (1호),1,0,0,692534309470,412506004000,K001-0010
+ORD250710-0096,2025-7-10,16:32:10,이효석,010-7140-5737,P001-DSA006,DUALSONIC Pro ALPHA FACE CARTRIDGE 1Set [FACE 20,000샷],1,20000,0,692534309470,412506004000,412506004000
+ORD250710-0089,2025-7-10,16:43:45,이종관,01080302877,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,92533559932,602501149131,8809595040697
+ORD250710-0089,2025-7-10,16:43:45,이종관,01080302877,L001-0030,뷰티루틴 쇼핑백,1,0,0,92533559932,602501149131,L001-0030
+ORD250710-0089,2025-7-10,16:43:45,이종관,01080302877,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,92533559932,602501149131,K001-0007
+ORD250710-0089,2025-7-10,16:43:45,이종관,01080302877,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,92533559932,602501149131,8809750465013
+ORD250710-0089,2025-7-10,16:43:45,이종관,01080302877,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,92533559932,602501149131,L004-0023
+ORD250710-0089,2025-7-10,16:43:45,이종관,01080302877,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,92533559932,602501149131,602501149131
+ORD250710-0098,2025-7-10,16:47:50,최윤지,010-8576-2846,K001-0022,가죽케이스 박스 (2호),1,0,0,692534309492,112506012000,K001-0022
+ORD250710-0098,2025-7-10,16:47:50,최윤지,010-8576-2846,P001-DS007A,DUALSONIC Pro Face CARTRIDGE 1Set,2,6000,0,692534309492,112506012000,112506185000/112506012000
+ORD250710-0103,2025-7-10,16:51:27,이강욱,010-5162-4163,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),3,0,0,459745059830,502506170100,8809595040628
+ORD250710-0103,2025-7-10,16:51:27,이강욱,010-5162-4163,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,459745059830,502506170100,8809595040635
+ORD250710-0103,2025-7-10,16:51:27,이강욱,010-5162-4163,PF001-003,[BR] STICK JELLY (14 BAGS),1,0,0,459745059830,502506170100,8809595040659
+ORD250710-0103,2025-7-10,16:51:27,이강욱,010-5162-4163,P001-0156,우디케이스,1,0,0,459745059830,502506170100,8809595040598
+ORD250710-0103,2025-7-10,16:51:27,이강욱,010-5162-4163,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459745059830,502506170100,502506170100
+ORD250710-0103,2025-7-10,16:51:27,이강욱,010-5162-4163,JGIFT-0025,EMS Belt_Peach,1,0,0,459745059830,502506170100,JGIFT-0025
+ORD250710-0103,2025-7-10,16:51:27,이강욱,010-5162-4163,L001-0025,DUALSONIC 쇼핑백(부직포+금박코팅),2,0,0,459745059830,502506170100,L001-0025
+ORD250710-0103,2025-7-10,16:51:27,이강욱,010-5162-4163,L004-0016,엘릭시르 클렌징워터 500mL,2,0,0,459745059830,502506170100,8809849804662
+ORD250710-0103,2025-7-10,16:51:27,이강욱,010-5162-4163,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459745059830,502506170100,602501419132
+ORD250710-0103,2025-7-10,16:51:27,이강욱,010-5162-4163,K001-0133,C/T 택배박스(560*400*420),1,0,0,459745059830,502506170100,K001-0133
+ORD250710-0103,2025-7-10,16:51:27,이강욱,010-5162-4163,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),8,0,0,459745059830,502506170100,L004-0023
+ORD250710-0093,2025-7-10,17:11:3,김강희,010-5388-7277,K001-0010,젤 3개 포장박스 (1호),1,0,0,692534889442,ORD250710-0093,K001-0010
+ORD250710-0093,2025-7-10,17:11:3,김강희,010-5388-7277,P001-0101,Micro B-Type 충전기 Assy,1,0,0,692534889442,ORD250710-0093,8809595040246
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-11.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-11.csv
new file mode 100644
index 0000000..9a394ad
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-11.csv
@@ -0,0 +1,71 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250711-0004,2025-7-11,10:53:40,안수경,010-8007-6670,P001-DS009A,DUALSONIC Lux Face CARTRIDGE 1Set,1,3000,0,459758492185,212505003000,212505003000
+ORD250711-0004,2025-7-11,10:53:40,안수경,010-8007-6670,K001-0010,젤 3개 포장박스 (1호),1,0,0,459758492185,212505003000,K001-0010
+ORD250711-0002,2025-7-11,10:55:28,정혜경,010-2263-2632,P001-DS007A,DUALSONIC Pro Face CARTRIDGE 1Set,1,6000,0,459758492163,112506189000,112506189000
+ORD250711-0002,2025-7-11,10:55:28,정혜경,010-2263-2632,K001-0010,젤 3개 포장박스 (1호),1,0,0,459758492163,112506189000,K001-0010
+ORD250711-0005,2025-7-11,10:56:24,최경숙,010-5540-4240,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459758492196,ORD250711-0005,8809595040017
+ORD250711-0005,2025-7-11,10:56:24,최경숙,010-5540-4240,K001-0010,젤 3개 포장박스 (1호),1,0,0,459758492196,ORD250711-0005,K001-0010
+ORD250711-0003,2025-7-11,10:59:47,마우현,010-8969-1877,L001-0030,뷰티루틴 쇼핑백,1,0,0,459758492174,602501127131,L001-0030
+ORD250711-0003,2025-7-11,10:59:47,마우현,010-8969-1877,K001-0041,단품 1SET 박스 (3호),1,0,0,459758492174,602501127131,K001-0041
+ORD250711-0003,2025-7-11,10:59:47,마우현,010-8969-1877,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,459758492174,602501127131,L004-0023
+ORD250711-0003,2025-7-11,10:59:47,마우현,010-8969-1877,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459758492174,602501127131,602501127131
+ORD250711-0025,2025-7-11,11:18:16,윤세진,0504-2453-7524,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459759029660,ORD250711-0025,L004-0023
+ORD250711-0025,2025-7-11,11:18:16,윤세진,0504-2453-7524,K001-0022,가죽케이스 박스 (2호),1,0,0,459759029660,ORD250711-0025,K001-0022
+ORD250711-0026,2025-7-11,11:22:19,이진학,0504-2114-2816,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459759029671,ORD250711-0026,L001-0032
+ORD250711-0026,2025-7-11,11:22:19,이진학,0504-2114-2816,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459759029671,ORD250711-0026,K001-0008
+ORD250711-0026,2025-7-11,11:22:19,이진학,0504-2114-2816,JGIFT-0024,EMS Belt_Mint,1,0,0,459759029671,ORD250711-0026,JGIFT-0024
+ORD250711-0027,2025-7-11,11:24:54,양선미,0504-2367-6158,JGIFT-0025,EMS Belt_Peach,1,0,0,459759029682,ORD250711-0027,JGIFT-0025
+ORD250711-0027,2025-7-11,11:24:54,양선미,0504-2367-6158,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459759029682,ORD250711-0027,L001-0032
+ORD250711-0027,2025-7-11,11:24:54,양선미,0504-2367-6158,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459759029682,ORD250711-0027,K001-0008
+ORD250711-0028,2025-7-11,11:26:12,신*정,0502-6373-6423,K001-0010,젤 3개 포장박스 (1호),1,0,0,459759029693,ORD250711-0028,K001-0010
+ORD250711-0028,2025-7-11,11:26:12,신*정,0502-6373-6423,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,459759029693,ORD250711-0028,8809595040017
+ORD250711-0030,2025-7-11,11:27:20,지*실,0502-6210-0957,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459759029715,ORD250711-0030,L004-0023
+ORD250711-0030,2025-7-11,11:27:20,지*실,0502-6210-0957,K001-0022,가죽케이스 박스 (2호),1,0,0,459759029715,ORD250711-0030,K001-0022
+ORD250711-0015,2025-7-11,11:32:3,마사쥐잉샘(주문자:김*린),0504-2215-6150,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459759029564,ORD250711-0015,8809595040017
+ORD250711-0015,2025-7-11,11:32:3,마사쥐잉샘(주문자:김*린),0504-2215-6150,K001-0022,가죽케이스 박스 (2호),1,0,0,459759029564,ORD250711-0015,K001-0022
+ORD250711-0014,2025-7-11,11:34:3,강민성(주문자:강*경),0504-2346-5920,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459759029553,ORD250711-0014,8809595040017
+ORD250711-0014,2025-7-11,11:34:3,강민성(주문자:강*경),0504-2346-5920,K001-0022,가죽케이스 박스 (2호),1,0,0,459759029553,ORD250711-0014,K001-0022
+ORD250711-0013,2025-7-11,11:37:32,조수자,0504-2426-6107,L004-0001,DUALSONIC Blooming Moisture Gel,15,0,0,459759029542,ORD250711-0013,8809595040017
+ORD250711-0013,2025-7-11,11:37:32,조수자,0504-2426-6107,K001-0041,단품 1SET 박스 (3호),1,0,0,459759029542,ORD250711-0013,K001-0041
+ORD250711-0012,2025-7-11,11:39:11,이승국,0504-2443-8671,K001-0022,가죽케이스 박스 (2호),1,0,0,459759029531,ORD250711-0012,K001-0022
+ORD250711-0012,2025-7-11,11:39:11,이승국,0504-2443-8671,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459759029531,ORD250711-0012,8809595040017
+ORD250711-0006,2025-7-11,11:42:27,안지현,010-9399-1423,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459759029472,502506259100,502506259100
+ORD250711-0006,2025-7-11,11:42:27,안지현,010-9399-1423,K001-0041,단품 1SET 박스 (3호),1,0,0,459759029472,502506259100,K001-0041
+ORD250711-0006,2025-7-11,11:42:27,안지현,010-9399-1423,L001-0030,뷰티루틴 쇼핑백,1,0,0,459759029472,502506259100,L001-0030
+ORD250711-0010,2025-7-11,11:47:51,장진철,01052966509,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459759029516,ORD250711-0010,K001-0008
+ORD250711-0010,2025-7-11,11:47:51,장진철,01052966509,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459759029516,ORD250711-0010,L001-0032
+ORD250711-0010,2025-7-11,11:47:51,장진철,01052966509,JGIFT-0024,EMS Belt_Mint,1,0,0,459759029516,ORD250711-0010,JGIFT-0024
+ORD250711-0064,2025-7-11,11:58:29,듀얼소닉이명란,010-3894-6366,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),50,0,0,459759828780,ORD250711-0064,L004-0023
+ORD250711-0059,2025-7-11,13:15:27, 이민형반장님, 032-744-1170 ,P001-AT001,[ALTO_WHITE] FULL PACK (KR),10,0,0,l004-0020,502507216100,502507244100/502507316100/502507358100/502507240100/502507281100/502507238100/502507350100/502507216100/502507295100/502507329100
+ORD250711-0061,2025-7-11,13:20:25, 이민형반장님, 032-744-1170 ,P001-AT001,[ALTO_WHITE] FULL PACK (KR),10,0,0,l004-0020,502507233100,502507233100/502507235100/502507246100/502507254100/502507256100/502507259100/502507274100/502507312100/502507237100/502507253100
+ORD250711-0060,2025-7-11,13:23:43, 이민형반장님, 032-744-1170 ,P001-AT001,[ALTO_WHITE] FULL PACK (KR),10,0,0,l004-0020,502507204100,502507331100/502507220100/502507247100/502507239100/502507284100/502507357100/502507310100/502507245100/502507364100/502507204100
+ORD250711-0058,2025-7-11,13:28:3, 이민형반장님, 032-744-1170 ,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),10,0,0,l004-0020,602501003133,602501003133
+ORD250711-0074,2025-7-11,15:17:8,정은미,0503-7218-6857,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,692551462126,602503813110,8809595040635
+ORD250711-0074,2025-7-11,15:17:8,정은미,0503-7218-6857,L001-0030,뷰티루틴 쇼핑백,1,0,0,692551462126,602503813110,L001-0030
+ORD250711-0074,2025-7-11,15:17:8,정은미,0503-7218-6857,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,692551462126,602503813110,602503813110
+ORD250711-0074,2025-7-11,15:17:8,정은미,0503-7218-6857,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,692551462126,602503813110,8809595040628
+ORD250711-0074,2025-7-11,15:17:8,정은미,0503-7218-6857,P001-0152,원형케이스 퍼플,1,0,0,692551462126,602503813110,8809595040512
+ORD250711-0074,2025-7-11,15:17:8,정은미,0503-7218-6857,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692551462126,602503813110,K001-0008
+ORD250711-0074,2025-7-11,15:17:8,정은미,0503-7218-6857,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,692551462126,602503813110,L004-0023
+ORD250711-0069,2025-7-11,15:22:25,오은진,0503-7201-1734,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,692551462071,502506084100,8809595040635
+ORD250711-0069,2025-7-11,15:22:25,오은진,0503-7201-1734,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692551462071,502506084100,K001-0008
+ORD250711-0069,2025-7-11,15:22:25,오은진,0503-7201-1734,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,692551462071,502506084100,L004-0023
+ORD250711-0069,2025-7-11,15:22:25,오은진,0503-7201-1734,L001-0030,뷰티루틴 쇼핑백,1,0,0,692551462071,502506084100,L001-0030
+ORD250711-0069,2025-7-11,15:22:25,오은진,0503-7201-1734,P001-0152,원형케이스 퍼플,1,0,0,692551462071,502506084100,8809595040512
+ORD250711-0069,2025-7-11,15:22:25,오은진,0503-7201-1734,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,692551462071,502506084100,8809595040628
+ORD250711-0069,2025-7-11,15:22:25,오은진,0503-7201-1734,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692551462071,502506084100,502506084100
+ORD250711-0084,2025-7-11,16:29:24,김나경,010-7318-6285,P001-0136,가죽케이스 블랙뱀피,1,0,0,459763711536,102502005100,8809595040253
+ORD250711-0084,2025-7-11,16:29:24,김나경,010-7318-6285,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459763711536,102502005100,K001-0007
+ORD250711-0084,2025-7-11,16:29:24,김나경,010-7318-6285,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459763711536,102502005100,8809595040017
+ORD250711-0084,2025-7-11,16:29:24,김나경,010-7318-6285,P001-DS0036A,DUALSONIC Pro 1Set 완제품 (KR)[Face 12,000샷, Eye 120,000 샷],1,12000,120000,459763711536,102502005100,102502005100
+ORD250711-0084,2025-7-11,16:29:24,김나경,010-7318-6285,L001-0030,뷰티루틴 쇼핑백,1,0,0,459763711536,102502005100,L001-0030
+ORD250711-0082,2025-7-11,16:58:14,이재*,0502-2324-1130,K001-0010,젤 3개 포장박스 (1호),1,0,0,692553662204,112506200000,K001-0010
+ORD250711-0082,2025-7-11,16:58:14,이재*,0502-2324-1130,P001-DS007A,DUALSONIC Pro Face CARTRIDGE 1Set,1,6000,0,692553662204,112506200000,112506200000
+ORD250711-0083,2025-7-11,17:1:26,김희진,010-5711-0903,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692553662215,502506054100,L001-0032
+ORD250711-0083,2025-7-11,17:1:26,김희진,010-5711-0903,JGIFT-0026,EMS Belt_Purple,1,0,0,692553662215,502506054100,JGIFT-0026
+ORD250711-0083,2025-7-11,17:1:26,김희진,010-5711-0903,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692553662215,502506054100,502506054100
+ORD250711-0083,2025-7-11,17:1:26,김희진,010-5711-0903,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692553662215,502506054100,K001-0008
+ORD250711-0083,2025-7-11,17:1:26,김희진,010-5711-0903,L001-0030,뷰티루틴 쇼핑백,1,0,0,692553662215,502506054100,L001-0030
+ORD250711-0086,2025-7-11,17:4:59,이상우팀장님,010-4946-9917,P001-DS001A,DUALSONIC Pro 1Set,1,6000,60000,692554103451,102505048100,102505048100
+ORD250711-0086,2025-7-11,17:4:59,이상우팀장님,010-4946-9917,L001-0030,뷰티루틴 쇼핑백,1,0,0,692554103451,102505048100,L001-0030
+ORD250711-0086,2025-7-11,17:4:59,이상우팀장님,010-4946-9917,K001-0041,단품 1SET 박스 (3호),1,0,0,692554103451,102505048100,K001-0041
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-14.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-14.csv
new file mode 100644
index 0000000..229e83c
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-14.csv
@@ -0,0 +1,231 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250714-0032,2025-7-14,11:6:21,이양희,010-2748-5447,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459773473180,ORD250714-0032,K001-0008
+ORD250714-0032,2025-7-14,11:6:21,이양희,010-2748-5447,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459773473180,ORD250714-0032,8809595040628
+ORD250714-0032,2025-7-14,11:6:21,이양희,010-2748-5447,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459773473180,ORD250714-0032,L001-0032
+ORD250714-0032,2025-7-14,11:6:21,이양희,010-2748-5447,JGIFT-0025,EMS Belt_Peach,1,0,0,459773473180,ORD250714-0032,JGIFT-0025
+ORD250714-0033,2025-7-14,11:9:43,박*달,0502-6225-0803,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459773473191,ORD250714-0033,8809595040017
+ORD250714-0033,2025-7-14,11:9:43,박*달,0502-6225-0803,K001-0010,젤 3개 포장박스 (1호),1,0,0,459773473191,ORD250714-0033,K001-0010
+ORD250714-0030,2025-7-14,11:11:21,박향숙,0504-2230-6743,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459773473165,ORD250714-0030,K001-0008
+ORD250714-0030,2025-7-14,11:11:21,박향숙,0504-2230-6743,JGIFT-0026,EMS Belt_Purple,1,0,0,459773473165,ORD250714-0030,JGIFT-0026
+ORD250714-0030,2025-7-14,11:11:21,박향숙,0504-2230-6743,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459773473165,ORD250714-0030,L001-0032
+ORD250714-0031,2025-7-14,11:15:8,임성준,010-2909-7040,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459773473176,ORD250714-0031,K001-0008
+ORD250714-0031,2025-7-14,11:15:8,임성준,010-2909-7040,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459773473176,ORD250714-0031,L001-0032
+ORD250714-0031,2025-7-14,11:15:8,임성준,010-2909-7040,JGIFT-0026,EMS Belt_Purple,1,0,0,459773473176,ORD250714-0031,JGIFT-0026
+ORD250714-0031,2025-7-14,11:15:8,임성준,010-2909-7040,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459773473176,ORD250714-0031,8809595040628
+ORD250714-0029,2025-7-14,11:15:56,김현정,0504-2114-9112,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459773473154,ORD250714-0029,K001-0008
+ORD250714-0029,2025-7-14,11:15:56,김현정,0504-2114-9112,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459773473154,ORD250714-0029,L001-0032
+ORD250714-0029,2025-7-14,11:15:56,김현정,0504-2114-9112,JGIFT-0024,EMS Belt_Mint,1,0,0,459773473154,ORD250714-0029,JGIFT-0024
+ORD250714-0034,2025-7-14,11:17:54,남*현,0502-6355-4678,K001-0041,단품 1SET 박스 (3호),1,0,0,459773473202,ORD250714-0034,K001-0041
+ORD250714-0034,2025-7-14,11:17:54,남*현,0502-6355-4678,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459773473202,ORD250714-0034,8809595040017
+ORD250714-0035,2025-7-14,11:26:11,이유리,010-8619-9926,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459773473213,312505745180,8809750465013
+ORD250714-0035,2025-7-14,11:26:11,이유리,010-8619-9926,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,459773473213,312505745180,8809595040635
+ORD250714-0035,2025-7-14,11:26:11,이유리,010-8619-9926,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459773473213,312505745180,K001-0007
+ORD250714-0035,2025-7-14,11:26:11,이유리,010-8619-9926,L001-0030,뷰티루틴 쇼핑백,1,0,0,459773473213,312505745180,L001-0030
+ORD250714-0035,2025-7-14,11:26:11,이유리,010-8619-9926,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),1,0,0,459773473213,312505745180,312505745180
+ORD250714-0035,2025-7-14,11:26:11,이유리,010-8619-9926,P001-0156,우디케이스,1,0,0,459773473213,312505745180,8809595040598
+ORD250714-0035,2025-7-14,11:26:11,이유리,010-8619-9926,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,459773473213,312505745180,8809595040628
+ORD250714-0035,2025-7-14,11:26:11,이유리,010-8619-9926,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),6,0,0,459773473213,312505745180,L004-0023
+ORD250714-0036,2025-7-14,11:32:1,김수현,010-4030-7517,L001-0030,뷰티루틴 쇼핑백,1,0,0,459773473224,312506872100,L001-0030
+ORD250714-0036,2025-7-14,11:32:1,김수현,010-4030-7517,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),6,0,0,459773473224,312506872100,L004-0023
+ORD250714-0036,2025-7-14,11:32:1,김수현,010-4030-7517,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459773473224,312506872100,K001-0007
+ORD250714-0036,2025-7-14,11:32:1,김수현,010-4030-7517,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,459773473224,312506872100,8809595040628
+ORD250714-0036,2025-7-14,11:32:1,김수현,010-4030-7517,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,459773473224,312506872100,8809595040635
+ORD250714-0036,2025-7-14,11:32:1,김수현,010-4030-7517,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459773473224,312506872100,8809750465013
+ORD250714-0036,2025-7-14,11:32:1,김수현,010-4030-7517,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459773473224,312506872100,312506872100
+ORD250714-0036,2025-7-14,11:32:1,김수현,010-4030-7517,P001-0156,우디케이스,1,0,0,459773473224,312506872100,8809595040598
+ORD250714-0037,2025-7-14,11:37:32,이수영,0503-7288-8651,L001-0030,뷰티루틴 쇼핑백,1,0,0,459773473235,312507269100,L001-0030
+ORD250714-0037,2025-7-14,11:37:32,이수영,0503-7288-8651,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,459773473235,312507269100,8809595040635
+ORD250714-0037,2025-7-14,11:37:32,이수영,0503-7288-8651,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459773473235,312507269100,K001-0007
+ORD250714-0037,2025-7-14,11:37:32,이수영,0503-7288-8651,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,459773473235,312507269100,8809595040628
+ORD250714-0037,2025-7-14,11:37:32,이수영,0503-7288-8651,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459773473235,312507269100,8809750465013
+ORD250714-0037,2025-7-14,11:37:32,이수영,0503-7288-8651,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459773473235,312507269100,312507269100
+ORD250714-0037,2025-7-14,11:37:32,이수영,0503-7288-8651,P001-0156,우디케이스,1,0,0,459773473235,312507269100,8809595040598
+ORD250714-0037,2025-7-14,11:37:32,이수영,0503-7288-8651,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),6,0,0,459773473235,312507269100,L004-0023
+ORD250714-0038,2025-7-14,11:44:28,황선미,010-5255-7492,L001-0030,뷰티루틴 쇼핑백,1,0,0,59773473246,312507251100,L001-0030
+ORD250714-0038,2025-7-14,11:44:28,황선미,010-5255-7492,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,59773473246,312507251100,8809750465013
+ORD250714-0038,2025-7-14,11:44:28,황선미,010-5255-7492,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),6,0,0,59773473246,312507251100,L004-0023
+ORD250714-0038,2025-7-14,11:44:28,황선미,010-5255-7492,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,59773473246,312507251100,312507251100
+ORD250714-0038,2025-7-14,11:44:28,황선미,010-5255-7492,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,59773473246,312507251100,K001-0007
+ORD250714-0038,2025-7-14,11:44:28,황선미,010-5255-7492,P001-0156,우디케이스,1,0,0,59773473246,312507251100,8809595040598
+ORD250714-0038,2025-7-14,11:44:28,황선미,010-5255-7492,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,59773473246,312507251100,8809595040635
+ORD250714-0038,2025-7-14,11:44:28,황선미,010-5255-7492,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,59773473246,312507251100,8809595040628
+ORD250714-0039,2025-7-14,11:48:7,박미숙,0503-7273-5561,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),6,0,0,459773473250,312507288100,L004-0023
+ORD250714-0039,2025-7-14,11:48:7,박미숙,0503-7273-5561,P001-0156,우디케이스,1,0,0,459773473250,312507288100,8809595040598
+ORD250714-0039,2025-7-14,11:48:7,박미숙,0503-7273-5561,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,459773473250,312507288100,8809595040635
+ORD250714-0039,2025-7-14,11:48:7,박미숙,0503-7273-5561,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459773473250,312507288100,K001-0007
+ORD250714-0039,2025-7-14,11:48:7,박미숙,0503-7273-5561,L001-0030,뷰티루틴 쇼핑백,1,0,0,459773473250,312507288100,L001-0030
+ORD250714-0039,2025-7-14,11:48:7,박미숙,0503-7273-5561,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,459773473250,312507288100,8809595040628
+ORD250714-0039,2025-7-14,11:48:7,박미숙,0503-7273-5561,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459773473250,312507288100,312507288100
+ORD250714-0039,2025-7-14,11:48:7,박미숙,0503-7273-5561,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459773473250,312507288100,8809750465013
+ORD250714-0100,2025-7-14,13:10:33,이소진,0504-2279-8261,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),1,0,0,459773472944,502507349100,602502591120
+ORD250714-0100,2025-7-14,13:10:33,이소진,0504-2279-8261,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459773472944,502507349100,K001-0008
+ORD250714-0100,2025-7-14,13:10:33,이소진,0504-2279-8261,L001-0030,뷰티루틴 쇼핑백,2,0,0,459773472944,502507349100,L001-0030
+ORD250714-0100,2025-7-14,13:10:33,이소진,0504-2279-8261,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459773472944,502507349100,502507349100
+ORD250714-0050,2025-7-14,13:16:5,안현미,010-6488-3096,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459774244226,602501430120,L004-0023
+ORD250714-0050,2025-7-14,13:16:5,안현미,010-6488-3096,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,459774244226,602501430120,8809595040680
+ORD250714-0050,2025-7-14,13:16:5,안현미,010-6488-3096,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459774244226,602501430120,8809595040697
+ORD250714-0050,2025-7-14,13:16:5,안현미,010-6488-3096,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),1,0,0,459774244226,602501430120,602501430120
+ORD250714-0050,2025-7-14,13:16:5,안현미,010-6488-3096,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459774244226,602501430120,K001-0020
+ORD250714-0050,2025-7-14,13:16:5,안현미,010-6488-3096,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,459774244226,602501430120,8809595040673
+ORD250714-0050,2025-7-14,13:16:5,안현미,010-6488-3096,L001-0030,뷰티루틴 쇼핑백,1,0,0,459774244226,602501430120,L001-0030
+ORD250714-0059,2025-7-14,13:19:46,강신령,010-7173-1749,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,459774244311,312506077101,8809595040673
+ORD250714-0059,2025-7-14,13:19:46,강신령,010-7173-1749,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459774244311,312506077101,8809595040697
+ORD250714-0059,2025-7-14,13:19:46,강신령,010-7173-1749,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459774244311,312506077101,312506077101
+ORD250714-0059,2025-7-14,13:19:46,강신령,010-7173-1749,L001-0030,뷰티루틴 쇼핑백,1,0,0,459774244311,312506077101,L001-0030
+ORD250714-0059,2025-7-14,13:19:46,강신령,010-7173-1749,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459774244311,312506077101,L004-0023
+ORD250714-0059,2025-7-14,13:19:46,강신령,010-7173-1749,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,459774244311,312506077101,8809595040680
+ORD250714-0059,2025-7-14,13:19:46,강신령,010-7173-1749,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459774244311,312506077101,K001-0020
+ORD250714-0058,2025-7-14,13:25:14,신유정,010-7608-5006,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,459774244300,312506129101,8809595040673
+ORD250714-0058,2025-7-14,13:25:14,신유정,010-7608-5006,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459774244300,312506129101,312506129101
+ORD250714-0058,2025-7-14,13:25:14,신유정,010-7608-5006,L001-0030,뷰티루틴 쇼핑백,1,0,0,459774244300,312506129101,L001-0030
+ORD250714-0058,2025-7-14,13:25:14,신유정,010-7608-5006,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459774244300,312506129101,L004-0023
+ORD250714-0058,2025-7-14,13:25:14,신유정,010-7608-5006,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459774244300,312506129101,K001-0020
+ORD250714-0058,2025-7-14,13:25:14,신유정,010-7608-5006,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,459774244300,312506129101,8809595040680
+ORD250714-0058,2025-7-14,13:25:14,신유정,010-7608-5006,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459774244300,312506129101,8809595040697
+ORD250714-0057,2025-7-14,13:29:49,윤하영,010-5624-0017,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,459774244296,312507284100,8809595040680
+ORD250714-0057,2025-7-14,13:29:49,윤하영,010-5624-0017,L001-0030,뷰티루틴 쇼핑백,1,0,0,459774244296,312507284100,L001-0030
+ORD250714-0057,2025-7-14,13:29:49,윤하영,010-5624-0017,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459774244296,312507284100,L004-0023
+ORD250714-0057,2025-7-14,13:29:49,윤하영,010-5624-0017,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,459774244296,312507284100,8809595040673
+ORD250714-0057,2025-7-14,13:29:49,윤하영,010-5624-0017,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459774244296,312507284100,8809595040697
+ORD250714-0057,2025-7-14,13:29:49,윤하영,010-5624-0017,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459774244296,312507284100,K001-0020
+ORD250714-0057,2025-7-14,13:29:49,윤하영,010-5624-0017,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459774244296,312507284100,312507284100
+ORD250714-0091,2025-7-14,13:34:43,박*람,0502-6324-1960,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459773472852,312506217101,8809595040017
+ORD250714-0091,2025-7-14,13:34:43,박*람,0502-6324-1960,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,459773472852,312506217101,8809527487118
+ORD250714-0091,2025-7-14,13:34:43,박*람,0502-6324-1960,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459773472852,312506217101,312506217101
+ORD250714-0091,2025-7-14,13:34:43,박*람,0502-6324-1960,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459773472852,312506217101,K001-0007
+ORD250714-0091,2025-7-14,13:34:43,박*람,0502-6324-1960,L001-0030,뷰티루틴 쇼핑백,1,0,0,459773472852,312506217101,L001-0030
+ORD250714-0075,2025-7-14,13:39:37,김태이,010-4431-7211,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459773472690,312507293100,JGIFT-0010
+ORD250714-0075,2025-7-14,13:39:37,김태이,010-4431-7211,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459773472690,312507293100,K001-0007
+ORD250714-0075,2025-7-14,13:39:37,김태이,010-4431-7211,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459773472690,312507293100,8809750465013
+ORD250714-0075,2025-7-14,13:39:37,김태이,010-4431-7211,L001-0030,뷰티루틴 쇼핑백,1,0,0,459773472690,312507293100,L001-0030
+ORD250714-0075,2025-7-14,13:39:37,김태이,010-4431-7211,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459773472690,312507293100,312507293100
+ORD250714-0075,2025-7-14,13:39:37,김태이,010-4431-7211,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459773472690,312507293100,L004-0023
+ORD250714-0072,2025-7-14,13:42:16,신상철,0504-2446-2470,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459773472664,312506917100,K001-0007
+ORD250714-0072,2025-7-14,13:42:16,신상철,0504-2446-2470,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459773472664,312506917100,8809595040017
+ORD250714-0072,2025-7-14,13:42:16,신상철,0504-2446-2470,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459773472664,312506917100,312506917100
+ORD250714-0072,2025-7-14,13:42:16,신상철,0504-2446-2470,L001-0030,뷰티루틴 쇼핑백,1,0,0,459773472664,312506917100,L001-0030
+ORD250714-0066,2025-7-14,13:45:18,심연정,010-9669-3364,L001-0030,뷰티루틴 쇼핑백,1,0,0,459773472605,312506076101,L001-0030
+ORD250714-0066,2025-7-14,13:45:18,심연정,010-9669-3364,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,459773472605,312506076101,8809595040673
+ORD250714-0066,2025-7-14,13:45:18,심연정,010-9669-3364,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459773472605,312506076101,L004-0023
+ORD250714-0066,2025-7-14,13:45:18,심연정,010-9669-3364,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,459773472605,312506076101,8809595040680
+ORD250714-0066,2025-7-14,13:45:18,심연정,010-9669-3364,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459773472605,312506076101,K001-0007
+ORD250714-0066,2025-7-14,13:45:18,심연정,010-9669-3364,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459773472605,312506076101,312506076101
+ORD250714-0065,2025-7-14,13:49:2,박강호,010-8845-4341,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,459773472594,312506655100,8809595040680
+ORD250714-0065,2025-7-14,13:49:2,박강호,010-8845-4341,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459773472594,312506655100,L004-0023
+ORD250714-0065,2025-7-14,13:49:2,박강호,010-8845-4341,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459773472594,312506655100,K001-0007
+ORD250714-0065,2025-7-14,13:49:2,박강호,010-8845-4341,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459773472594,312506655100,312506655100
+ORD250714-0065,2025-7-14,13:49:2,박강호,010-8845-4341,L001-0030,뷰티루틴 쇼핑백,1,0,0,459773472594,312506655100,L001-0030
+ORD250714-0065,2025-7-14,13:49:2,박강호,010-8845-4341,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,459773472594,312506655100,8809595040673
+ORD250714-0081,2025-7-14,13:53:15,유현성,01045822692,L001-0030,뷰티루틴 쇼핑백,1,0,0,459773472756,602501230133,L001-0030
+ORD250714-0081,2025-7-14,13:53:15,유현성,01045822692,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459773472756,602501230133,L004-0023
+ORD250714-0081,2025-7-14,13:53:15,유현성,01045822692,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459773472756,602501230133,602501230133
+ORD250714-0081,2025-7-14,13:53:15,유현성,01045822692,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459773472756,602501230133,8809595040697
+ORD250714-0081,2025-7-14,13:53:15,유현성,01045822692,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459773472756,602501230133,K001-0007
+ORD250714-0081,2025-7-14,13:53:15,유현성,01045822692,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459773472756,602501230133,8809750465013
+ORD250714-0078,2025-7-14,13:56:27,김나래,010-8447-5317,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459773472723,602501211133,JGIFT-0010
+ORD250714-0078,2025-7-14,13:56:27,김나래,010-8447-5317,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459773472723,602501211133,K001-0007
+ORD250714-0078,2025-7-14,13:56:27,김나래,010-8447-5317,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459773472723,602501211133,602501211133
+ORD250714-0078,2025-7-14,13:56:27,김나래,010-8447-5317,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459773472723,602501211133,8809750465013
+ORD250714-0078,2025-7-14,13:56:27,김나래,010-8447-5317,L001-0030,뷰티루틴 쇼핑백,1,0,0,459773472723,602501211133,L001-0030
+ORD250714-0078,2025-7-14,13:56:27,김나래,010-8447-5317,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459773472723,602501211133,L004-0023
+ORD250714-0046,2025-7-14,14:13:59,이성화,010-6702-5082,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459774244182,602501208133,8809595040697
+ORD250714-0046,2025-7-14,14:13:59,이성화,010-6702-5082,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459774244182,602501208133,K001-0020
+ORD250714-0046,2025-7-14,14:13:59,이성화,010-6702-5082,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459774244182,602501208133,602501208133
+ORD250714-0046,2025-7-14,14:13:59,이성화,010-6702-5082,L001-0030,뷰티루틴 쇼핑백,1,0,0,459774244182,602501208133,L001-0030
+ORD250714-0046,2025-7-14,14:13:59,이성화,010-6702-5082,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459774244182,602501208133,L004-0023
+ORD250714-0046,2025-7-14,14:13:59,이성화,010-6702-5082,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,459774244182,602501208133,8809595040673
+ORD250714-0046,2025-7-14,14:13:59,이성화,010-6702-5082,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,459774244182,602501208133,8809595040680
+ORD250714-0109,2025-7-14,14:44:39,김*순,직택배,P001-0152,원형케이스 퍼플,1,0,0,602351761270,502507194100,8809595040512
+ORD250714-0109,2025-7-14,14:44:39,김*순,직택배,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,602351761270,502507194100,8809595040635
+ORD250714-0109,2025-7-14,14:44:39,김*순,직택배,L004-0001,DUALSONIC Blooming Moisture Gel,7,0,0,602351761270,502507194100,8809595040017
+ORD250714-0109,2025-7-14,14:44:39,김*순,직택배,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,602351761270,502507194100,602503842110
+ORD250714-0109,2025-7-14,14:44:39,김*순,직택배,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,602351761270,502507194100,L001-0031
+ORD250714-0109,2025-7-14,14:44:39,김*순,직택배,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,602351761270,502507194100,502507194100
+ORD250714-0109,2025-7-14,14:44:39,김*순,직택배,K001-0008,제품 6Set 포장박스 (6호),1,0,0,602351761270,502507194100,K001-0008
+ORD250714-0110,2025-7-14,14:50:16,민*희,직택배,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,602351761292,502506049100,602503869110
+ORD250714-0110,2025-7-14,14:50:16,민*희,직택배,L004-0001,DUALSONIC Blooming Moisture Gel,7,0,0,602351761292,502506049100,8809595040017
+ORD250714-0110,2025-7-14,14:50:16,민*희,직택배,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,602351761292,502506049100,8809595040635
+ORD250714-0110,2025-7-14,14:50:16,민*희,직택배,P001-0152,원형케이스 퍼플,1,0,0,602351761292,502506049100,8809595040512
+ORD250714-0110,2025-7-14,14:50:16,민*희,직택배,K001-0008,제품 6Set 포장박스 (6호),1,0,0,602351761292,502506049100,K001-0008
+ORD250714-0110,2025-7-14,14:50:16,민*희,직택배,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,602351761292,502506049100,502506049100
+ORD250714-0110,2025-7-14,14:50:16,민*희,직택배,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,602351761292,502506049100,L001-0031
+ORD250714-0111,2025-7-14,14:54:43,이*자,직택배,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,602351761336,502507222100,8809595040635
+ORD250714-0111,2025-7-14,14:54:43,이*자,직택배,L004-0001,DUALSONIC Blooming Moisture Gel,7,0,0,602351761336,502507222100,8809595040017
+ORD250714-0111,2025-7-14,14:54:43,이*자,직택배,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,602351761336,502507222100,L001-0031
+ORD250714-0111,2025-7-14,14:54:43,이*자,직택배,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,602351761336,502507222100,602503841110
+ORD250714-0111,2025-7-14,14:54:43,이*자,직택배,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,602351761336,502507222100,502507222100
+ORD250714-0111,2025-7-14,14:54:43,이*자,직택배,P001-0152,원형케이스 퍼플,1,0,0,602351761336,502507222100,8809595040512
+ORD250714-0111,2025-7-14,14:54:43,이*자,직택배,K001-0008,제품 6Set 포장박스 (6호),1,0,0,602351761336,502507222100,K001-0008
+ORD250714-0112,2025-7-14,14:59:1,조*주,직택배,K001-0008,제품 6Set 포장박스 (6호),1,0,0,602351761340,502507248100,K001-0008
+ORD250714-0112,2025-7-14,14:59:1,조*주,직택배,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,602351761340,502507248100,L001-0031
+ORD250714-0112,2025-7-14,14:59:1,조*주,직택배,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,602351761340,502507248100,502507248100
+ORD250714-0112,2025-7-14,14:59:1,조*주,직택배,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,602351761340,502507248100,8809595040635
+ORD250714-0112,2025-7-14,14:59:1,조*주,직택배,P001-0152,원형케이스 퍼플,1,0,0,602351761340,502507248100,8809595040512
+ORD250714-0112,2025-7-14,14:59:1,조*주,직택배,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,602351761340,502507248100,602503878110
+ORD250714-0112,2025-7-14,14:59:1,조*주,직택배,L004-0001,DUALSONIC Blooming Moisture Gel,7,0,0,602351761340,502507248100,8809595040017
+ORD250714-0113,2025-7-14,15:13:34,김*진,직택배,P001-0152,원형케이스 퍼플,1,0,0,602351761384,502507203100,8809595040512
+ORD250714-0113,2025-7-14,15:13:34,김*진,직택배,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,602351761384,502507203100,502507203100
+ORD250714-0113,2025-7-14,15:13:34,김*진,직택배,K001-0008,제품 6Set 포장박스 (6호),1,0,0,602351761384,502507203100,K001-0008
+ORD250714-0113,2025-7-14,15:13:34,김*진,직택배,L004-0001,DUALSONIC Blooming Moisture Gel,7,0,0,602351761384,502507203100,8809595040017
+ORD250714-0113,2025-7-14,15:13:34,김*진,직택배,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,602351761384,502507203100,602503649110
+ORD250714-0113,2025-7-14,15:13:34,김*진,직택배,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,602351761384,502507203100,8809595040635
+ORD250714-0113,2025-7-14,15:13:34,김*진,직택배,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,602351761384,502507203100,L001-0031
+ORD250714-0114,2025-7-14,15:19:2,최*,직택배,K001-0008,제품 6Set 포장박스 (6호),1,0,0,602351761395,502507198100,K001-0008
+ORD250714-0114,2025-7-14,15:19:2,최*,직택배,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,602351761395,502507198100,602503815110
+ORD250714-0114,2025-7-14,15:19:2,최*,직택배,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,602351761395,502507198100,8809595040635
+ORD250714-0114,2025-7-14,15:19:2,최*,직택배,L004-0001,DUALSONIC Blooming Moisture Gel,7,0,0,602351761395,502507198100,8809595040017
+ORD250714-0114,2025-7-14,15:19:2,최*,직택배,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,602351761395,502507198100,502507198100
+ORD250714-0114,2025-7-14,15:19:2,최*,직택배,P001-0152,원형케이스 퍼플,1,0,0,602351761395,502507198100,8809595040512
+ORD250714-0114,2025-7-14,15:19:2,최*,직택배,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,602351761395,502507198100,L001-0031
+ORD250714-0147,2025-7-14,15:27:37,김현경,01042809355,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692590845342,ORD250714-0147,L001-0032
+ORD250714-0147,2025-7-14,15:27:37,김현경,01042809355,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692590845342,ORD250714-0147,K001-0008
+ORD250714-0147,2025-7-14,15:27:37,김현경,01042809355,JGIFT-0025,EMS Belt_Peach,1,0,0,692590845342,ORD250714-0147,JGIFT-0025
+ORD250714-0146,2025-7-14,15:30:38,함영환,01050063597,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692590845331,ORD250714-0146,K001-0008
+ORD250714-0146,2025-7-14,15:30:38,함영환,01050063597,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692590845331,ORD250714-0146,L001-0032
+ORD250714-0146,2025-7-14,15:30:38,함영환,01050063597,JGIFT-0025,EMS Belt_Peach,1,0,0,692590845331,ORD250714-0146,JGIFT-0025
+ORD250714-0145,2025-7-14,15:32:54,장민정,01093059940,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692590845320,ORD250714-0145,L001-0032
+ORD250714-0145,2025-7-14,15:32:54,장민정,01093059940,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692590845320,ORD250714-0145,K001-0008
+ORD250714-0145,2025-7-14,15:32:54,장민정,01093059940,JGIFT-0026,EMS Belt_Purple,1,0,0,692590845320,ORD250714-0145,JGIFT-0026
+ORD250714-0143,2025-7-14,15:35:9,카라사,01099659141,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692590845305,ORD250714-0143,L001-0032
+ORD250714-0143,2025-7-14,15:35:9,카라사,01099659141,JGIFT-0026,EMS Belt_Purple,1,0,0,692590845305,ORD250714-0143,JGIFT-0026
+ORD250714-0143,2025-7-14,15:35:9,카라사,01099659141,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692590845305,ORD250714-0143,K001-0008
+ORD250714-0139,2025-7-14,15:39:55,손미선,01044218670,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692590845261,ORD250714-0139,L001-0032
+ORD250714-0139,2025-7-14,15:39:55,손미선,01044218670,JGIFT-0024,EMS Belt_Mint,1,0,0,692590845261,ORD250714-0139,JGIFT-0024
+ORD250714-0139,2025-7-14,15:39:55,손미선,01044218670,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692590845261,ORD250714-0139,K001-0008
+ORD250714-0138,2025-7-14,15:41:22,김기화,01036447154,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692590845250,ORD250714-0138,K001-0008
+ORD250714-0138,2025-7-14,15:41:22,김기화,01036447154,JGIFT-0024,EMS Belt_Mint,1,0,0,692590845250,ORD250714-0138,JGIFT-0024
+ORD250714-0138,2025-7-14,15:41:22,김기화,01036447154,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692590845250,ORD250714-0138,L001-0032
+ORD250714-0136,2025-7-14,15:43:28,김나영,01020410735,JGIFT-0024,EMS Belt_Mint,1,0,0,692590845235,ORD250714-0136,JGIFT-0024
+ORD250714-0136,2025-7-14,15:43:28,김나영,01020410735,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692590845235,ORD250714-0136,L001-0032
+ORD250714-0136,2025-7-14,15:43:28,김나영,01020410735,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692590845235,ORD250714-0136,K001-0008
+ORD250714-0166,2025-7-14,16:52:59,이지수,010-5690-2827,JGIFT-0026,EMS Belt_Purple,1,0,0,692594259496,ORD250714-0166,JGIFT-0026
+ORD250714-0166,2025-7-14,16:52:59,이지수,010-5690-2827,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692594259496,ORD250714-0166,L001-0032
+ORD250714-0166,2025-7-14,16:52:59,이지수,010-5690-2827,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692594259496,ORD250714-0166,K001-0008
+ORD250714-0168,2025-7-14,16:57:37,전선형,010-6560-3016,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692594259511,602501326133,JGIFT-0010
+ORD250714-0168,2025-7-14,16:57:37,전선형,010-6560-3016,L001-0030,뷰티루틴 쇼핑백,1,0,0,692594259511,602501326133,L001-0030
+ORD250714-0168,2025-7-14,16:57:37,전선형,010-6560-3016,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692594259511,602501326133,K001-0007
+ORD250714-0168,2025-7-14,16:57:37,전선형,010-6560-3016,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,692594259511,602501326133,L004-0023
+ORD250714-0168,2025-7-14,16:57:37,전선형,010-6560-3016,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,692594259511,602501326133,602501326133
+ORD250714-0168,2025-7-14,16:57:37,전선형,010-6560-3016,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692594259511,602501326133,8809750465013
+ORD250714-0169,2025-7-14,16:59:54,이나은,0502-3502-1967,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,692594259522,ORD250714-0169,L004-0023
+ORD250714-0169,2025-7-14,16:59:54,이나은,0502-3502-1967,K001-0010,젤 3개 포장박스 (1호),1,0,0,692594259522,ORD250714-0169,K001-0010
+ORD250714-0170,2025-7-14,17:1:32,정지현,010-7678-2028,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,692594259533,ORD250714-0170,L004-0023
+ORD250714-0170,2025-7-14,17:1:32,정지현,010-7678-2028,K001-0022,가죽케이스 박스 (2호),1,0,0,692594259533,ORD250714-0170,K001-0022
+ORD250714-0176,2025-7-14,17:3:9,이금선,0504-1710-0793,K001-0022,가죽케이스 박스 (2호),1,0,0,692594259592,ORD250714-0176,K001-0022
+ORD250714-0176,2025-7-14,17:3:9,이금선,0504-1710-0793,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,692594259592,ORD250714-0176,L004-0023
+ORD250714-0177,2025-7-14,17:6:17,조귀란,01077958318,L001-0030,뷰티루틴 쇼핑백,1,0,0,692594259603,312506374101,L001-0030
+ORD250714-0177,2025-7-14,17:6:17,조귀란,01077958318,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,692594259603,312506374101,312506374101
+ORD250714-0177,2025-7-14,17:6:17,조귀란,01077958318,K001-0041,단품 1SET 박스 (3호),1,0,0,692594259603,312506374101,K001-0041
+ORD250714-0178,2025-7-14,17:7:45,주혜영,010-3433-7007,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,692594508044,ORD250714-0178,8809595040017
+ORD250714-0178,2025-7-14,17:7:45,주혜영,010-3433-7007,K001-0010,젤 3개 포장박스 (1호),1,0,0,692594508044,ORD250714-0178,K001-0010
+ORD250714-0060,2025-7-14,17:13:56,김대경,010-9380-3881,K001-0010,젤 3개 포장박스 (1호),1,0,0,459774244322,112501014010,K001-0010
+ORD250714-0060,2025-7-14,17:13:56,김대경,010-9380-3881,P001-DS150A,DUALSONIC BLACK Pro FACE CARTRIDGE 1Set 10,000샷,1,10000,0,459774244322,112501014010,112501014010
+ORD250714-0164,2025-7-14,17:35:10,한무쇼핑 (주) 목동점,010-0000-0000,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),2,0,0,jgift-0010,132503022000,312507270100/312507243100
+ORD250714-0164,2025-7-14,17:35:10,한무쇼핑 (주) 목동점,010-0000-0000,P001-DS015A,DUALSONIC Pro BODY CARTRIDGE 1Set,1,30000,0,jgift-0010,132503022000,132503022000
+ORD250714-0164,2025-7-14,17:35:10,한무쇼핑 (주) 목동점,010-0000-0000,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),24,0,0,jgift-0010,132503022000,8809595040673
+ORD250714-0164,2025-7-14,17:35:10,한무쇼핑 (주) 목동점,010-0000-0000,P001-0152,원형케이스 퍼플,5,0,0,jgift-0010,132503022000,8809595040512
+ORD250714-0180,2025-7-14,18:11:51,한혜주,010-2026-0328,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459783611836,ORD250714-0180,8809595040635
+ORD250714-0180,2025-7-14,18:11:51,한혜주,010-2026-0328,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459783611836,ORD250714-0180,8809595040628
+ORD250714-0180,2025-7-14,18:11:51,한혜주,010-2026-0328,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459783611836,ORD250714-0180,L004-0023
+ORD250714-0129,2025-7-14,18:13:32,박선정,0504-2416-4082,K001-0022,가죽케이스 박스 (2호),1,0,0,459783552465,ORD250714-0129,K001-0022
+ORD250714-0129,2025-7-14,18:13:32,박선정,0504-2416-4082,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,459783552465,ORD250714-0129,8809595040635
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-15.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-15.csv
new file mode 100644
index 0000000..f93531a
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-15.csv
@@ -0,0 +1,216 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250715-0012,2025-7-15,11:24:7,이영숙,010-7699-1000,P001-0108,C-Type 충전기 Assy,1,0,0,l001-0030,ORD250715-0012,8809595040246
+ORD250715-0013,2025-7-15,13:32:1,최인*,0503-6352-7706,L001-0032,핏업밸트 쇼핑백(150*65*460),2,0,0,459788349381,ORD250715-0013,L001-0032
+ORD250715-0013,2025-7-15,13:32:1,최인*,0503-6352-7706,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,459788349381,ORD250715-0013,8809595040673
+ORD250715-0013,2025-7-15,13:32:1,최인*,0503-6352-7706,JGIFT-0026,EMS Belt_Purple,1,0,0,459788349381,ORD250715-0013,JGIFT-0026
+ORD250715-0013,2025-7-15,13:32:1,최인*,0503-6352-7706,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459788349381,ORD250715-0013,K001-0008
+ORD250715-0013,2025-7-15,13:32:1,최인*,0503-6352-7706,PF001-002,[BR] GUMMY JELLY (10 BAGS),1,0,0,459788349381,ORD250715-0013,8809595040666
+ORD250715-0013,2025-7-15,13:32:1,최인*,0503-6352-7706,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,459788349381,ORD250715-0013,8809595040680
+ORD250715-0013,2025-7-15,13:32:1,최인*,0503-6352-7706,JGIFT-0024,EMS Belt_Mint,1,0,0,459788349381,ORD250715-0013,JGIFT-0024
+ORD250715-0013,2025-7-15,13:32:1,최인*,0503-6352-7706,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459788349381,ORD250715-0013,8809595040697
+ORD250715-0014,2025-7-15,13:35:8,이소*,0503-6350-4447,JGIFT-0026,EMS Belt_Purple,1,0,0,459788349392,ORD250715-0014,JGIFT-0026
+ORD250715-0014,2025-7-15,13:35:8,이소*,0503-6350-4447,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459788349392,ORD250715-0014,K001-0008
+ORD250715-0014,2025-7-15,13:35:8,이소*,0503-6350-4447,JGIFT-0025,EMS Belt_Peach,1,0,0,459788349392,ORD250715-0014,JGIFT-0025
+ORD250715-0014,2025-7-15,13:35:8,이소*,0503-6350-4447,L001-0032,핏업밸트 쇼핑백(150*65*460),2,0,0,459788349392,ORD250715-0014,L001-0032
+ORD250715-0015,2025-7-15,13:37:39,김현석,010-4100-1216,JGIFT-0026,EMS Belt_Purple,1,0,0,459788349403,ORD250715-0015,JGIFT-0026
+ORD250715-0015,2025-7-15,13:37:39,김현석,010-4100-1216,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459788349403,ORD250715-0015,K001-0008
+ORD250715-0015,2025-7-15,13:37:39,김현석,010-4100-1216,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459788349403,ORD250715-0015,L001-0032
+ORD250715-0016,2025-7-15,13:39:5,김춘*,0502-2342-4473,K001-0022,가죽케이스 박스 (2호),1,0,0,459788349414,ORD250715-0016,K001-0022
+ORD250715-0016,2025-7-15,13:39:5,김춘*,0502-2342-4473,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459788349414,ORD250715-0016,8809595040017
+ORD250715-0017,2025-7-15,13:51:4,이현*,0503-6347-5250,P001-0156,우디케이스,1,0,0,59788349425,502507305100,8809595040598
+ORD250715-0017,2025-7-15,13:51:4,이현*,0503-6347-5250,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,59788349425,502507305100,602503322130
+ORD250715-0017,2025-7-15,13:51:4,이현*,0503-6347-5250,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,59788349425,502507305100,JGIFT-0010
+ORD250715-0017,2025-7-15,13:51:4,이현*,0503-6347-5250,L001-0030,뷰티루틴 쇼핑백,2,0,0,59788349425,502507305100,L001-0030
+ORD250715-0017,2025-7-15,13:51:4,이현*,0503-6347-5250,JGIFT-0024,EMS Belt_Mint,1,0,0,59788349425,502507305100,JGIFT-0024
+ORD250715-0017,2025-7-15,13:51:4,이현*,0503-6347-5250,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,59788349425,502507305100,8809750465013
+ORD250715-0017,2025-7-15,13:51:4,이현*,0503-6347-5250,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,59788349425,502507305100,8809595040017
+ORD250715-0017,2025-7-15,13:51:4,이현*,0503-6347-5250,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,59788349425,502507305100,L004-0023
+ORD250715-0017,2025-7-15,13:51:4,이현*,0503-6347-5250,K001-0008,제품 6Set 포장박스 (6호),1,0,0,59788349425,502507305100,K001-0008
+ORD250715-0017,2025-7-15,13:51:4,이현*,0503-6347-5250,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,59788349425,502507305100,502507305100
+ORD250715-0018,2025-7-15,13:59:35,최유*,0503-6350-7462,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459788349436,502507307100,8809750465013
+ORD250715-0018,2025-7-15,13:59:35,최유*,0503-6350-7462,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459788349436,502507307100,K001-0008
+ORD250715-0018,2025-7-15,13:59:35,최유*,0503-6350-7462,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459788349436,502507307100,602503351130
+ORD250715-0018,2025-7-15,13:59:35,최유*,0503-6350-7462,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459788349436,502507307100,L004-0023
+ORD250715-0018,2025-7-15,13:59:35,최유*,0503-6350-7462,JGIFT-0024,EMS Belt_Mint,1,0,0,459788349436,502507307100,JGIFT-0024
+ORD250715-0018,2025-7-15,13:59:35,최유*,0503-6350-7462,L001-0030,뷰티루틴 쇼핑백,2,0,0,459788349436,502507307100,L001-0030
+ORD250715-0018,2025-7-15,13:59:35,최유*,0503-6350-7462,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,459788349436,502507307100,8809595040017
+ORD250715-0018,2025-7-15,13:59:35,최유*,0503-6350-7462,P001-0156,우디케이스,1,0,0,459788349436,502507307100,8809595040598
+ORD250715-0018,2025-7-15,13:59:35,최유*,0503-6350-7462,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459788349436,502507307100,502507307100
+ORD250715-0018,2025-7-15,13:59:35,최유*,0503-6350-7462,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459788349436,502507307100,JGIFT-0010
+ORD250715-0078,2025-7-15,14:14:8,박지혜,0502-3702-7335,L001-0030,뷰티루틴 쇼핑백,1,0,0,459788350033459788350033,502507257100,L001-0030
+ORD250715-0078,2025-7-15,14:14:8,박지혜,0502-3702-7335,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459788350033459788350033,502507257100,502507257100
+ORD250715-0078,2025-7-15,14:14:8,박지혜,0502-3702-7335,K001-0041,단품 1SET 박스 (3호),1,0,0,459788350033459788350033,502507257100,K001-0041
+ORD250715-0082,2025-7-15,14:17:16,김유*,0503-6352-4993,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459788350070,ORD250715-0082,8809595040017
+ORD250715-0082,2025-7-15,14:17:16,김유*,0503-6352-4993,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459788350070,ORD250715-0082,L004-0023
+ORD250715-0082,2025-7-15,14:17:16,김유*,0503-6352-4993,K001-0022,가죽케이스 박스 (2호),1,0,0,459788350070,ORD250715-0082,K001-0022
+ORD250715-0077,2025-7-15,14:18:27,손미연,0504-2323-8112,K001-0010,젤 3개 포장박스 (1호),1,0,0,459788350022,ORD250715-0077,K001-0010
+ORD250715-0077,2025-7-15,14:18:27,손미연,0504-2323-8112,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459788350022,ORD250715-0077,8809595040017
+ORD250715-0076,2025-7-15,14:20:1,이순*(박희진),0502-2335-7007,K001-0010,젤 3개 포장박스 (1호),1,0,0,459788350011,112506169000,K001-0010
+ORD250715-0076,2025-7-15,14:20:1,이순*(박희진),0502-2335-7007,P001-DS007A,DUALSONIC Pro Face CARTRIDGE 1Set,1,6000,0,459788350011,112506169000,112506169000
+ORD250715-0041,2025-7-15,14:22:10,김희진,010-5711-0903,K001-0022,가죽케이스 박스 (2호),1,0,0,459788349661,ORD250715-0041,K001-0022
+ORD250715-0041,2025-7-15,14:22:10,김희진,010-5711-0903,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,459788349661,ORD250715-0041,8809595040017
+ORD250715-0041,2025-7-15,14:22:10,김희진,010-5711-0903,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459788349661,ORD250715-0041,L004-0023
+ORD250715-0038,2025-7-15,14:23:26,강유진,010-9306-8567,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459788349635,ORD250715-0038,8809595040017
+ORD250715-0038,2025-7-15,14:23:26,강유진,010-9306-8567,K001-0022,가죽케이스 박스 (2호),1,0,0,459788349635,ORD250715-0038,K001-0022
+ORD250715-0030,2025-7-15,14:24:31,김순*,0503-6349-8538,K001-0010,젤 3개 포장박스 (1호),1,0,0,459788349554,ORD250715-0030,K001-0010
+ORD250715-0030,2025-7-15,14:24:31,김순*,0503-6349-8538,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,459788349554,ORD250715-0030,L004-0023
+ORD250715-0049,2025-7-15,14:30:24,조용수,01091922659,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459788349742,602502894120,8809750465013
+ORD250715-0049,2025-7-15,14:30:24,조용수,01091922659,L001-0030,뷰티루틴 쇼핑백,1,0,0,459788349742,602502894120,L001-0030
+ORD250715-0049,2025-7-15,14:30:24,조용수,01091922659,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),1,0,0,459788349742,602502894120,602502894120
+ORD250715-0049,2025-7-15,14:30:24,조용수,01091922659,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459788349742,602502894120,L004-0023
+ORD250715-0049,2025-7-15,14:30:24,조용수,01091922659,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459788349742,602502894120,8809595040697
+ORD250715-0049,2025-7-15,14:30:24,조용수,01091922659,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459788349742,602502894120,K001-0007
+ORD250715-0047,2025-7-15,14:37:41,김유아,010-5398-5540,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,459788349720,502507353100,602501172111
+ORD250715-0047,2025-7-15,14:37:41,김유아,010-5398-5540,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459788349720,502507353100,502507353100
+ORD250715-0047,2025-7-15,14:37:41,김유아,010-5398-5540,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459788349720,502507353100,K001-0008
+ORD250715-0047,2025-7-15,14:37:41,김유아,010-5398-5540,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,459788349720,502507353100,8809750465013
+ORD250715-0047,2025-7-15,14:37:41,김유아,010-5398-5540,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459788349720,502507353100,L004-0023
+ORD250715-0047,2025-7-15,14:37:41,김유아,010-5398-5540,P001-0156,우디케이스,1,0,0,459788349720,502507353100,8809595040598
+ORD250715-0047,2025-7-15,14:37:41,김유아,010-5398-5540,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459788349720,502507353100,JGIFT-0010
+ORD250715-0047,2025-7-15,14:37:41,김유아,010-5398-5540,L001-0030,뷰티루틴 쇼핑백,2,0,0,459788349720,502507353100,L001-0030
+ORD250715-0046,2025-7-15,14:43:55,최정애,010-5398-5530,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459788349716,502507258100,K001-0008
+ORD250715-0046,2025-7-15,14:43:55,최정애,010-5398-5530,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),1,0,0,459788349716,502507258100,602501399120
+ORD250715-0046,2025-7-15,14:43:55,최정애,010-5398-5530,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459788349716,502507258100,502507258100
+ORD250715-0046,2025-7-15,14:43:55,최정애,010-5398-5530,L001-0030,뷰티루틴 쇼핑백,2,0,0,459788349716,502507258100,L001-0030
+ORD250715-0046,2025-7-15,14:43:55,최정애,010-5398-5530,P001-0156,우디케이스,1,0,0,459788349716,502507258100,8809595040598
+ORD250715-0046,2025-7-15,14:43:55,최정애,010-5398-5530,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459788349716,502507258100,L004-0023
+ORD250715-0046,2025-7-15,14:43:55,최정애,010-5398-5530,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,459788349716,502507258100,8809750465013
+ORD250715-0046,2025-7-15,14:43:55,최정애,010-5398-5530,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459788349716,502507258100,JGIFT-0010
+ORD250715-0045,2025-7-15,14:48:14,정세빈,010-4499-5680,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459788349705,502507202100,602503332130
+ORD250715-0045,2025-7-15,14:48:14,정세빈,010-4499-5680,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459788349705,502507202100,L004-0023
+ORD250715-0045,2025-7-15,14:48:14,정세빈,010-4499-5680,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,459788349705,502507202100,8809750465013
+ORD250715-0045,2025-7-15,14:48:14,정세빈,010-4499-5680,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459788349705,502507202100,K001-0008
+ORD250715-0045,2025-7-15,14:48:14,정세빈,010-4499-5680,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459788349705,502507202100,JGIFT-0010
+ORD250715-0045,2025-7-15,14:48:14,정세빈,010-4499-5680,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459788349705,502507202100,502507202100
+ORD250715-0045,2025-7-15,14:48:14,정세빈,010-4499-5680,L001-0030,뷰티루틴 쇼핑백,2,0,0,459788349705,502507202100,L001-0030
+ORD250715-0045,2025-7-15,14:48:14,정세빈,010-4499-5680,P001-0156,우디케이스,1,0,0,459788349705,502507202100,8809595040598
+ORD250715-0040,2025-7-15,14:50:55,손다혜,010-6629-4402,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459788349650,602501992132,L004-0023
+ORD250715-0040,2025-7-15,14:50:55,손다혜,010-6629-4402,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459788349650,602501992132,JGIFT-0010
+ORD250715-0040,2025-7-15,14:50:55,손다혜,010-6629-4402,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459788349650,602501992132,8809750465013
+ORD250715-0040,2025-7-15,14:50:55,손다혜,010-6629-4402,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459788349650,602501992132,602501992132
+ORD250715-0040,2025-7-15,14:50:55,손다혜,010-6629-4402,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459788349650,602501992132,K001-0007
+ORD250715-0040,2025-7-15,14:50:55,손다혜,010-6629-4402,L001-0030,뷰티루틴 쇼핑백,1,0,0,459788349650,602501992132,L001-0030
+ORD250715-0039,2025-7-15,14:54:45,최은진,0502-3702-6774,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459788349646,602501991130,K001-0007
+ORD250715-0039,2025-7-15,14:54:45,최은진,0502-3702-6774,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459788349646,602501991130,L004-0023
+ORD250715-0039,2025-7-15,14:54:45,최은진,0502-3702-6774,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459788349646,602501991130,602501991130
+ORD250715-0039,2025-7-15,14:54:45,최은진,0502-3702-6774,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459788349646,602501991130,JGIFT-0010
+ORD250715-0039,2025-7-15,14:54:45,최은진,0502-3702-6774,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459788349646,602501991130,8809750465013
+ORD250715-0039,2025-7-15,14:54:45,최은진,0502-3702-6774,L001-0030,뷰티루틴 쇼핑백,1,0,0,459788349646,602501991130,L001-0030
+ORD250715-0029,2025-7-15,15:12:55,최동*,0503-6352-4105,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,459788349543,602501266120,8809595040673
+ORD250715-0029,2025-7-15,15:12:55,최동*,0503-6352-4105,L001-0030,뷰티루틴 쇼핑백,1,0,0,459788349543,602501266120,L001-0030
+ORD250715-0029,2025-7-15,15:12:55,최동*,0503-6352-4105,P001-0152,원형케이스 퍼플,1,0,0,459788349543,602501266120,8809595040512
+ORD250715-0029,2025-7-15,15:12:55,최동*,0503-6352-4105,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,459788349543,602501266120,8809595040680
+ORD250715-0029,2025-7-15,15:12:55,최동*,0503-6352-4105,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459788349543,602501266120,JGIFT-0010
+ORD250715-0029,2025-7-15,15:12:55,최동*,0503-6352-4105,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459788349543,602501266120,L004-0023
+ORD250715-0029,2025-7-15,15:12:55,최동*,0503-6352-4105,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),1,0,0,459788349543,602501266120,602501266120
+ORD250715-0029,2025-7-15,15:12:55,최동*,0503-6352-4105,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459788349543,602501266120,K001-0008
+ORD250715-0029,2025-7-15,15:12:55,최동*,0503-6352-4105,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459788349543,602501266120,8809750465013
+ORD250715-0029,2025-7-15,15:12:55,최동*,0503-6352-4105,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,459788349543,602501266120,8809595040017
+ORD250715-0029,2025-7-15,15:12:55,최동*,0503-6352-4105,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459788349543,602501266120,8809595040697
+ORD250715-0075,2025-7-15,15:14:19,박찬*,0502-2338-6784,K001-0010,젤 3개 포장박스 (1호),1,0,0,459788350000,112506177000,K001-0010
+ORD250715-0075,2025-7-15,15:14:19,박찬*,0502-2338-6784,P001-DS007A,DUALSONIC Pro Face CARTRIDGE 1Set,1,6000,0,459788350000,112506177000,112506177000
+ORD250715-0095,2025-7-15,15:16:46,우*영,050716193432,K001-0010,젤 3개 포장박스 (1호),1,0,0,692612664880,ORD250715-0095,K001-0010
+ORD250715-0095,2025-7-15,15:16:46,우*영,050716193432,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692612664880,ORD250715-0095,8809750465013
+ORD250715-0103,2025-7-15,15:19:11,김지*,0503-6357-3154,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,692612664961,ORD250715-0103,L004-0023
+ORD250715-0103,2025-7-15,15:19:11,김지*,0503-6357-3154,K001-0022,가죽케이스 박스 (2호),1,0,0,692612664961,ORD250715-0103,K001-0022
+ORD250715-0103,2025-7-15,15:19:11,김지*,0503-6357-3154,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,692612664961,ORD250715-0103,8809595040017
+ORD250715-0102,2025-7-15,15:20:22,김*영,0502-6314-3393,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,692612664950,ORD250715-0102,8809595040017
+ORD250715-0102,2025-7-15,15:20:22,김*영,0502-6314-3393,K001-0022,가죽케이스 박스 (2호),1,0,0,692612664950,ORD250715-0102,K001-0022
+ORD250715-0101,2025-7-15,15:21:12,서*경,0502-6236-1396,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,692612664946,ORD250715-0101,8809595040017
+ORD250715-0101,2025-7-15,15:21:12,서*경,0502-6236-1396,K001-0010,젤 3개 포장박스 (1호),1,0,0,692612664946,ORD250715-0101,K001-0010
+ORD250715-0094,2025-7-15,15:24:28,류연*,0502-2399-4864,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,92612664876,ORD250715-0094,L004-0023
+ORD250715-0094,2025-7-15,15:24:28,류연*,0502-2399-4864,K001-0022,가죽케이스 박스 (2호),1,0,0,92612664876,ORD250715-0094,K001-0022
+ORD250715-0098,2025-7-15,15:27:13,문남*(김준오),0502-2404-2060,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692612664913,602501071133,8809595040017
+ORD250715-0098,2025-7-15,15:27:13,문남*(김준오),0502-2404-2060,L001-0030,뷰티루틴 쇼핑백,1,0,0,692612664913,602501071133,L001-0030
+ORD250715-0098,2025-7-15,15:27:13,문남*(김준오),0502-2404-2060,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,692612664913,602501071133,602501071133
+ORD250715-0098,2025-7-15,15:27:13,문남*(김준오),0502-2404-2060,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692612664913,602501071133,K001-0007
+ORD250715-0007,2025-7-15,15:28:38,권지연,010-3789-0328,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,692605268643,ORD250715-0007,8809595040017
+ORD250715-0007,2025-7-15,15:28:38,권지연,010-3789-0328,K001-0010,젤 3개 포장박스 (1호),1,0,0,692605268643,ORD250715-0007,K001-0010
+ORD250715-0008,2025-7-15,15:31:33,김은미,010-9406-0039,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692605268654,ORD250715-0008,8809595040017
+ORD250715-0008,2025-7-15,15:31:33,김은미,010-9406-0039,K001-0010,젤 3개 포장박스 (1호),1,0,0,692605268654,ORD250715-0008,K001-0010
+ORD250715-0009,2025-7-15,15:32:43,김한옥,010-8458-0369,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692605268665,ORD250715-0009,8809595040017
+ORD250715-0009,2025-7-15,15:32:43,김한옥,010-8458-0369,K001-0010,젤 3개 포장박스 (1호),1,0,0,692605268665,ORD250715-0009,K001-0010
+ORD250715-0096,2025-7-15,15:38:13,서*용,050716192997,JGIFT-0026,EMS Belt_Purple,1,0,0,692612664891,ORD250715-0096,8809595040741
+ORD250715-0096,2025-7-15,15:38:13,서*용,050716192997,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692612664891,ORD250715-0096,L001-0032
+ORD250715-0096,2025-7-15,15:38:13,서*용,050716192997,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692612664891,ORD250715-0096,K001-0008
+ORD250715-0010,2025-7-15,15:39:29,노설화,010-3499-3565,K001-0010,젤 3개 포장박스 (1호),1,0,0,692605268676,ORD250715-0010,K001-0010
+ORD250715-0010,2025-7-15,15:39:29,노설화,010-3499-3565,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692605268676,ORD250715-0010,8809595040017
+ORD250715-0093,2025-7-15,15:45:21,연해동,01095305801,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692612664865,602503828110,K001-0007
+ORD250715-0093,2025-7-15,15:45:21,연해동,01095305801,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,692612664865,602503828110,602503828110
+ORD250715-0093,2025-7-15,15:45:21,연해동,01095305801,PF001-001C,[BR] DAY SHOT (14 BOTTLES),1,0,0,692612664865,602503828110,8809595040642
+ORD250715-0093,2025-7-15,15:45:21,연해동,01095305801,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692612664865,602503828110,8809750465013
+ORD250715-0093,2025-7-15,15:45:21,연해동,01095305801,L001-0030,뷰티루틴 쇼핑백,1,0,0,692612664865,602503828110,L001-0030
+ORD250715-0093,2025-7-15,15:45:21,연해동,01095305801,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,692612664865,602503828110,L004-0023
+ORD250715-0092,2025-7-15,15:49:7,문은지,01034470026,L001-0030,뷰티루틴 쇼핑백,1,0,0,692612664854,502507352100,L001-0030
+ORD250715-0092,2025-7-15,15:49:7,문은지,01034470026,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,692612664854,502507352100,L004-0023
+ORD250715-0092,2025-7-15,15:49:7,문은지,01034470026,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692612664854,502507352100,K001-0007
+ORD250715-0092,2025-7-15,15:49:7,문은지,01034470026,PF001-001C,[BR] DAY SHOT (14 BOTTLES),1,0,0,692612664854,502507352100,8809595040642
+ORD250715-0092,2025-7-15,15:49:7,문은지,01034470026,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692612664854,502507352100,502507352100
+ORD250715-0092,2025-7-15,15:49:7,문은지,01034470026,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692612664854,502507352100,8809750465013
+ORD250715-0100,2025-7-15,15:51:29,동승모,01022130526,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692612664935,ORD250715-0100,L001-0032
+ORD250715-0100,2025-7-15,15:51:29,동승모,01022130526,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692612664935,ORD250715-0100,K001-0008
+ORD250715-0100,2025-7-15,15:51:29,동승모,01022130526,JGIFT-0026,EMS Belt_Purple,1,0,0,692612664935,ORD250715-0100,8809595040741
+ORD250715-0099,2025-7-15,15:53:14,조혁진,01045189305,JGIFT-0026,EMS Belt_Purple,1,0,0,692612664924,ORD250715-0099,8809595040741
+ORD250715-0099,2025-7-15,15:53:14,조혁진,01045189305,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692612664924,ORD250715-0099,L001-0032
+ORD250715-0099,2025-7-15,15:53:14,조혁진,01045189305,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692612664924,ORD250715-0099,K001-0008
+ORD250715-0097,2025-7-15,15:54:42,김선숙,0504-3578-4681,JGIFT-0026,EMS Belt_Purple,1,0,0,692612664902,ORD250715-0097,8809595040741
+ORD250715-0097,2025-7-15,15:54:42,김선숙,0504-3578-4681,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692612664902,ORD250715-0097,K001-0008
+ORD250715-0097,2025-7-15,15:54:42,김선숙,0504-3578-4681,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692612664902,ORD250715-0097,L001-0032
+ORD250715-0114,2025-7-15,16:4:46,조대우,010-9119-7283,JGIFT-0028,EMS Belt_Pink,1,0,0,692614362100,ORD250715-0114,8809595041045
+ORD250715-0043,2025-7-15,16:7:18,이승희,010-3172-4545,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459788349683,ORD250715-0043,L001-0032
+ORD250715-0043,2025-7-15,16:7:18,이승희,010-3172-4545,JGIFT-0026,EMS Belt_Purple,1,0,0,459788349683,ORD250715-0043,8809595040741
+ORD250715-0043,2025-7-15,16:7:18,이승희,010-3172-4545,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459788349683,ORD250715-0043,K001-0008
+ORD250715-0044,2025-7-15,16:8:54,정혜경,010-9805-2863,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459788349694,ORD250715-0044,L001-0032
+ORD250715-0044,2025-7-15,16:8:54,정혜경,010-9805-2863,JGIFT-0026,EMS Belt_Purple,1,0,0,459788349694,ORD250715-0044,8809595040741
+ORD250715-0044,2025-7-15,16:8:54,정혜경,010-9805-2863,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459788349694,ORD250715-0044,K001-0008
+ORD250715-0068,2025-7-15,16:10:27,남진화,01059141024,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459788349930,ORD250715-0068,K001-0008
+ORD250715-0068,2025-7-15,16:10:27,남진화,01059141024,JGIFT-0026,EMS Belt_Purple,1,0,0,459788349930,ORD250715-0068,8809595040741
+ORD250715-0068,2025-7-15,16:10:27,남진화,01059141024,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459788349930,ORD250715-0068,L001-0032
+ORD250715-0032,2025-7-15,16:12:12,김수*,0503-6365-4650,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459788349576,ORD250715-0032,L001-0032
+ORD250715-0032,2025-7-15,16:12:12,김수*,0503-6365-4650,JGIFT-0025,EMS Belt_Peach,1,0,0,459788349576,ORD250715-0032,8809595040734
+ORD250715-0032,2025-7-15,16:12:12,김수*,0503-6365-4650,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459788349576,ORD250715-0032,K001-0008
+ORD250715-0033,2025-7-15,16:13:47,손은재,0503-6374-3662,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459788349580,ORD250715-0033,L001-0032
+ORD250715-0033,2025-7-15,16:13:47,손은재,0503-6374-3662,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459788349580,ORD250715-0033,K001-0008
+ORD250715-0033,2025-7-15,16:13:47,손은재,0503-6374-3662,JGIFT-0025,EMS Belt_Peach,1,0,0,459788349580,ORD250715-0033,8809595040734
+ORD250715-0042,2025-7-15,16:17:14,이주형,010-2088-9511,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459788349672,ORD250715-0042,L001-0032
+ORD250715-0042,2025-7-15,16:17:14,이주형,010-2088-9511,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459788349672,ORD250715-0042,K001-0008
+ORD250715-0042,2025-7-15,16:17:14,이주형,010-2088-9511,JGIFT-0024,EMS Belt_Mint,1,0,0,459788349672,ORD250715-0042,8809595040758
+ORD250715-0051,2025-7-15,16:20:23,김주연,01071164649,JGIFT-0024,EMS Belt_Mint,1,0,0,459788349764,ORD250715-0051,8809595040758
+ORD250715-0051,2025-7-15,16:20:23,김주연,01071164649,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459788349764,ORD250715-0051,K001-0008
+ORD250715-0051,2025-7-15,16:20:23,김주연,01071164649,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459788349764,ORD250715-0051,L001-0032
+ORD250715-0052,2025-7-15,16:23:4,최주이,01086631426,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459788349775,ORD250715-0052,K001-0008
+ORD250715-0052,2025-7-15,16:23:4,최주이,01086631426,JGIFT-0024,EMS Belt_Mint,1,0,0,459788349775,ORD250715-0052,8809595040758
+ORD250715-0052,2025-7-15,16:23:4,최주이,01086631426,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459788349775,ORD250715-0052,L001-0032
+ORD250715-0115,2025-7-15,16:26:41,김민*,0503-6342-5851,JGIFT-0024,EMS Belt_Mint,1,0,0,692614801324,ORD250715-0115,8809595040758
+ORD250715-0115,2025-7-15,16:26:41,김민*,0503-6342-5851,L001-0032,핏업밸트 쇼핑백(150*65*460),2,0,0,692614801324,ORD250715-0115,L001-0032
+ORD250715-0115,2025-7-15,16:26:41,김민*,0503-6342-5851,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692614801324,ORD250715-0115,K001-0008
+ORD250715-0115,2025-7-15,16:26:41,김민*,0503-6342-5851,JGIFT-0026,EMS Belt_Purple,1,0,0,692614801324,ORD250715-0115,8809595040741
+ORD250715-0116,2025-7-15,16:31:8,이*주,050716194796,L001-0030,뷰티루틴 쇼핑백,1,0,0,692614801335,ORD250715-0116,L001-0030
+ORD250715-0116,2025-7-15,16:31:8,이*주,050716194796,L004-0035,Elixir Aqua Hyal Ampoule(엘릭시르 하이알 앰플) 35ML,1,0,0,692614801335,ORD250715-0116,8809527486555
+ORD250715-0116,2025-7-15,16:31:8,이*주,050716194796,L004-0036,Elixir Aqua Hyal Cream(엘릭시르 하이알 크림) 50ML,1,0,0,692614801335,ORD250715-0116,8809527486562
+ORD250715-0116,2025-7-15,16:31:8,이*주,050716194796,K001-0041,단품 1SET 박스 (3호),1,0,0,692614801335,ORD250715-0116,K001-0041
+ORD250715-0116,2025-7-15,16:31:8,이*주,050716194796,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692614801335,ORD250715-0116,8809750465013
+ORD250715-0116,2025-7-15,16:31:8,이*주,050716194796,L004-0034,Elixir Aqua Hyal Toner(엘릭시르 하이알 토너) 130ML,1,0,0,692614801335,ORD250715-0116,8809527486548
+ORD250715-0117,2025-7-15,16:34:29,조나영,01026384048,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692614801346,ORD250715-0117,K001-0008
+ORD250715-0117,2025-7-15,16:34:29,조나영,01026384048,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692614801346,ORD250715-0117,L001-0032
+ORD250715-0117,2025-7-15,16:34:29,조나영,01026384048,JGIFT-0024,EMS Belt_Mint,1,0,0,692614801346,ORD250715-0117,8809595040758
+ORD250715-0120,2025-7-15,16:36:7,정미경,010-8649-2550,K001-0010,젤 3개 포장박스 (1호),1,0,0,692615353440,ORD250715-0120,K001-0010
+ORD250715-0120,2025-7-15,16:36:7,정미경,010-8649-2550,P001-0108,C-Type 충전기 Assy,1,0,0,692615353440,ORD250715-0120,8809595040246
+ORD250715-0118,2025-7-15,16:37:48,이다윤,0502-3403-6378,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,692614801350,ORD250715-0118,L004-0023
+ORD250715-0118,2025-7-15,16:37:48,이다윤,0502-3403-6378,K001-0010,젤 3개 포장박스 (1호),1,0,0,692614801350,ORD250715-0118,K001-0010
+ORD250715-0110,2025-7-15,17:17:25,,010-0000-0000,L004-0031,Elixir Lifting Collagen Toner(엘릭시르 콜라겐 토너) 130ML,2,0,0,K2507145067196,ORD250715-0110,8809527486579
+ORD250715-0110,2025-7-15,17:17:25,,010-0000-0000,PF001-003,[BR] STICK JELLY (14 BAGS),2,0,0,K2507145067196,ORD250715-0110,8809595040659
+ORD250715-0110,2025-7-15,17:17:25,,010-0000-0000,K001-0022,가죽케이스 박스 (2호),1,0,0,K2507145067196,ORD250715-0110,K001-0022
+ORD250715-0109,2025-7-15,17:20:52,,010-0000-0000,PF001-003,[BR] STICK JELLY (14 BAGS),2,0,0,K2507145067328,ORD250715-0109,8809595040659
+ORD250715-0109,2025-7-15,17:20:52,,010-0000-0000,K001-0022,가죽케이스 박스 (2호),1,0,0,K2507145067328,ORD250715-0109,K001-0022
+ORD250715-0109,2025-7-15,17:20:52,,010-0000-0000,L004-0031,Elixir Lifting Collagen Toner(엘릭시르 콜라겐 토너) 130ML,2,0,0,K2507145067328,ORD250715-0109,8809527486579
+ORD250715-0111,2025-7-15,17:24:20,,010-0000-0000,PF001-003,[BR] STICK JELLY (14 BAGS),1,0,0,K2507145067392,ORD250715-0111,8809595040659
+ORD250715-0111,2025-7-15,17:24:20,,010-0000-0000,L004-0031,Elixir Lifting Collagen Toner(엘릭시르 콜라겐 토너) 130ML,3,0,0,K2507145067392,ORD250715-0111,8809527486579
+ORD250715-0111,2025-7-15,17:24:20,,010-0000-0000,K001-0022,가죽케이스 박스 (2호),1,0,0,K2507145067392,ORD250715-0111,K001-0022
+ORD250715-0108,2025-7-15,17:27:25,,010-0000-0000,K001-0022,가죽케이스 박스 (2호),1,0,0,K2507145067183,ORD250715-0108,K001-0022
+ORD250715-0108,2025-7-15,17:27:25,,010-0000-0000,PF001-003,[BR] STICK JELLY (14 BAGS),1,0,0,K2507145067183,ORD250715-0108,8809595040659
+ORD250715-0108,2025-7-15,17:27:25,,010-0000-0000,L004-0031,Elixir Lifting Collagen Toner(엘릭시르 콜라겐 토너) 130ML,2,0,0,K2507145067183,ORD250715-0108,8809527486579
+ORD250715-0107,2025-7-15,17:29:15,KSE택배,010-0000-0000,L004-0031,Elixir Lifting Collagen Toner(엘릭시르 콜라겐 토너) 130ML,2,0,0,K2507155089087,ORD250715-0107,8809527486579
+ORD250715-0107,2025-7-15,17:29:15,KSE택배,010-0000-0000,K001-0010,젤 3개 포장박스 (1호),1,0,0,K2507155089087,ORD250715-0107,K001-0010
+ORD250715-0105,2025-7-15,17:31:19,KSE택배,010-0000-0000,PF001-003,[BR] STICK JELLY (14 BAGS),3,0,0,K2507155089086,ORD250715-0105,8809595040659
+ORD250715-0105,2025-7-15,17:31:19,KSE택배,010-0000-0000,K001-0022,가죽케이스 박스 (2호),1,0,0,K2507155089086,ORD250715-0105,K001-0022
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-16.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-16.csv
new file mode 100644
index 0000000..261b6ad
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-16.csv
@@ -0,0 +1,84 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250716-0012,2025-7-16,13:7:29,박향*,0503-6371-8014,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459796658333,ORD250716-0012,L001-0032
+ORD250716-0012,2025-7-16,13:7:29,박향*,0503-6371-8014,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459796658333,ORD250716-0012,K001-0008
+ORD250716-0012,2025-7-16,13:7:29,박향*,0503-6371-8014,JGIFT-0025,EMS Belt_Peach,1,0,0,459796658333,ORD250716-0012,8809595040734
+ORD250716-0024,2025-7-16,13:9:59,정숙희,0504-2270-7418,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,59796658451,ORD250716-0024,8809595040017
+ORD250716-0024,2025-7-16,13:9:59,정숙희,0504-2270-7418,K001-0022,가죽케이스 박스 (2호),1,0,0,59796658451,ORD250716-0024,K001-0022
+ORD250716-0013,2025-7-16,13:18:9,김*,0502-2374-9972,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459796658344,ORD250716-0013,L001-0032
+ORD250716-0013,2025-7-16,13:18:9,김*,0502-2374-9972,JGIFT-0026,EMS Belt_Purple,1,0,0,459796658344,ORD250716-0013,8809595040741
+ORD250716-0013,2025-7-16,13:18:9,김*,0502-2374-9972,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459796658344,ORD250716-0013,K001-0008
+ORD250716-0021,2025-7-16,13:21:0,신민*,0502-2367-8682,P001-DS007A,DUALSONIC Pro Face CARTRIDGE 1Set,1,6000,0,459796658425,112506176000,112506176000
+ORD250716-0021,2025-7-16,13:21:0,신민*,0502-2367-8682,K001-0010,젤 3개 포장박스 (1호),1,0,0,459796658425,112506176000,K001-0010
+ORD250716-0020,2025-7-16,13:22:18,박희자,01084561968,JGIFT-0026,EMS Belt_Purple,1,0,0,459796658414,ORD250716-0020,8809595040741
+ORD250716-0020,2025-7-16,13:22:18,박희자,01084561968,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459796658414,ORD250716-0020,L001-0032
+ORD250716-0020,2025-7-16,13:22:18,박희자,01084561968,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459796658414,ORD250716-0020,K001-0008
+ORD250716-0019,2025-7-16,13:24:0,이*희,050716195531,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459796658403,ORD250716-0019,L001-0032
+ORD250716-0019,2025-7-16,13:24:0,이*희,050716195531,JGIFT-0026,EMS Belt_Purple,1,0,0,459796658403,ORD250716-0019,8809595040741
+ORD250716-0019,2025-7-16,13:24:0,이*희,050716195531,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459796658403,ORD250716-0019,K001-0008
+ORD250716-0014,2025-7-16,13:25:14,이지*,0502-2374-3319,JGIFT-0024,EMS Belt_Mint,1,0,0,459796658355,ORD250716-0014,8809595040758
+ORD250716-0014,2025-7-16,13:25:14,이지*,0502-2374-3319,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459796658355,ORD250716-0014,L001-0032
+ORD250716-0014,2025-7-16,13:25:14,이지*,0502-2374-3319,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459796658355,ORD250716-0014,K001-0008
+ORD250716-0032,2025-7-16,13:43:58,방지(미경),010-3181-8148,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,59796658532,602501143120,L004-0023
+ORD250716-0032,2025-7-16,13:43:58,방지(미경),010-3181-8148,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),1,0,0,59796658532,602501143120,602501143120
+ORD250716-0032,2025-7-16,13:43:58,방지(미경),010-3181-8148,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,59796658532,602501143120,8809595040673
+ORD250716-0032,2025-7-16,13:43:58,방지(미경),010-3181-8148,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,59796658532,602501143120,8809595040697
+ORD250716-0032,2025-7-16,13:43:58,방지(미경),010-3181-8148,L001-0030,뷰티루틴 쇼핑백,1,0,0,59796658532,602501143120,L001-0030
+ORD250716-0032,2025-7-16,13:43:58,방지(미경),010-3181-8148,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,59796658532,602501143120,JGIFT-0010
+ORD250716-0032,2025-7-16,13:43:58,방지(미경),010-3181-8148,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,59796658532,602501143120,8809595040680
+ORD250716-0032,2025-7-16,13:43:58,방지(미경),010-3181-8148,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,59796658532,602501143120,K001-0007
+ORD250716-0038,2025-7-16,13:44:36,kse,02-3143-5555,L004-0031,Elixir Lifting Collagen Toner(엘릭시르 콜라겐 토너) 130ML,2,0,0,459800125072,ORD250716-0038,8809527486579
+ORD250716-0038,2025-7-16,13:44:36,kse,02-3143-5555,K001-0010,젤 3개 포장박스 (1호),1,0,0,459800125072,ORD250716-0038,K001-0010
+ORD250716-0026,2025-7-16,13:48:15,김진숙,0508-6860-1549,K001-0010,젤 3개 포장박스 (1호),1,0,0,459796658473,ORD250716-0026,K001-0010
+ORD250716-0026,2025-7-16,13:48:15,김진숙,0508-6860-1549,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459796658473,ORD250716-0026,8809595040017
+ORD250716-0025,2025-7-16,13:48:40,박화영,0508-6859-1439,K001-0010,젤 3개 포장박스 (1호),1,0,0,459796658462,ORD250716-0025,K001-0010
+ORD250716-0025,2025-7-16,13:48:40,박화영,0508-6859-1439,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459796658462,ORD250716-0025,8809595040017
+ORD250716-0023,2025-7-16,13:49:27,최정훈,010-4454-6185,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,459796658440,ORD250716-0023,L004-0023
+ORD250716-0023,2025-7-16,13:49:27,최정훈,010-4454-6185,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459796658440,ORD250716-0023,8809595040017
+ORD250716-0023,2025-7-16,13:49:27,최정훈,010-4454-6185,K001-0010,젤 3개 포장박스 (1호),1,0,0,459796658440,ORD250716-0023,K001-0010
+ORD250716-0022,2025-7-16,13:51:3,이지영 (포스코*(이지영),0502-2399-7098,K001-0022,가죽케이스 박스 (2호),1,0,0,459796658436,112506174000,K001-0022
+ORD250716-0022,2025-7-16,13:51:3,이지영 (포스코*(이지영),0502-2399-7098,P001-DS007A,DUALSONIC Pro Face CARTRIDGE 1Set,2,6000,0,459796658436,112506174000,112506204000/112506174000
+ORD250716-0027,2025-7-16,13:56:30,서형옥,0502-6233-7992,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459796658484,602503824110,8809595040628
+ORD250716-0027,2025-7-16,13:56:30,서형옥,0502-6233-7992,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459796658484,602503824110,L004-0023
+ORD250716-0027,2025-7-16,13:56:30,서형옥,0502-6233-7992,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,459796658484,602503824110,602503824110
+ORD250716-0027,2025-7-16,13:56:30,서형옥,0502-6233-7992,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459796658484,602503824110,K001-0008
+ORD250716-0027,2025-7-16,13:56:30,서형옥,0502-6233-7992,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459796658484,602503824110,8809595040635
+ORD250716-0027,2025-7-16,13:56:30,서형옥,0502-6233-7992,P001-0152,원형케이스 퍼플,1,0,0,459796658484,602503824110,8809595040512
+ORD250716-0027,2025-7-16,13:56:30,서형옥,0502-6233-7992,L001-0030,뷰티루틴 쇼핑백,1,0,0,459796658484,602503824110,L001-0030
+ORD250716-0028,2025-7-16,13:58:3,김은영,010-8516-1069,K001-0022,가죽케이스 박스 (2호),1,0,0,459796658495,ORD250716-0028,K001-0022
+ORD250716-0028,2025-7-16,13:58:3,김은영,010-8516-1069,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459796658495,ORD250716-0028,L004-0023
+ORD250716-0029,2025-7-16,13:58:49,손*희,0502-6297-2454,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,459796658506,ORD250716-0029,8809595040017
+ORD250716-0029,2025-7-16,13:58:49,손*희,0502-6297-2454,K001-0010,젤 3개 포장박스 (1호),1,0,0,459796658506,ORD250716-0029,K001-0010
+ORD250716-0030,2025-7-16,14:1:24,박용옥,010-6495-6644,JGIFT-0025,EMS Belt_Peach,1,0,0,459796658510,ORD250716-0030,8809595040734
+ORD250716-0030,2025-7-16,14:1:24,박용옥,010-6495-6644,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459796658510,ORD250716-0030,L001-0032
+ORD250716-0030,2025-7-16,14:1:24,박용옥,010-6495-6644,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459796658510,ORD250716-0030,K001-0008
+ORD250716-0042,2025-7-16,14:58:45,구영희,010-7907-2767,L001-0030,뷰티루틴 쇼핑백,1,0,0,692633279611,102505073100,L001-0030
+ORD250716-0042,2025-7-16,14:58:45,구영희,010-7907-2767,P001-DS001A,DUALSONIC Pro 1Set,1,6000,60000,692633279611,102505073100,102505073100
+ORD250716-0042,2025-7-16,14:58:45,구영희,010-7907-2767,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692633279611,102505073100,L004-0023
+ORD250716-0042,2025-7-16,14:58:45,구영희,010-7907-2767,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692633279611,102505073100,K001-0007
+ORD250716-0041,2025-7-16,15:1:7,박*현,050716205949,L001-0030,뷰티루틴 쇼핑백,1,0,0,692633279600,312507128100,L001-0030
+ORD250716-0041,2025-7-16,15:1:7,박*현,050716205949,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692633279600,312507128100,K001-0007
+ORD250716-0041,2025-7-16,15:1:7,박*현,050716205949,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,692633279600,312507128100,L004-0023
+ORD250716-0041,2025-7-16,15:1:7,박*현,050716205949,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,692633279600,312507128100,312507128100
+ORD250716-0044,2025-7-16,15:16:25,김현진,010-5449-9314,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692633279633,602503174130,K001-0007
+ORD250716-0044,2025-7-16,15:16:25,김현진,010-5449-9314,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,692633279633,602503174130,8809595040697
+ORD250716-0044,2025-7-16,15:16:25,김현진,010-5449-9314,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,692633279633,602503174130,8809595040673
+ORD250716-0044,2025-7-16,15:16:25,김현진,010-5449-9314,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,692633279633,602503174130,L004-0023
+ORD250716-0044,2025-7-16,15:16:25,김현진,010-5449-9314,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,692633279633,602503174130,602503174130
+ORD250716-0044,2025-7-16,15:16:25,김현진,010-5449-9314,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692633279633,602503174130,JGIFT-0010
+ORD250716-0044,2025-7-16,15:16:25,김현진,010-5449-9314,L001-0030,뷰티루틴 쇼핑백,1,0,0,692633279633,602503174130,L001-0030
+ORD250716-0044,2025-7-16,15:16:25,김현진,010-5449-9314,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,692633279633,602503174130,8809595040680
+ORD250716-0045,2025-7-16,16:12:31,김소희,010-4422-3003,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692634850035,ORD250716-0045,L001-0032
+ORD250716-0045,2025-7-16,16:12:31,김소희,010-4422-3003,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692634850035,ORD250716-0045,K001-0008
+ORD250716-0045,2025-7-16,16:12:31,김소희,010-4422-3003,JGIFT-0026,EMS Belt_Purple,1,0,0,692634850035,ORD250716-0045,8809595040741
+ORD250716-0046,2025-7-16,16:27:52,이지연,010-9136-2512,K001-0022,가죽케이스 박스 (2호),1,0,0,692627282884,602507342130,K001-0022
+ORD250716-0046,2025-7-16,16:27:52,이지연,010-9136-2512,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,692627282884,602507342130,602507342130
+ORD250716-0051,2025-7-16,17:7:6,조현준,010-3103-9337,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459802702575,402505149100,502506059100
+ORD250716-0051,2025-7-16,17:7:6,조현준,010-3103-9337,P001-DSA008,DUALSONIC Pro ALPHA BODY CARTRIDGE 1Set [BODY 30,000샷],1,30000,0,459802702575,402505149100,432504018000
+ORD250716-0051,2025-7-16,17:7:6,조현준,010-3103-9337,L001-0030,뷰티루틴 쇼핑백,2,0,0,459802702575,402505149100,L001-0030
+ORD250716-0051,2025-7-16,17:7:6,조현준,010-3103-9337,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),7,0,0,459802702575,402505149100,L004-0023
+ORD250716-0051,2025-7-16,17:7:6,조현준,010-3103-9337,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459802702575,402505149100,K001-0008
+ORD250716-0051,2025-7-16,17:7:6,조현준,010-3103-9337,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],1,40000,400000,459802702575,402505149100,402505149100
+ORD250716-0051,2025-7-16,17:7:6,조현준,010-3103-9337,P001-0153,사각 가죽케이스 퍼플,1,0,0,459802702575,402505149100,8809595040482
+ORD250716-0051,2025-7-16,17:7:6,조현준,010-3103-9337,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459802702575,402505149100,8809595040017
+ORD250716-0050,2025-7-16,17:8:1,이숙현,010-9694-1079,K001-0010,젤 3개 포장박스 (1호),1,0,0,692635462793,112506181000,K001-0010
+ORD250716-0050,2025-7-16,17:8:1,이숙현,010-9694-1079,P001-DS007A,DUALSONIC Pro Face CARTRIDGE 1Set,1,6000,0,692635462793,112506181000,112506181000
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-17.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-17.csv
new file mode 100644
index 0000000..22c759d
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-17.csv
@@ -0,0 +1,30 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250717-0003,2025-7-17,10:16:54,KSE,02-3143-5555,PF001-003,[BR] STICK JELLY (14 BAGS),1,0,0,459805008622,ORD250717-0003,8809595040659
+ORD250717-0003,2025-7-17,10:16:54,KSE,02-3143-5555,K001-0010,젤 3개 포장박스 (1호),1,0,0,459805008622,ORD250717-0003,K001-0010
+ORD250717-0001,2025-7-17,10:26:53,KSE,02-3143-5555,L004-0031,Elixir Lifting Collagen Toner(엘릭시르 콜라겐 토너) 130ML,3,0,0,459805008611,ORD250717-0001,8809527486579
+ORD250717-0001,2025-7-17,10:26:53,KSE,02-3143-5555,K001-0010,젤 3개 포장박스 (1호),1,0,0,459805008611,ORD250717-0001,K001-0010
+ORD250717-0026,2025-7-17,10:54:19,한계*,0503-6331-1608,K001-0010,젤 3개 포장박스 (1호),1,0,0,459806219832,ORD250717-0026,K001-0010
+ORD250717-0026,2025-7-17,10:54:19,한계*,0503-6331-1608,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,459806219832,ORD250717-0026,8809595040017
+ORD250717-0025,2025-7-17,10:56:30,정혜진,010-6638-3098,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459806219821,ORD250717-0025,8809595040017
+ORD250717-0025,2025-7-17,10:56:30,정혜진,010-6638-3098,K001-0010,젤 3개 포장박스 (1호),1,0,0,459806219821,ORD250717-0025,K001-0010
+ORD250717-0009,2025-7-17,10:59:56,박상*(신계향),0502-2392-9703,K001-0010,젤 3개 포장박스 (1호),1,0,0,459806219666,ORD250717-0009,K001-0010
+ORD250717-0009,2025-7-17,10:59:56,박상*(신계향),0502-2392-9703,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,459806219666,ORD250717-0009,L004-0023
+ORD250717-0008,2025-7-17,11:1:37,김태영,010-2376-7997,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459806219655,ORD250717-0008,L004-0023
+ORD250717-0008,2025-7-17,11:1:37,김태영,010-2376-7997,K001-0010,젤 3개 포장박스 (1호),1,0,0,459806219655,ORD250717-0008,K001-0010
+ORD250717-0011,2025-7-17,11:9:49,김*비,050716208264,L001-0030,뷰티루틴 쇼핑백,1,0,0,459806219681,312506612100,L001-0030
+ORD250717-0011,2025-7-17,11:9:49,김*비,050716208264,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459806219681,312506612100,K001-0007
+ORD250717-0011,2025-7-17,11:9:49,김*비,050716208264,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459806219681,312506612100,312506612100
+ORD250717-0011,2025-7-17,11:9:49,김*비,050716208264,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459806219681,312506612100,L004-0023
+ORD250717-0012,2025-7-17,11:15:8,안현정,01054377049,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459806219692,602503608110,L004-0023
+ORD250717-0012,2025-7-17,11:15:8,안현정,01054377049,L001-0030,뷰티루틴 쇼핑백,1,0,0,459806219692,602503608110,L001-0030
+ORD250717-0012,2025-7-17,11:15:8,안현정,01054377049,P001-0152,원형케이스 퍼플,1,0,0,459806219692,602503608110,8809595040512
+ORD250717-0012,2025-7-17,11:15:8,안현정,01054377049,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,459806219692,602503608110,602503608110
+ORD250717-0012,2025-7-17,11:15:8,안현정,01054377049,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459806219692,602503608110,K001-0008
+ORD250717-0033,2025-7-17,14:35:15,이모란,01023788407,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,692652231212,602502863110,602502863110
+ORD250717-0033,2025-7-17,14:35:15,이모란,01023788407,K001-0041,단품 1SET 박스 (3호),1,0,0,692652231212,602502863110,K001-0041
+ORD250717-0033,2025-7-17,14:35:15,이모란,01023788407,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,692652231212,602502863110,8809595040017
+ORD250717-0033,2025-7-17,14:35:15,이모란,01023788407,L001-0030,뷰티루틴 쇼핑백,1,0,0,692652231212,602502863110,L001-0030
+ORD250717-0040,2025-7-17,16:34:37,고객,010-7334-5214,K001-0010,젤 3개 포장박스 (1호),1,0,0,692655588364,112501009010,K001-0010
+ORD250717-0040,2025-7-17,16:34:37,고객,010-7334-5214,P001-DS150A,DUALSONIC BLACK Pro FACE CARTRIDGE 1Set 10,000샷,1,10000,0,692655588364,112501009010,112501009010
+ORD250717-0038,2025-7-17,16:36:6,용서*,0503-6333-3630,L004-0033,Elixir Lifting Collagen Cream(엘릭시르 콜라겐 크림) 50ML,1,0,0,692654951456,ORD250717-0038,8809527486593
+ORD250717-0038,2025-7-17,16:36:6,용서*,0503-6333-3630,K001-0010,젤 3개 포장박스 (1호),1,0,0,692654951456,ORD250717-0038,K001-0010
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-18.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-18.csv
new file mode 100644
index 0000000..0900efb
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-18.csv
@@ -0,0 +1,83 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250718-0033,2025-7-18,10:49:21,이은영,0504-2107-7320,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459814668950,ORD250718-0033,L004-0023
+ORD250718-0033,2025-7-18,10:49:21,이은영,0504-2107-7320,K001-0022,가죽케이스 박스 (2호),1,0,0,459814668950,ORD250718-0033,K001-0022
+ORD250718-0032,2025-7-18,10:50:52,김중한,010-6621-3040,P001-0111,DUALSONIC DUST BAG 1BOX,1,0,0,459814668946,ORD250718-0032,8809595040338
+ORD250718-0032,2025-7-18,10:50:52,김중한,010-6621-3040,K001-0022,가죽케이스 박스 (2호),1,0,0,459814668946,ORD250718-0032,K001-0022
+ORD250718-0031,2025-7-18,10:53:44,김송희,01088903191,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459814668935,ORD250718-0031,K001-0008
+ORD250718-0031,2025-7-18,10:53:44,김송희,01088903191,JGIFT-0025,EMS Belt_Peach,1,0,0,459814668935,ORD250718-0031,8809595040734
+ORD250718-0031,2025-7-18,10:53:44,김송희,01088903191,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459814668935,ORD250718-0031,L001-0032
+ORD250718-0030,2025-7-18,10:55:19,박보경,01049305703,JGIFT-0025,EMS Belt_Peach,1,0,0,459814668924,ORD250718-0030,8809595040734
+ORD250718-0030,2025-7-18,10:55:19,박보경,01049305703,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459814668924,ORD250718-0030,L001-0032
+ORD250718-0030,2025-7-18,10:55:19,박보경,01049305703,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459814668924,ORD250718-0030,K001-0008
+ORD250718-0029,2025-7-18,10:56:53,김수정,01056060093,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459814668913,ORD250718-0029,L001-0032
+ORD250718-0029,2025-7-18,10:56:53,김수정,01056060093,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459814668913,ORD250718-0029,K001-0008
+ORD250718-0029,2025-7-18,10:56:53,김수정,01056060093,JGIFT-0024,EMS Belt_Mint,1,0,0,459814668913,ORD250718-0029,8809595040758
+ORD250718-0028,2025-7-18,10:58:59,김희경,01045386947,JGIFT-0024,EMS Belt_Mint,1,0,0,459814668902,ORD250718-0028,8809595040758
+ORD250718-0028,2025-7-18,10:58:59,김희경,01045386947,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459814668902,ORD250718-0028,L001-0032
+ORD250718-0028,2025-7-18,10:58:59,김희경,01045386947,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459814668902,ORD250718-0028,K001-0008
+ORD250718-0027,2025-7-18,11:1:44,신진용,01071583157,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459814668891,ORD250718-0027,K001-0008
+ORD250718-0027,2025-7-18,11:1:44,신진용,01071583157,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459814668891,ORD250718-0027,L001-0032
+ORD250718-0027,2025-7-18,11:1:44,신진용,01071583157,JGIFT-0024,EMS Belt_Mint,1,0,0,459814668891,ORD250718-0027,8809595040758
+ORD250718-0026,2025-7-18,11:3:23,김현정,01056031425,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459814668880,ORD250718-0026,K001-0008
+ORD250718-0026,2025-7-18,11:3:23,김현정,01056031425,JGIFT-0026,EMS Belt_Purple,1,0,0,459814668880,ORD250718-0026,8809595040741
+ORD250718-0026,2025-7-18,11:3:23,김현정,01056031425,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459814668880,ORD250718-0026,L001-0032
+ORD250718-0025,2025-7-18,11:5:5,김성천,01090415385,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459814668876,ORD250718-0025,K001-0008
+ORD250718-0025,2025-7-18,11:5:5,김성천,01090415385,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459814668876,ORD250718-0025,L001-0032
+ORD250718-0025,2025-7-18,11:5:5,김성천,01090415385,JGIFT-0024,EMS Belt_Mint,1,0,0,459814668876,ORD250718-0025,8809595040758
+ORD250718-0018,2025-7-18,11:9:59,주진규,050372097055,L001-0030,뷰티루틴 쇼핑백,1,0,0,459814668806,312506948100,L001-0030
+ORD250718-0018,2025-7-18,11:9:59,주진규,050372097055,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459814668806,312506948100,312506948100
+ORD250718-0018,2025-7-18,11:9:59,주진규,050372097055,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459814668806,312506948100,K001-0007
+ORD250718-0018,2025-7-18,11:9:59,주진규,050372097055,L004-0036,Elixir Aqua Hyal Cream(엘릭시르 하이알 크림) 50ML,1,0,0,459814668806,312506948100,8809527486562
+ORD250718-0018,2025-7-18,11:9:59,주진규,050372097055,L004-0035,Elixir Aqua Hyal Ampoule(엘릭시르 하이알 앰플) 35ML,1,0,0,459814668806,312506948100,8809527486555
+ORD250718-0018,2025-7-18,11:9:59,주진규,050372097055,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459814668806,312506948100,8809595040017
+ORD250718-0018,2025-7-18,11:9:59,주진규,050372097055,L004-0034,Elixir Aqua Hyal Toner(엘릭시르 하이알 토너) 130ML,1,0,0,459814668806,312506948100,8809527486548
+ORD250718-0017,2025-7-18,11:14:31,안유*,0503-6329-9424,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459814668795,602412517131,JGIFT-0010
+ORD250718-0017,2025-7-18,11:14:31,안유*,0503-6329-9424,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,459814668795,602412517131,8809595040017
+ORD250718-0017,2025-7-18,11:14:31,안유*,0503-6329-9424,L001-0030,뷰티루틴 쇼핑백,1,0,0,459814668795,602412517131,L001-0030
+ORD250718-0017,2025-7-18,11:14:31,안유*,0503-6329-9424,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459814668795,602412517131,8809750465013
+ORD250718-0017,2025-7-18,11:14:31,안유*,0503-6329-9424,P001-0152,원형케이스 퍼플,1,0,0,459814668795,602412517131,8809595040512
+ORD250718-0017,2025-7-18,11:14:31,안유*,0503-6329-9424,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459814668795,602412517131,L004-0023
+ORD250718-0017,2025-7-18,11:14:31,안유*,0503-6329-9424,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459814668795,602412517131,602412517131
+ORD250718-0017,2025-7-18,11:14:31,안유*,0503-6329-9424,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459814668795,602412517131,K001-0008
+ORD250718-0015,2025-7-18,11:19:44,김정임,010-3289-7542,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459814668773,312506394100,8809595040628
+ORD250718-0015,2025-7-18,11:19:44,김정임,010-3289-7542,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459814668773,312506394100,8809595040635
+ORD250718-0015,2025-7-18,11:19:44,김정임,010-3289-7542,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459814668773,312506394100,K001-0007
+ORD250718-0015,2025-7-18,11:19:44,김정임,010-3289-7542,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,459814668773,312506394100,8809595040017
+ORD250718-0015,2025-7-18,11:19:44,김정임,010-3289-7542,L001-0030,뷰티루틴 쇼핑백,1,0,0,459814668773,312506394100,L001-0030
+ORD250718-0015,2025-7-18,11:19:44,김정임,010-3289-7542,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459814668773,312506394100,312506394100
+ORD250718-0046,2025-7-18,11:22:41,박동주,010-9891-8839,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),7,0,0,573460581993,ORD250718-0046,8809595040628
+ORD250718-0048,2025-7-18,11:25:6,김선영,010-5237-5302,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),7,0,0,573460582026,ORD250718-0048,8809595040628
+ORD250718-0042,2025-7-18,11:26:30,안숙이,010-7748-1236,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),7,0,0,573460577023,ORD250718-0042,8809595040628
+ORD250718-0010,2025-7-18,11:32:47,김혜란 매니저,010-7997-8384,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),10,0,0,L004-0023,602503231130,602503282130/602503320130/602503402130/602503319130/602503337130/602503341130/602503292130/602503264130/602503261130/602503231130
+ORD250718-0053,2025-7-18,15:13:39,김은영,010-2515-2418,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692671472731,312506388101,L001-0032
+ORD250718-0053,2025-7-18,15:13:39,김은영,010-2515-2418,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,692671472731,312506388101,312506388101
+ORD250718-0053,2025-7-18,15:13:39,김은영,010-2515-2418,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692671472731,312506388101,8809750465013
+ORD250718-0053,2025-7-18,15:13:39,김은영,010-2515-2418,P001-0156,우디케이스,1,0,0,692671472731,312506388101,8809595040598
+ORD250718-0053,2025-7-18,15:13:39,김은영,010-2515-2418,L001-0030,뷰티루틴 쇼핑백,1,0,0,692671472731,312506388101,L001-0030
+ORD250718-0053,2025-7-18,15:13:39,김은영,010-2515-2418,JGIFT-0026,EMS Belt_Purple,1,0,0,692671472731,312506388101,8809595040741
+ORD250718-0053,2025-7-18,15:13:39,김은영,010-2515-2418,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692671472731,312506388101,K001-0008
+ORD250718-0053,2025-7-18,15:13:39,김은영,010-2515-2418,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),6,0,0,692671472731,312506388101,L004-0023
+ORD250718-0053,2025-7-18,15:13:39,김은영,010-2515-2418,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,692671472731,312506388101,8809595040628
+ORD250718-0053,2025-7-18,15:13:39,김은영,010-2515-2418,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,692671472731,312506388101,8809595040635
+ORD250718-0008,2025-7-18,16:26:29,양은영 매니저,010-4112-1709,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),20,0,0,459814794703,ORD250718-0008,L004-0023
+ORD250718-0009,2025-7-18,16:32:38,양은영 매니저,010-4112-1709,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,20,0,0,459814794714,ORD250718-0009,8809750465013
+ORD250718-0060,2025-7-18,16:35:27,이미경,0502-6345-3829,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692673161783,ORD250718-0060,JGIFT-0010
+ORD250718-0060,2025-7-18,16:35:27,이미경,0502-6345-3829,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692673161783,ORD250718-0060,L004-0023
+ORD250718-0060,2025-7-18,16:35:27,이미경,0502-6345-3829,K001-0041,단품 1SET 박스 (3호),1,0,0,692673161783,ORD250718-0060,K001-0041
+ORD250718-0063,2025-7-18,16:38:30,김진선,010-8840-0143,L004-0034,Elixir Aqua Hyal Toner(엘릭시르 하이알 토너) 130ML,1,0,0,692673629206,312506397101,8809527486548
+ORD250718-0063,2025-7-18,16:38:30,김진선,010-8840-0143,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692673629206,312506397101,K001-0007
+ORD250718-0063,2025-7-18,16:38:30,김진선,010-8840-0143,L001-0030,뷰티루틴 쇼핑백,1,0,0,692673629206,312506397101,L001-0030
+ORD250718-0063,2025-7-18,16:38:30,김진선,010-8840-0143,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,692673629206,312506397101,312506397101
+ORD250718-0063,2025-7-18,16:38:30,김진선,010-8840-0143,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,692673629206,312506397101,L004-0023
+ORD250718-0063,2025-7-18,16:38:30,김진선,010-8840-0143,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692673629206,312506397101,8809750465013
+ORD250718-0066,2025-7-18,16:46:38,박민정,010-9967-4785,JGIFT-0026,EMS Belt_Purple,1,0,0,459819550503,ORD250718-0066,8809595040741
+ORD250718-0065,2025-7-18,16:47:6,유해인,010-4051-6703,JGIFT-0024,EMS Belt_Mint,1,0,0,459819550492,ORD250718-0065,8809595040758
+ORD250718-0064,2025-7-18,16:47:38,최진희 ,010-3136-2872,JGIFT-0025,EMS Belt_Peach,1,0,0,459819550481,ORD250718-0064,8809595040734
+ORD250718-0072,2025-7-18,16:48:55,방미정 ,010-2808-0068,K001-0022,가죽케이스 박스 (2호),1,0,0,459819550562,ORD250718-0072,K001-0022
+ORD250718-0072,2025-7-18,16:48:55,방미정 ,010-2808-0068,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459819550562,ORD250718-0072,8809595040635
+ORD250718-0073,2025-7-18,16:49:53,박은주 ,010-8817-4872 ,K001-0022,가죽케이스 박스 (2호),1,0,0,459819550573,ORD250718-0073,K001-0022
+ORD250718-0073,2025-7-18,16:49:53,박은주 ,010-8817-4872 ,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459819550573,ORD250718-0073,8809595040635
+ORD250718-0074,2025-7-18,16:50:50,최재희,010-6556-2440,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459819550584,ORD250718-0074,8809595040635
+ORD250718-0074,2025-7-18,16:50:50,최재희,010-6556-2440,K001-0022,가죽케이스 박스 (2호),1,0,0,459819550584,ORD250718-0074,K001-0022
+ORD250718-0075,2025-7-18,16:51:49,정푸름 ,010-9913-6435,K001-0022,가죽케이스 박스 (2호),1,0,0,459819550595,ORD250718-0075,K001-0022
+ORD250718-0075,2025-7-18,16:51:49,정푸름 ,010-9913-6435,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459819550595,ORD250718-0075,8809595040635
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-2.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-2.csv
new file mode 100644
index 0000000..c50f2fc
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-2.csv
@@ -0,0 +1,45 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250702-0070,2025-7-2,11:30:38,주식회사 컬리,010-5820-2746,L004-0030,Elixir Lifting Collagen Mask(엘릭시르 콜라겐 마스크팩) 24ML 10EA,3,0,0,459682335081,ORD250702-0070,8809750465037
+ORD250702-0070,2025-7-2,11:30:38,주식회사 컬리,010-5820-2746,K001-0022,가죽케이스 박스 (2호),1,0,0,459682335081,ORD250702-0070,K001-0022
+ORD250702-0069,2025-7-2,11:34:35,주식회사 컬리,010-5820-8265,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459682335070,ORD250702-0069,K001-0020
+ORD250702-0069,2025-7-2,11:34:35,주식회사 컬리,010-5820-8265,L004-0030,Elixir Lifting Collagen Mask(엘릭시르 콜라겐 마스크팩) 24ML 10EA,8,0,0,459682335070,ORD250702-0069,8809750465037
+ORD250702-0034,2025-7-2,11:44:14,이나,010-9367-7999,K001-0010,젤 3개 포장박스 (1호),1,0,0,459681852803,ORD250702-0034,K001-0010
+ORD250702-0034,2025-7-2,11:44:14,이나,010-9367-7999,P001-0108,C-Type 충전기 Assy,1,0,0,459681852803,ORD250702-0034,8809595040246
+ORD250702-0068,2025-7-2,11:46:31,박해결,01076719519,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459682157572,602503094130,602503094130
+ORD250702-0068,2025-7-2,11:46:31,박해결,01076719519,K001-0041,단품 1SET 박스 (3호),1,0,0,459682157572,602503094130,K001-0041
+ORD250702-0068,2025-7-2,11:46:31,박해결,01076719519,L001-0030,뷰티루틴 쇼핑백,1,0,0,459682157572,602503094130,L001-0030
+ORD250702-0067,2025-7-2,11:48:33,성지현,0504-2175-0690,K001-0022,가죽케이스 박스 (2호),1,0,0,459682157561,ORD250702-0067,K001-0022
+ORD250702-0067,2025-7-2,11:48:33,성지현,0504-2175-0690,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459682157561,ORD250702-0067,8809595040017
+ORD250702-0066,2025-7-2,11:50:51,김현주,010-9305-8073,K001-0010,젤 3개 포장박스 (1호),1,0,0,459682157550,ORD250702-0066,K001-0010
+ORD250702-0066,2025-7-2,11:50:51,김현주,010-9305-8073,L004-0032,Elixir Lifting Collagen Ampoule(엘릭시르 콜라겐 앰플) 35ML,1,0,0,459682157550,ORD250702-0066,8809527486586
+ORD250702-0063,2025-7-2,11:51:40,장재원,0503-6328-8236,K001-0010,젤 3개 포장박스 (1호),1,0,0,459682157524,ORD250702-0063,K001-0010
+ORD250702-0063,2025-7-2,11:51:40,장재원,0503-6328-8236,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,459682157524,ORD250702-0063,L004-0023
+ORD250702-0062,2025-7-2,11:54:45,김가영,010-5137-5798,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),1,0,0,459682157513,602502515120,602502515120
+ORD250702-0062,2025-7-2,11:54:45,김가영,010-5137-5798,L001-0030,뷰티루틴 쇼핑백,1,0,0,459682157513,602502515120,L001-0030
+ORD250702-0062,2025-7-2,11:54:45,김가영,010-5137-5798,K001-0041,단품 1SET 박스 (3호),1,0,0,459682157513,602502515120,K001-0041
+ORD250702-0078,2025-7-2,13:28:56,김여름,010-4677-2713,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459683121096,502506012100,L004-0023
+ORD250702-0078,2025-7-2,13:28:56,김여름,010-4677-2713,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459683121096,502506012100,K001-0007
+ORD250702-0078,2025-7-2,13:28:56,김여름,010-4677-2713,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459683121096,502506012100,502506012100
+ORD250702-0078,2025-7-2,13:28:56,김여름,010-4677-2713,L001-0030,뷰티루틴 쇼핑백,1,0,0,459683121096,502506012100,L001-0030
+ORD250702-0078,2025-7-2,13:28:56,김여름,010-4677-2713,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459683121096,502506012100,8809595040635
+ORD250702-0078,2025-7-2,13:28:56,김여름,010-4677-2713,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459683121096,502506012100,8809595040628
+ORD250702-0077,2025-7-2,13:30:49,윤성원 ,010-9133-4422,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459683121085,502506032100,K001-0007
+ORD250702-0077,2025-7-2,13:30:49,윤성원 ,010-9133-4422,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459683121085,502506032100,8809595040628
+ORD250702-0077,2025-7-2,13:30:49,윤성원 ,010-9133-4422,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459683121085,502506032100,502506032100
+ORD250702-0077,2025-7-2,13:30:49,윤성원 ,010-9133-4422,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459683121085,502506032100,L004-0023
+ORD250702-0077,2025-7-2,13:30:49,윤성원 ,010-9133-4422,L001-0030,뷰티루틴 쇼핑백,1,0,0,459683121085,502506032100,L001-0030
+ORD250702-0077,2025-7-2,13:30:49,윤성원 ,010-9133-4422,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459683121085,502506032100,8809595040635
+ORD250702-0032,2025-7-2,13:34:5,쿠팡 인천14,070-7824-4674,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,692338290533,ORD250702-0032,8809595040017
+ORD250702-0033,2025-7-2,13:46:27,쿠팡 안산2,070-4754-8771,P001-MM001K,[MAXIMUM_V2_YELLOW] FULL PACK (KR),1,0,0,692348403665,302506068150,302506068150
+ORD250702-0033,2025-7-2,13:46:27,쿠팡 안산2,070-4754-8771,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,692348403665,302506068150,L004-0023
+ORD250702-0033,2025-7-2,13:46:27,쿠팡 안산2,070-4754-8771,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,692348403665,302506068150,K001-0020
+ORD250702-0033,2025-7-2,13:46:27,쿠팡 안산2,070-4754-8771,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,692348403665,302506068150,8809595040017
+ORD250702-0061,2025-7-2,13:53:12,이정원,010-8909-5844,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459682157502,502506306100,K001-0008
+ORD250702-0061,2025-7-2,13:53:12,이정원,010-8909-5844,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),1,0,0,459682157502,502506306100,602502640120
+ORD250702-0061,2025-7-2,13:53:12,이정원,010-8909-5844,L001-0030,뷰티루틴 쇼핑백,2,0,0,459682157502,502506306100,L001-0030
+ORD250702-0061,2025-7-2,13:53:12,이정원,010-8909-5844,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459682157502,502506306100,502506306100
+ORD250702-0113,2025-7-2,17:39:49,김가현,010-3538-3371,K001-0010,젤 3개 포장박스 (1호),1,0,0,692373367452,ORD250702-0113,K001-0010
+ORD250702-0113,2025-7-2,17:39:49,김가현,010-3538-3371,P001-0108,C-Type 충전기 Assy,1,0,0,692373367452,ORD250702-0113,8809595040246
+ORD250702-0087,2025-7-2,17:49:7,김현지메니저,064-710-1701 ,P001-0152,원형케이스 퍼플,10,0,0,459686729736,ORD250702-0087,8809595040512
+ORD250702-0106,2025-7-2,18:13:51,박계화,010-6414-5129,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,692387597542,ORD250702-0106,8809595040017
+ORD250702-0106,2025-7-2,18:13:51,박계화,010-6414-5129,K001-0010,젤 3개 포장박스 (1호),1,0,0,692387597542,ORD250702-0106,K001-0010
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-21.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-21.csv
new file mode 100644
index 0000000..ba13511
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-21.csv
@@ -0,0 +1,168 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250721-0004,2025-7-21,10:13:30,쿠팡 고양1_1,070-7730-9778,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,692673934771,ORD250721-0004,8809595040017
+ORD250721-0006,2025-7-21,10:18:15,쿠팡 인천14,070-7824-4674,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,692673934793,ORD250721-0006,8809595040017
+ORD250721-0007,2025-7-21,10:21:2,쿠팡 양산1,070-4452-8234,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,692673934804,ORD250721-0007,8809595040017
+ORD250721-0005,2025-7-21,10:23:48,쿠팡 고양1_2,070-7730-9778,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,692673934782,ORD250721-0005,8809595040017
+ORD250721-0096,2025-7-21,11:27:18,이소영,010-8040-0204,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459829559711,402505058100,8809750465013
+ORD250721-0096,2025-7-21,11:27:18,이소영,010-8040-0204,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],1,40000,400000,459829559711,402505058100,402505058100
+ORD250721-0096,2025-7-21,11:27:18,이소영,010-8040-0204,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829559711,402505058100,K001-0008
+ORD250721-0096,2025-7-21,11:27:18,이소영,010-8040-0204,JGIFT-0024,EMS Belt_Mint,1,0,0,459829559711,402505058100,8809595040758
+ORD250721-0096,2025-7-21,11:27:18,이소영,010-8040-0204,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,459829559711,402505058100,8809595040635
+ORD250721-0096,2025-7-21,11:27:18,이소영,010-8040-0204,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),8,0,0,459829559711,402505058100,L004-0023
+ORD250721-0096,2025-7-21,11:27:18,이소영,010-8040-0204,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,459829559711,402505058100,8809595040628
+ORD250721-0096,2025-7-21,11:27:18,이소영,010-8040-0204,L001-0030,뷰티루틴 쇼핑백,1,0,0,459829559711,402505058100,L001-0030
+ORD250721-0096,2025-7-21,11:27:18,이소영,010-8040-0204,P001-0156,우디케이스,1,0,0,459829559711,402505058100,8809595040598
+ORD250721-0095,2025-7-21,11:35:3,최한승,010-3144-2264,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),8,0,0,459829559700,402505147100,L004-0023
+ORD250721-0095,2025-7-21,11:35:3,최한승,010-3144-2264,P001-0156,우디케이스,1,0,0,459829559700,402505147100,8809595040598
+ORD250721-0095,2025-7-21,11:35:3,최한승,010-3144-2264,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,459829559700,402505147100,8809595040635
+ORD250721-0095,2025-7-21,11:35:3,최한승,010-3144-2264,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,459829559700,402505147100,8809595040628
+ORD250721-0095,2025-7-21,11:35:3,최한승,010-3144-2264,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],1,40000,400000,459829559700,402505147100,402505147100
+ORD250721-0095,2025-7-21,11:35:3,최한승,010-3144-2264,L001-0030,뷰티루틴 쇼핑백,1,0,0,459829559700,402505147100,L001-0030
+ORD250721-0095,2025-7-21,11:35:3,최한승,010-3144-2264,JGIFT-0024,EMS Belt_Mint,1,0,0,459829559700,402505147100,8809595040758
+ORD250721-0095,2025-7-21,11:35:3,최한승,010-3144-2264,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829559700,402505147100,K001-0008
+ORD250721-0095,2025-7-21,11:35:3,최한승,010-3144-2264,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459829559700,402505147100,8809750465013
+ORD250721-0094,2025-7-21,11:40:55,SUN HSIEN CHUNG,010-3334-9981,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829559696,102505093100,K001-0008
+ORD250721-0094,2025-7-21,11:40:55,SUN HSIEN CHUNG,010-3334-9981,L001-0030,뷰티루틴 쇼핑백,1,0,0,459829559696,102505093100,L001-0030
+ORD250721-0094,2025-7-21,11:40:55,SUN HSIEN CHUNG,010-3334-9981,L004-0001,DUALSONIC Blooming Moisture Gel,12,0,0,459829559696,102505093100,8809595040017
+ORD250721-0094,2025-7-21,11:40:55,SUN HSIEN CHUNG,010-3334-9981,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459829559696,102505093100,8809595040635
+ORD250721-0094,2025-7-21,11:40:55,SUN HSIEN CHUNG,010-3334-9981,P001-DS0036A,DUALSONIC Pro 1Set 완제품 (KR)[Face 12,000샷, Eye 120,000 샷],1,12000,120000,459829559696,102505093100,102505093100
+ORD250721-0094,2025-7-21,11:40:55,SUN HSIEN CHUNG,010-3334-9981,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,459829559696,102505093100,8809750465013
+ORD250721-0094,2025-7-21,11:40:55,SUN HSIEN CHUNG,010-3334-9981,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459829559696,102505093100,8809595040628
+ORD250721-0094,2025-7-21,11:40:55,SUN HSIEN CHUNG,010-3334-9981,L004-0030,Elixir Lifting Collagen Mask(엘릭시르 콜라겐 마스크팩) 24ML 10EA,2,0,0,459829559696,102505093100,8809750465037
+ORD250721-0093,2025-7-21,11:42:25,김*식,0502-6246-8380,K001-0022,가죽케이스 박스 (2호),1,0,0,459829559685,ORD250721-0093,K001-0022
+ORD250721-0093,2025-7-21,11:42:25,김*식,0502-6246-8380,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459829559685,ORD250721-0093,L004-0023
+ORD250721-0092,2025-7-21,11:43:39,이윤제,010-3976-8404,K001-0010,젤 3개 포장박스 (1호),1,0,0,459829559674,ORD250721-0092,K001-0010
+ORD250721-0092,2025-7-21,11:43:39,이윤제,010-3976-8404,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459829559674,ORD250721-0092,L004-0023
+ORD250721-0091,2025-7-21,11:49:2,정민영,010-9097-1885,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,59829559663,602501228133,JGIFT-0010
+ORD250721-0091,2025-7-21,11:49:2,정민영,010-9097-1885,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,59829559663,602501228133,K001-0007
+ORD250721-0091,2025-7-21,11:49:2,정민영,010-9097-1885,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,59829559663,602501228133,8809595040673
+ORD250721-0091,2025-7-21,11:49:2,정민영,010-9097-1885,L001-0030,뷰티루틴 쇼핑백,1,0,0,59829559663,602501228133,L001-0030
+ORD250721-0091,2025-7-21,11:49:2,정민영,010-9097-1885,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,59829559663,602501228133,602501228133
+ORD250721-0091,2025-7-21,11:49:2,정민영,010-9097-1885,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,59829559663,602501228133,8809595040680
+ORD250721-0091,2025-7-21,11:49:2,정민영,010-9097-1885,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,59829559663,602501228133,L004-0023
+ORD250721-0091,2025-7-21,11:49:2,정민영,010-9097-1885,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,59829559663,602501228133,8809595040697
+ORD250721-0090,2025-7-21,11:52:27,박순희,010-6218-5634,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459829559652,312505595180,L004-0023
+ORD250721-0090,2025-7-21,11:52:27,박순희,010-6218-5634,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),1,0,0,459829559652,312505595180,8809595040680
+ORD250721-0090,2025-7-21,11:52:27,박순희,010-6218-5634,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459829559652,312505595180,K001-0007
+ORD250721-0090,2025-7-21,11:52:27,박순희,010-6218-5634,L001-0030,뷰티루틴 쇼핑백,1,0,0,459829559652,312505595180,L001-0030
+ORD250721-0090,2025-7-21,11:52:27,박순희,010-6218-5634,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459829559652,312505595180,JGIFT-0010
+ORD250721-0090,2025-7-21,11:52:27,박순희,010-6218-5634,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),1,0,0,459829559652,312505595180,312505595180
+ORD250721-0090,2025-7-21,11:52:27,박순희,010-6218-5634,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459829559652,312505595180,8809595040697
+ORD250721-0090,2025-7-21,11:52:27,박순희,010-6218-5634,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),1,0,0,459829559652,312505595180,8809595040673
+ORD250721-0089,2025-7-21,11:54:34,최미향,01063617573,K001-0041,단품 1SET 박스 (3호),1,0,0,459829559641,602501117131,K001-0041
+ORD250721-0089,2025-7-21,11:54:34,최미향,01063617573,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459829559641,602501117131,602501117131
+ORD250721-0089,2025-7-21,11:54:34,최미향,01063617573,L001-0030,뷰티루틴 쇼핑백,1,0,0,459829559641,602501117131,L001-0030
+ORD250721-0088,2025-7-21,11:57:42,손보경,010-9711-4169,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459829559630,602501987131,L004-0023
+ORD250721-0088,2025-7-21,11:57:42,손보경,010-9711-4169,L001-0030,뷰티루틴 쇼핑백,1,0,0,459829559630,602501987131,L001-0030
+ORD250721-0088,2025-7-21,11:57:42,손보경,010-9711-4169,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459829559630,602501987131,8809595040697
+ORD250721-0088,2025-7-21,11:57:42,손보경,010-9711-4169,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459829559630,602501987131,602501987131
+ORD250721-0088,2025-7-21,11:57:42,손보경,010-9711-4169,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459829559630,602501987131,8809750465013
+ORD250721-0088,2025-7-21,11:57:42,손보경,010-9711-4169,P001-0152,원형케이스 퍼플,1,0,0,459829559630,602501987131,8809595040512
+ORD250721-0088,2025-7-21,11:57:42,손보경,010-9711-4169,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829559630,602501987131,K001-0008
+ORD250721-0087,2025-7-21,13:3:27,전지은,010-3049-1857,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459829559626,602501159132,L004-0023
+ORD250721-0087,2025-7-21,13:3:27,전지은,010-3049-1857,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459829559626,602501159132,602501159132
+ORD250721-0087,2025-7-21,13:3:27,전지은,010-3049-1857,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459829559626,602501159132,8809595040697
+ORD250721-0087,2025-7-21,13:3:27,전지은,010-3049-1857,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459829559626,602501159132,8809750465013
+ORD250721-0087,2025-7-21,13:3:27,전지은,010-3049-1857,P001-0152,원형케이스 퍼플,1,0,0,459829559626,602501159132,8809595040512
+ORD250721-0087,2025-7-21,13:3:27,전지은,010-3049-1857,L001-0030,뷰티루틴 쇼핑백,1,0,0,459829559626,602501159132,L001-0030
+ORD250721-0087,2025-7-21,13:3:27,전지은,010-3049-1857,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829559626,602501159132,K001-0008
+ORD250721-0086,2025-7-21,13:6:46,유진주,010-7578-1077,P001-0152,원형케이스 퍼플,1,0,0,459829559615,602501931130,8809595040512
+ORD250721-0086,2025-7-21,13:6:46,유진주,010-7578-1077,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459829559615,602501931130,8809750465013
+ORD250721-0086,2025-7-21,13:6:46,유진주,010-7578-1077,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459829559615,602501931130,L004-0023
+ORD250721-0086,2025-7-21,13:6:46,유진주,010-7578-1077,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459829559615,602501931130,602501931130
+ORD250721-0086,2025-7-21,13:6:46,유진주,010-7578-1077,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459829559615,602501931130,8809595040697
+ORD250721-0086,2025-7-21,13:6:46,유진주,010-7578-1077,L001-0030,뷰티루틴 쇼핑백,1,0,0,459829559615,602501931130,L001-0030
+ORD250721-0086,2025-7-21,13:6:46,유진주,010-7578-1077,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829559615,602501931130,K001-0008
+ORD250721-0085,2025-7-21,13:9:47,윤새미,010-8343-5243,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459829559604,602501171133,8809750465013
+ORD250721-0085,2025-7-21,13:9:47,윤새미,010-8343-5243,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459829559604,602501171133,L004-0023
+ORD250721-0085,2025-7-21,13:9:47,윤새미,010-8343-5243,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459829559604,602501171133,602501171133
+ORD250721-0085,2025-7-21,13:9:47,윤새미,010-8343-5243,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829559604,602501171133,K001-0008
+ORD250721-0085,2025-7-21,13:9:47,윤새미,010-8343-5243,L001-0030,뷰티루틴 쇼핑백,1,0,0,459829559604,602501171133,L001-0030
+ORD250721-0085,2025-7-21,13:9:47,윤새미,010-8343-5243,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459829559604,602501171133,8809595040697
+ORD250721-0085,2025-7-21,13:9:47,윤새미,010-8343-5243,P001-0152,원형케이스 퍼플,1,0,0,459829559604,602501171133,8809595040512
+ORD250721-0099,2025-7-21,13:18:33,오하늘,0508-6814-0845,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459829558860,ORD250721-0099,L001-0032
+ORD250721-0099,2025-7-21,13:18:33,오하늘,0508-6814-0845,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829558860,ORD250721-0099,K001-0008
+ORD250721-0099,2025-7-21,13:18:33,오하늘,0508-6814-0845,JGIFT-0026,EMS Belt_Purple,1,0,0,459829558860,ORD250721-0099,8809595040741
+ORD250721-0098,2025-7-21,13:19:55,최민관,010-9777-8729,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459829558856,ORD250721-0098,L001-0032
+ORD250721-0098,2025-7-21,13:19:55,최민관,010-9777-8729,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829558856,ORD250721-0098,K001-0008
+ORD250721-0098,2025-7-21,13:19:55,최민관,010-9777-8729,JGIFT-0025,EMS Belt_Peach,1,0,0,459829558856,ORD250721-0098,8809595040734
+ORD250721-0100,2025-7-21,13:21:28,송은정,0508-6812-6824,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459829558871,ORD250721-0100,L001-0032
+ORD250721-0100,2025-7-21,13:21:28,송은정,0508-6812-6824,JGIFT-0025,EMS Belt_Peach,1,0,0,459829558871,ORD250721-0100,8809595040734
+ORD250721-0100,2025-7-21,13:21:28,송은정,0508-6812-6824,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829558871,ORD250721-0100,K001-0008
+ORD250721-0117,2025-7-21,13:23:18,조현*,0503-6364-6195,JGIFT-0024,EMS Belt_Mint,1,0,0,459829559044,ORD250721-0117,8809595040758
+ORD250721-0117,2025-7-21,13:23:18,조현*,0503-6364-6195,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829559044,ORD250721-0117,K001-0008
+ORD250721-0117,2025-7-21,13:23:18,조현*,0503-6364-6195,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459829559044,ORD250721-0117,L001-0032
+ORD250721-0118,2025-7-21,13:24:56,이수*,0503-6325-0433,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829559055,ORD250721-0118,K001-0008
+ORD250721-0118,2025-7-21,13:24:56,이수*,0503-6325-0433,JGIFT-0026,EMS Belt_Purple,1,0,0,459829559055,ORD250721-0118,8809595040741
+ORD250721-0118,2025-7-21,13:24:56,이수*,0503-6325-0433,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459829559055,ORD250721-0118,L001-0032
+ORD250721-0119,2025-7-21,13:27:20,최양자,01024910203,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829559066,ORD250721-0119,K001-0008
+ORD250721-0119,2025-7-21,13:27:20,최양자,01024910203,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459829559066,ORD250721-0119,L001-0032
+ORD250721-0119,2025-7-21,13:27:20,최양자,01024910203,JGIFT-0026,EMS Belt_Purple,1,0,0,459829559066,ORD250721-0119,8809595040741
+ORD250721-0120,2025-7-21,13:35:39,박정은,01064744438,JGIFT-0026,EMS Belt_Purple,1,0,0,459829559070,ORD250721-0120,8809595040741
+ORD250721-0120,2025-7-21,13:35:39,박정은,01064744438,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459829559070,ORD250721-0120,L001-0032
+ORD250721-0120,2025-7-21,13:35:39,박정은,01064744438,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829559070,ORD250721-0120,K001-0008
+ORD250721-0133,2025-7-21,13:38:47,옥종화,01021235488,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829559206,ORD250721-0133,K001-0008
+ORD250721-0133,2025-7-21,13:38:47,옥종화,01021235488,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459829559206,ORD250721-0133,L001-0032
+ORD250721-0133,2025-7-21,13:38:47,옥종화,01021235488,JGIFT-0026,EMS Belt_Purple,1,0,0,459829559206,ORD250721-0133,8809595040741
+ORD250721-0135,2025-7-21,13:41:7,김주연,01071164649,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829559221,ORD250721-0135,K001-0008
+ORD250721-0135,2025-7-21,13:41:7,김주연,01071164649,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459829559221,ORD250721-0135,L001-0032
+ORD250721-0135,2025-7-21,13:41:7,김주연,01071164649,JGIFT-0026,EMS Belt_Purple,1,0,0,459829559221,ORD250721-0135,8809595040741
+ORD250721-0134,2025-7-21,13:42:40,정혜용,01037172384,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829559210,ORD250721-0134,K001-0008
+ORD250721-0134,2025-7-21,13:42:40,정혜용,01037172384,JGIFT-0025,EMS Belt_Peach,1,0,0,459829559210,ORD250721-0134,8809595040734
+ORD250721-0134,2025-7-21,13:42:40,정혜용,01037172384,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459829559210,ORD250721-0134,L001-0032
+ORD250721-0137,2025-7-21,13:44:39,박하나,0319152736,JGIFT-0024,EMS Belt_Mint,1,0,0,459829559243,ORD250721-0137,8809595040758
+ORD250721-0137,2025-7-21,13:44:39,박하나,0319152736,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829559243,ORD250721-0137,K001-0008
+ORD250721-0137,2025-7-21,13:44:39,박하나,0319152736,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459829559243,ORD250721-0137,L001-0032
+ORD250721-0136,2025-7-21,13:45:53,박희자,01084561968,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459829559232,ORD250721-0136,K001-0008
+ORD250721-0136,2025-7-21,13:45:53,박희자,01084561968,JGIFT-0025,EMS Belt_Peach,1,0,0,459829559232,ORD250721-0136,8809595040734
+ORD250721-0136,2025-7-21,13:45:53,박희자,01084561968,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459829559232,ORD250721-0136,L001-0032
+ORD250721-0156,2025-7-21,13:51:5,이*화,0502-6321-3618,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459829559431,502507217100,8809595040017
+ORD250721-0156,2025-7-21,13:51:5,이*화,0502-6321-3618,L001-0030,뷰티루틴 쇼핑백,1,0,0,459829559431,502507217100,L001-0030
+ORD250721-0156,2025-7-21,13:51:5,이*화,0502-6321-3618,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459829559431,502507217100,K001-0007
+ORD250721-0156,2025-7-21,13:51:5,이*화,0502-6321-3618,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459829559431,502507217100,502507217100
+ORD250721-0131,2025-7-21,13:53:6,임선미,01089692075,K001-0041,단품 1SET 박스 (3호),1,0,0,459829559184,502507297100,K001-0041
+ORD250721-0131,2025-7-21,13:53:6,임선미,01089692075,L001-0030,뷰티루틴 쇼핑백,1,0,0,459829559184,502507297100,L001-0030
+ORD250721-0131,2025-7-21,13:53:6,임선미,01089692075,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459829559184,502507297100,502507297100
+ORD250721-0132,2025-7-21,13:54:17,해외주문,07041187330,K001-0041,단품 1SET 박스 (3호),1,0,0,459829559195,502507311100,K001-0041
+ORD250721-0132,2025-7-21,13:54:17,해외주문,07041187330,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459829559195,502507311100,502507311100
+ORD250721-0132,2025-7-21,13:54:17,해외주문,07041187330,L001-0030,뷰티루틴 쇼핑백,1,0,0,459829559195,502507311100,L001-0030
+ORD250721-0170,2025-7-21,14:5:48,藤田安奈,090-4076-2835,K001-0022,가죽케이스 박스 (2호),1,0,0,459830389546,ORD250721-0170,K001-0022
+ORD250721-0170,2025-7-21,14:5:48,藤田安奈,090-4076-2835,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459830389546,ORD250721-0170,8809595040635
+ORD250721-0170,2025-7-21,14:5:48,藤田安奈,090-4076-2835,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459830389546,ORD250721-0170,8809595040628
+ORD250721-0163,2025-7-21,14:8:4,ムシガー杏樹,080-1772-9979,K001-0041,단품 1SET 박스 (3호),1,0,0,459830389476,ORD250721-0163,K001-0041
+ORD250721-0163,2025-7-21,14:8:4,ムシガー杏樹,080-1772-9979,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,459830389476,ORD250721-0163,8809595040628
+ORD250721-0163,2025-7-21,14:8:4,ムシガー杏樹,080-1772-9979,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,459830389476,ORD250721-0163,8809595040635
+ORD250721-0171,2025-7-21,14:11:31,新田 千代美,090-2827-9451,K001-0041,단품 1SET 박스 (3호),1,0,0,459830389550,ORD250721-0171,K001-0041
+ORD250721-0171,2025-7-21,14:11:31,新田 千代美,090-2827-9451,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,459830389550,ORD250721-0171,8809595040635
+ORD250721-0171,2025-7-21,14:11:31,新田 千代美,090-2827-9451,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,459830389550,ORD250721-0171,8809595040628
+ORD250721-0169,2025-7-21,14:13:0,プクランバン エモイヌ チャヌ,080-9288-7152,K001-0022,가죽케이스 박스 (2호),1,0,0,459830389535,ORD250721-0169,K001-0022
+ORD250721-0169,2025-7-21,14:13:0,プクランバン エモイヌ チャヌ,080-9288-7152,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,459830389535,ORD250721-0169,8809595040628
+ORD250721-0176,2025-7-21,14:53:44,손창희,010-6616-9750,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,692709181296,312506492101,312506492101
+ORD250721-0176,2025-7-21,14:53:44,손창희,010-6616-9750,K001-0041,단품 1SET 박스 (3호),1,0,0,692709181296,312506492101,K001-0041
+ORD250721-0176,2025-7-21,14:53:44,손창희,010-6616-9750,L001-0030,뷰티루틴 쇼핑백,1,0,0,692709181296,312506492101,L001-0030
+ORD250721-0175,2025-7-21,14:57:55,조윤식,010-5596-2944,L004-0001,DUALSONIC Blooming Moisture Gel,20,0,0,692709181285,ORD250721-0175,8809595040017
+ORD250721-0175,2025-7-21,14:57:55,조윤식,010-5596-2944,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,692709181285,ORD250721-0175,K001-0020
+ORD250721-0178,2025-7-21,15:0:18,박희진,010-2852-5016,P001-0152,원형케이스 퍼플,1,0,0,692709181311,602501222132,8809595040512
+ORD250721-0178,2025-7-21,15:0:18,박희진,010-2852-5016,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,692709181311,602501222132,8809595040697
+ORD250721-0178,2025-7-21,15:0:18,박희진,010-2852-5016,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,692709181311,602501222132,602501222132
+ORD250721-0178,2025-7-21,15:0:18,박희진,010-2852-5016,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,692709181311,602501222132,L004-0023
+ORD250721-0178,2025-7-21,15:0:18,박희진,010-2852-5016,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692709181311,602501222132,8809750465013
+ORD250721-0178,2025-7-21,15:0:18,박희진,010-2852-5016,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692709181311,602501222132,K001-0008
+ORD250721-0178,2025-7-21,15:0:18,박희진,010-2852-5016,L001-0030,뷰티루틴 쇼핑백,1,0,0,692709181311,602501222132,L001-0030
+ORD250721-0180,2025-7-21,16:21:0,박주현,010-7190-3343,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,692711707036,312506861100,312506861100
+ORD250721-0180,2025-7-21,16:21:0,박주현,010-7190-3343,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,692711707036,312506861100,8809595040017
+ORD250721-0180,2025-7-21,16:21:0,박주현,010-7190-3343,L001-0030,뷰티루틴 쇼핑백,1,0,0,692711707036,312506861100,L001-0030
+ORD250721-0180,2025-7-21,16:21:0,박주현,010-7190-3343,K001-0041,단품 1SET 박스 (3호),1,0,0,692711707036,312506861100,K001-0041
+ORD250721-0183,2025-7-21,16:24:43,Grace Song,010-7612-3339,PF001-001C,[BR] DAY SHOT (14 BOTTLES),4,0,0,692711707062,ORD250721-0183,8809595040642
+ORD250721-0183,2025-7-21,16:24:43,Grace Song,010-7612-3339,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692711707062,ORD250721-0183,K001-0007
+ORD250721-0183,2025-7-21,16:24:43,Grace Song,010-7612-3339,L001-0030,뷰티루틴 쇼핑백,3,0,0,692711707062,ORD250721-0183,L001-0030
+ORD250721-0183,2025-7-21,16:24:43,Grace Song,010-7612-3339,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,692711707062,ORD250721-0183,8809595040635
+ORD250721-0184,2025-7-21,16:26:5,정지호,010-2094-1477,K001-0010,젤 3개 포장박스 (1호),1,0,0,692712247532,ORD250721-0184,K001-0010
+ORD250721-0184,2025-7-21,16:26:5,정지호,010-2094-1477,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,692712247532,ORD250721-0184,8809595040017
+ORD250721-0185,2025-7-21,16:27:6,강정심,010-2587-0187,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,692712247543,ORD250721-0185,8809595040017
+ORD250721-0185,2025-7-21,16:27:6,강정심,010-2587-0187,K001-0010,젤 3개 포장박스 (1호),1,0,0,692712247543,ORD250721-0185,K001-0010
+ORD250721-0181,2025-7-21,16:28:39,신순*,0502-2421-9476,K001-0010,젤 3개 포장박스 (1호),1,0,0,692711707040,112506191000,K001-0010
+ORD250721-0181,2025-7-21,16:28:39,신순*,0502-2421-9476,P001-DS007A,DUALSONIC Pro Face CARTRIDGE 1Set,1,6000,0,692711707040,112506191000,112506191000
+ORD250721-0182,2025-7-21,16:33:30,강상인(주문자:강*소),0504-2128-7951,L001-0030,뷰티루틴 쇼핑백,1,0,0,692711707051,312506828100,L001-0030
+ORD250721-0182,2025-7-21,16:33:30,강상인(주문자:강*소),0504-2128-7951,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,692711707051,312506828100,312506828100
+ORD250721-0182,2025-7-21,16:33:30,강상인(주문자:강*소),0504-2128-7951,K001-0041,단품 1SET 박스 (3호),1,0,0,692711707051,312506828100,K001-0041
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-22.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-22.csv
new file mode 100644
index 0000000..12ead46
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-22.csv
@@ -0,0 +1,76 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250722-0024,2025-7-22,11:0:44,주식회사 컬리,010-5820-3061,P001-0152,원형케이스 퍼플,18,0,0,692717376605,ORD250722-0024,8809595040512
+ORD250722-0024,2025-7-22,11:0:44,주식회사 컬리,010-5820-3061,K001-0133,C/T 택배박스(560*400*420),1,0,0,692717376605,ORD250722-0024,K001-0133
+ORD250722-0023,2025-7-22,11:8:13,주식회사 컬리,010-5820-3061,P001-0152,원형케이스 퍼플,18,0,0,692717376616,ORD250722-0023,8809595040512
+ORD250722-0023,2025-7-22,11:8:13,주식회사 컬리,010-5820-3061,K001-0133,C/T 택배박스(560*400*420),1,0,0,692717376616,ORD250722-0023,K001-0133
+ORD250722-0029,2025-7-22,11:18:31,주식회사 컬리,010-5820-3061,JGIFT-0026,EMS Belt_Purple,18,0,0,692717376620,ORD250722-0029,8809595040741
+ORD250722-0029,2025-7-22,11:18:31,주식회사 컬리,010-5820-3061,K001-0133,C/T 택배박스(560*400*420),1,0,0,692717376620,ORD250722-0029,K001-0133
+ORD250722-0036,2025-7-22,11:26:30,주식회사 컬리,010-5820-3061,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692717376642,ORD250722-0036,K001-0008
+ORD250722-0036,2025-7-22,11:26:30,주식회사 컬리,010-5820-3061,L004-0030,Elixir Lifting Collagen Mask(엘릭시르 콜라겐 마스크팩) 24ML 10EA,20,0,0,692717376642,ORD250722-0036,8809750465037
+ORD250722-0033,2025-7-22,11:30:37,주식회사 컬리,010-5820-3061,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,20,0,0,692717376631,ORD250722-0033,8809750465013
+ORD250722-0033,2025-7-22,11:30:37,주식회사 컬리,010-5820-3061,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692717376631,ORD250722-0033,K001-0008
+ORD250722-0037,2025-7-22,11:34:34,주식회사 컬리,010-5820-3061,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692717376653,ORD250722-0037,K001-0008
+ORD250722-0037,2025-7-22,11:34:34,주식회사 컬리,010-5820-3061,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),30,0,0,692717376653,ORD250722-0037,L004-0023
+ORD250722-0042,2025-7-22,11:48:38,주식회사 컬리,010-5820-3061,K001-0133,C/T 택배박스(560*400*420),1,0,0,692717376664,312505081180,K001-0133
+ORD250722-0042,2025-7-22,11:48:38,주식회사 컬리,010-5820-3061,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),14,0,0,692717376664,312505081180,312505156180/312505704180/312505909180/312505471180/312505114180/312505867180/312505081180/312505744180/312505533180/312505706180/312505087180/312505534180/312505912180/312505116180
+ORD250722-0043,2025-7-22,11:58:1,주식회사 컬리,010-5820-3061,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),14,0,0,692717376675,312505061180,312505705180/312505495180/312505061180/312505225180/312505756180/312505097180/312505093180/312505715180/312505127180/312505710180/312505923180/312505233180/312505731180/312505762180
+ORD250722-0043,2025-7-22,11:58:1,주식회사 컬리,010-5820-3061,K001-0133,C/T 택배박스(560*400*420),1,0,0,692717376675,312505061180,K001-0133
+ORD250722-0038,2025-7-22,13:5:59,주식회사 컬리,010-5820-8265,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692717376572,ORD250722-0038,K001-0008
+ORD250722-0038,2025-7-22,13:5:59,주식회사 컬리,010-5820-8265,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,692717376572,ORD250722-0038,8809595040017
+ORD250722-0031,2025-7-22,13:9:51,주식회사 컬리,010-5820-8265,PF001-003,[BR] STICK JELLY (14 BAGS),10,0,0,692717376546,ORD250722-0031,8809595040659
+ORD250722-0031,2025-7-22,13:9:51,주식회사 컬리,010-5820-8265,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692717376546,ORD250722-0031,K001-0008
+ORD250722-0047,2025-7-22,13:16:7,황세윤 매니저,010-6266-8410,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),30,0,0,459841641755,ORD250722-0047,L004-0023
+ORD250722-0046,2025-7-22,14:25:1,황세윤 매니저,010-6266-8410,P001-DS007A,DUALSONIC Pro Face CARTRIDGE 1Set,2,6000,0,459841641744,112506173000,112506190000/112506173000
+ORD250722-0046,2025-7-22,14:25:1,황세윤 매니저,010-6266-8410,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],3,40000,400000,459841641744,112506173000,402505157100/402505114100/402505132100
+ORD250722-0050,2025-7-22,15:10:57,장기영,010-4948-2822,JGIFT-0026,EMS Belt_Purple,1,0,0,692724968750,ORD250722-0050,8809595040741
+ORD250722-0051,2025-7-22,15:36:31,김지원,0508-6846-3889,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692731278712,ORD250722-0051,L001-0032
+ORD250722-0051,2025-7-22,15:36:31,김지원,0508-6846-3889,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692731278712,ORD250722-0051,K001-0008
+ORD250722-0051,2025-7-22,15:36:31,김지원,0508-6846-3889,JGIFT-0026,EMS Belt_Purple,1,0,0,692731278712,ORD250722-0051,8809595040741
+ORD250722-0053,2025-7-22,15:38:2,이진경,01088930675,JGIFT-0025,EMS Belt_Peach,1,0,0,692731278734,ORD250722-0053,8809595040734
+ORD250722-0053,2025-7-22,15:38:2,이진경,01088930675,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692731278734,ORD250722-0053,L001-0032
+ORD250722-0053,2025-7-22,15:38:2,이진경,01088930675,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692731278734,ORD250722-0053,K001-0008
+ORD250722-0054,2025-7-22,15:38:38,하창민,01082208345,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692731278745,ORD250722-0054,L001-0032
+ORD250722-0054,2025-7-22,15:38:38,하창민,01082208345,JGIFT-0025,EMS Belt_Peach,1,0,0,692731278745,ORD250722-0054,8809595040734
+ORD250722-0054,2025-7-22,15:38:38,하창민,01082208345,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692731278745,ORD250722-0054,K001-0008
+ORD250722-0052,2025-7-22,15:41:9,허은아,050243602235,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,692731278723,602501056111,8809595040628
+ORD250722-0052,2025-7-22,15:41:9,허은아,050243602235,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,692731278723,602501056111,602501056111
+ORD250722-0052,2025-7-22,15:41:9,허은아,050243602235,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692731278723,602501056111,K001-0007
+ORD250722-0052,2025-7-22,15:41:9,허은아,050243602235,L001-0030,뷰티루틴 쇼핑백,1,0,0,692731278723,602501056111,L001-0030
+ORD250722-0055,2025-7-22,15:42:49,김미애,010-3530-0361,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,692731278756,602503138130,602503138130
+ORD250722-0055,2025-7-22,15:42:49,김미애,010-3530-0361,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692731278756,602503138130,K001-0008
+ORD250722-0055,2025-7-22,15:42:49,김미애,010-3530-0361,L001-0030,뷰티루틴 쇼핑백,1,0,0,692731278756,602503138130,L001-0030
+ORD250722-0055,2025-7-22,15:42:49,김미애,010-3530-0361,P001-0152,원형케이스 퍼플,1,0,0,692731278756,602503138130,8809595040512
+ORD250722-0056,2025-7-22,15:43:54,해외주문,07041187330,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,692731278760,602501404110,602501404110
+ORD250722-0056,2025-7-22,15:43:54,해외주문,07041187330,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692731278760,602501404110,K001-0008
+ORD250722-0056,2025-7-22,15:43:54,해외주문,07041187330,L001-0030,뷰티루틴 쇼핑백,1,0,0,692731278760,602501404110,L001-0030
+ORD250722-0056,2025-7-22,15:43:54,해외주문,07041187330,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,692731278760,602501404110,8809595040017
+ORD250722-0056,2025-7-22,15:43:54,해외주문,07041187330,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,692731278760,602501404110,L004-0023
+ORD250722-0056,2025-7-22,15:43:54,해외주문,07041187330,P001-0152,원형케이스 퍼플,1,0,0,692731278760,602501404110,8809595040512
+ORD250722-0060,2025-7-22,16:57:57,우수연,01033765722,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,692732976761,312506725100,312506725100
+ORD250722-0060,2025-7-22,16:57:57,우수연,01033765722,L001-0030,뷰티루틴 쇼핑백,1,0,0,692732976761,312506725100,L001-0030
+ORD250722-0060,2025-7-22,16:57:57,우수연,01033765722,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,692732976761,312506725100,8809595040697
+ORD250722-0060,2025-7-22,16:57:57,우수연,01033765722,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692732976761,312506725100,8809750465013
+ORD250722-0060,2025-7-22,16:57:57,우수연,01033765722,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692732976761,312506725100,K001-0007
+ORD250722-0060,2025-7-22,16:57:57,우수연,01033765722,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,692732976761,312506725100,L004-0023
+ORD250722-0059,2025-7-22,17:1:18,이수진,01031115353,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),1,0,0,692732976772,502507353100,602502483120
+ORD250722-0059,2025-7-22,17:1:18,이수진,01031115353,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692732976772,502507353100,K001-0008
+ORD250722-0059,2025-7-22,17:1:18,이수진,01031115353,L001-0030,뷰티루틴 쇼핑백,2,0,0,692732976772,502507353100,L001-0030
+ORD250722-0059,2025-7-22,17:1:18,이수진,01031115353,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692732976772,502507353100,502507353100
+ORD250722-0059,2025-7-22,17:1:18,이수진,01031115353,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),4,0,0,692732976772,502507353100,L004-0023
+ORD250722-0059,2025-7-22,17:1:18,이수진,01031115353,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,692732976772,502507353100,8809750465013
+ORD250722-0059,2025-7-22,17:1:18,이수진,01031115353,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),2,0,0,692732976772,502507353100,8809595040697
+ORD250722-0061,2025-7-22,17:2:3,정행옥,010-9919-8917,K001-0010,젤 3개 포장박스 (1호),1,0,0,692733899733,ORD250722-0061,K001-0010
+ORD250722-0061,2025-7-22,17:2:3,정행옥,010-9919-8917,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,692733899733,ORD250722-0061,L004-0023
+ORD250722-0062,2025-7-22,17:5:14,조인예,010-9588-0113,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692733899744,312506870100,K001-0007
+ORD250722-0062,2025-7-22,17:5:14,조인예,010-9588-0113,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692733899744,312506870100,8809595040017
+ORD250722-0062,2025-7-22,17:5:14,조인예,010-9588-0113,L001-0030,뷰티루틴 쇼핑백,1,0,0,692733899744,312506870100,L001-0030
+ORD250722-0062,2025-7-22,17:5:14,조인예,010-9588-0113,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,692733899744,312506870100,312506870100
+ORD250722-0063,2025-7-22,17:6:56,김계영,010-8341-9040,L004-0001,DUALSONIC Blooming Moisture Gel,4,0,0,692733899755,ORD250722-0063,8809595040017
+ORD250722-0063,2025-7-22,17:6:56,김계영,010-8341-9040,K001-0041,단품 1SET 박스 (3호),1,0,0,692733899755,ORD250722-0063,K001-0041
+ORD250722-0063,2025-7-22,17:6:56,김계영,010-8341-9040,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692733899755,ORD250722-0063,L004-0023
+ORD250722-0064,2025-7-22,17:9:25,김연화,010-7397-6788,L001-0030,뷰티루틴 쇼핑백,3,0,0,692733899766,ORD250722-0064,L001-0030
+ORD250722-0064,2025-7-22,17:9:25,김연화,010-7397-6788,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,692733899766,ORD250722-0064,8809595040628
+ORD250722-0064,2025-7-22,17:9:25,김연화,010-7397-6788,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,692733899766,ORD250722-0064,8809595040635
+ORD250722-0064,2025-7-22,17:9:25,김연화,010-7397-6788,PF001-001C,[BR] DAY SHOT (14 BOTTLES),2,0,0,692733899766,ORD250722-0064,8809595040642
+ORD250722-0064,2025-7-22,17:9:25,김연화,010-7397-6788,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692733899766,ORD250722-0064,K001-0007
+ORD250722-0064,2025-7-22,17:9:25,김연화,010-7397-6788,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,692733899766,ORD250722-0064,L004-0023
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-23.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-23.csv
new file mode 100644
index 0000000..29efe0e
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-23.csv
@@ -0,0 +1,72 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250723-0102,2025-7-23,9:57:7,조한규차장님,.,P001-DS155A,DUALSONIC Lux 1Set [Face 9,000 Eye 90,000],3,9000,90000,JGIFT-0010,202506005500,202506019500/202506005500/202506013500
+ORD250723-0004,2025-7-23,10:33:4,쿠팡 이천2,070-5158-8142,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,692711463510,ORD250723-0004,8809595040017
+ORD250723-0003,2025-7-23,10:38:43,쿠팡 창원4_3,070-5167-2371,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692711463506,502507296100,502507296100
+ORD250723-0003,2025-7-23,10:38:43,쿠팡 창원4_3,070-5167-2371,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,692711463506,502507296100,L004-0023
+ORD250723-0003,2025-7-23,10:38:43,쿠팡 창원4_3,070-5167-2371,K001-0041,단품 1SET 박스 (3호),1,0,0,692711463506,502507296100,K001-0041
+ORD250723-0002,2025-7-23,10:47:46,쿠팡 창원4_2,070-5167-2371,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,692711463495,502507174100,L004-0023
+ORD250723-0002,2025-7-23,10:47:46,쿠팡 창원4_2,070-5167-2371,K001-0041,단품 1SET 박스 (3호),1,0,0,692711463495,502507174100,K001-0041
+ORD250723-0002,2025-7-23,10:47:46,쿠팡 창원4_2,070-5167-2371,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692711463495,502507174100,502507174100
+ORD250723-0123,2025-7-23,10:53:1,최진용,027127796,JGIFT-0026,EMS Belt_Purple,1,0,0,459850163076,ORD250723-0123,8809595040741
+ORD250723-0123,2025-7-23,10:53:1,최진용,027127796,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459850163076,ORD250723-0123,K001-0008
+ORD250723-0123,2025-7-23,10:53:1,최진용,027127796,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459850163076,ORD250723-0123,L001-0032
+ORD250723-0121,2025-7-23,10:57:9,황지연,01028098974,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459850163054,312506329101,8809595040697
+ORD250723-0121,2025-7-23,10:57:9,황지연,01028098974,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459850163054,312506329101,312506329101
+ORD250723-0121,2025-7-23,10:57:9,황지연,01028098974,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459850163054,312506329101,L004-0023
+ORD250723-0121,2025-7-23,10:57:9,황지연,01028098974,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459850163054,312506329101,8809750465013
+ORD250723-0121,2025-7-23,10:57:9,황지연,01028098974,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459850163054,312506329101,K001-0007
+ORD250723-0121,2025-7-23,10:57:9,황지연,01028098974,L001-0030,뷰티루틴 쇼핑백,1,0,0,459850163054,312506329101,L001-0030
+ORD250723-0132,2025-7-23,10:58:38,박정우,010-2446-9725,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,459850207040,602503060130,8809595040635
+ORD250723-0132,2025-7-23,10:58:38,박정우,010-2446-9725,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459850207040,602503060130,K001-0007
+ORD250723-0132,2025-7-23,10:58:38,박정우,010-2446-9725,L001-0030,뷰티루틴 쇼핑백,2,0,0,459850207040,602503060130,L001-0030
+ORD250723-0132,2025-7-23,10:58:38,박정우,010-2446-9725,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459850207040,602503060130,8809750465013
+ORD250723-0132,2025-7-23,10:58:38,박정우,010-2446-9725,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459850207040,602503060130,602503060130
+ORD250723-0132,2025-7-23,10:58:38,박정우,010-2446-9725,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459850207040,602503060130,8809595040017
+ORD250723-0131,2025-7-23,11:0:2,홍은지,010-5958-5891,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459850207036,602503157130,8809595040017
+ORD250723-0131,2025-7-23,11:0:2,홍은지,010-5958-5891,L001-0030,뷰티루틴 쇼핑백,2,0,0,459850207036,602503157130,L001-0030
+ORD250723-0131,2025-7-23,11:0:2,홍은지,010-5958-5891,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459850207036,602503157130,602503157130
+ORD250723-0131,2025-7-23,11:0:2,홍은지,010-5958-5891,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,459850207036,602503157130,8809595040635
+ORD250723-0131,2025-7-23,11:0:2,홍은지,010-5958-5891,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459850207036,602503157130,8809750465013
+ORD250723-0131,2025-7-23,11:0:2,홍은지,010-5958-5891,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459850207036,602503157130,K001-0007
+ORD250723-0122,2025-7-23,11:3:12,박인경,01030193638,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459850163065,502506311100,8809595040697
+ORD250723-0122,2025-7-23,11:3:12,박인경,01030193638,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459850163065,502506311100,502506311100
+ORD250723-0122,2025-7-23,11:3:12,박인경,01030193638,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459850163065,502506311100,K001-0007
+ORD250723-0122,2025-7-23,11:3:12,박인경,01030193638,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459850163065,502506311100,8809750465013
+ORD250723-0122,2025-7-23,11:3:12,박인경,01030193638,L001-0030,뷰티루틴 쇼핑백,1,0,0,459850163065,502506311100,L001-0030
+ORD250723-0122,2025-7-23,11:3:12,박인경,01030193638,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459850163065,502506311100,L004-0023
+ORD250723-0130,2025-7-23,11:5:10,BSZERSFK,010-6315-2572,L001-0030,뷰티루틴 쇼핑백,4,0,0,459850207025,602503089130,L001-0030
+ORD250723-0130,2025-7-23,11:5:10,BSZERSFK,010-6315-2572,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459850207025,602503089130,8809595040017
+ORD250723-0130,2025-7-23,11:5:10,BSZERSFK,010-6315-2572,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459850207025,602503089130,602503089130
+ORD250723-0130,2025-7-23,11:5:10,BSZERSFK,010-6315-2572,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459850207025,602503089130,8809750465013
+ORD250723-0130,2025-7-23,11:5:10,BSZERSFK,010-6315-2572,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459850207025,602503089130,K001-0008
+ORD250723-0130,2025-7-23,11:5:10,BSZERSFK,010-6315-2572,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),4,0,0,459850207025,602503089130,8809595040635
+ORD250723-0130,2025-7-23,11:5:10,BSZERSFK,010-6315-2572,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,459850207025,602503089130,8809595040628
+ORD250723-0137,2025-7-23,13:21:28,,,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),2,0,0,L001-0030,ORD250723-0137,8809595040697
+ORD250723-0137,2025-7-23,13:21:28,,,PF001-005B,[BR] NIGHT SHOT GIFT KIT (2 BOTTLES),2,0,0,L001-0030,ORD250723-0137,8809595040680
+ORD250723-0137,2025-7-23,13:21:28,,,PF001-005A,[BR] MORNING SHOT GIFT KIT (2 BOTTLES),2,0,0,L001-0030,ORD250723-0137,8809595040673
+ORD250723-0148,2025-7-23,15:49:10,이지원,010-3133-9771,L001-0030,뷰티루틴 쇼핑백,2,0,0,459854687062,402505092100,L001-0030
+ORD250723-0148,2025-7-23,15:49:10,이지원,010-3133-9771,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459854687062,402505092100,8809595040017
+ORD250723-0148,2025-7-23,15:49:10,이지원,010-3133-9771,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459854687062,402505092100,K001-0008
+ORD250723-0148,2025-7-23,15:49:10,이지원,010-3133-9771,P001-DSA008,DUALSONIC Pro ALPHA BODY CARTRIDGE 1Set [BODY 30,000샷],1,30000,0,459854687062,402505092100,432504027000
+ORD250723-0148,2025-7-23,15:49:10,이지원,010-3133-9771,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459854687062,402505092100,502506126100
+ORD250723-0148,2025-7-23,15:49:10,이지원,010-3133-9771,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],1,40000,400000,459854687062,402505092100,402505092100
+ORD250723-0148,2025-7-23,15:49:10,이지원,010-3133-9771,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),7,0,0,459854687062,402505092100,L004-0023
+ORD250723-0148,2025-7-23,15:49:10,이지원,010-3133-9771,P001-0136,가죽케이스 블랙뱀피,1,0,0,459854687062,402505092100,8809595040253
+ORD250723-0149,2025-7-23,16:4:11,이은숙,010-9042-4648,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,692751843754,ORD250723-0149,8809595040017
+ORD250723-0149,2025-7-23,16:4:11,이은숙,010-9042-4648,K001-0010,젤 3개 포장박스 (1호),1,0,0,692751843754,ORD250723-0149,K001-0010
+ORD250723-0144,2025-7-23,16:38:34,김영석,010-5493-7089,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692750778903,602412602120,K001-0007
+ORD250723-0144,2025-7-23,16:38:34,김영석,010-5493-7089,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692750778903,602412602120,8809595040017
+ORD250723-0144,2025-7-23,16:38:34,김영석,010-5493-7089,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692750778903,602412602120,8809750465013
+ORD250723-0144,2025-7-23,16:38:34,김영석,010-5493-7089,L001-0030,뷰티루틴 쇼핑백,1,0,0,692750778903,602412602120,L001-0030
+ORD250723-0144,2025-7-23,16:38:34,김영석,010-5493-7089,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),1,0,0,692750778903,602412602120,602412602120
+ORD250723-0144,2025-7-23,16:38:34,김영석,010-5493-7089,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692750778903,602412602120,JGIFT-0010
+ORD250723-0145,2025-7-23,16:40:49,임수진,01062928773,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692750778914,ORD250723-0145,K001-0008
+ORD250723-0145,2025-7-23,16:40:49,임수진,01062928773,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692750778914,ORD250723-0145,L001-0032
+ORD250723-0145,2025-7-23,16:40:49,임수진,01062928773,JGIFT-0026,EMS Belt_Purple,1,0,0,692750778914,ORD250723-0145,8809595040741
+ORD250723-0150,2025-7-23,16:43:51,유명희,010-6425-9070,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692752600104,312506246101,K001-0008
+ORD250723-0150,2025-7-23,16:43:51,유명희,010-6425-9070,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,692752600104,312506246101,312506246101
+ORD250723-0150,2025-7-23,16:43:51,유명희,010-6425-9070,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692752600104,312506246101,8809750465013
+ORD250723-0150,2025-7-23,16:43:51,유명희,010-6425-9070,L001-0030,뷰티루틴 쇼핑백,1,0,0,692752600104,312506246101,L001-0030
+ORD250723-0150,2025-7-23,16:43:51,유명희,010-6425-9070,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692752600104,312506246101,8809595040017
+ORD250723-0150,2025-7-23,16:43:51,유명희,010-6425-9070,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,692752600104,312506246101,8809527487118
+ORD250723-0150,2025-7-23,16:43:51,유명희,010-6425-9070,P001-0152,원형케이스 퍼플,1,0,0,692752600104,312506246101,8809595040512
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-24.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-24.csv
new file mode 100644
index 0000000..344f09e
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-24.csv
@@ -0,0 +1,95 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250724-0001,2025-7-24,10:44:7,쿠팡 인천32_1,070-4747-2982,L001-0032,핏업밸트 쇼핑백(150*65*460),6,0,0,692754031372,ORD250724-0001,L001-0032
+ORD250724-0001,2025-7-24,10:44:7,쿠팡 인천32_1,070-4747-2982,K001-0133,C/T 택배박스(560*400*420),1,0,0,692754031372,ORD250724-0001,K001-0133
+ORD250724-0001,2025-7-24,10:44:7,쿠팡 인천32_1,070-4747-2982,JGIFT-0026,EMS Belt_Purple,6,0,0,692754031372,ORD250724-0001,8809595040741
+ORD250724-0039,2025-7-24,11:15:54,김지의,010-4002-0176,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459859140300,602501296131,K001-0007
+ORD250724-0039,2025-7-24,11:15:54,김지의,010-4002-0176,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,459859140300,602501296131,8809595040628
+ORD250724-0039,2025-7-24,11:15:54,김지의,010-4002-0176,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459859140300,602501296131,8809750465013
+ORD250724-0039,2025-7-24,11:15:54,김지의,010-4002-0176,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459859140300,602501296131,602501296131
+ORD250724-0039,2025-7-24,11:15:54,김지의,010-4002-0176,L001-0030,뷰티루틴 쇼핑백,2,0,0,459859140300,602501296131,L001-0030
+ORD250724-0039,2025-7-24,11:15:54,김지의,010-4002-0176,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459859140300,602501296131,8809595040017
+ORD250724-0038,2025-7-24,11:19:16,해외주문,07041187330,P001-0156,우디케이스,1,0,0,459859216040,402505024100,8809595040598
+ORD250724-0038,2025-7-24,11:19:16,해외주문,07041187330,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459859216040,402505024100,K001-0008
+ORD250724-0038,2025-7-24,11:19:16,해외주문,07041187330,P001-DSA005,DUALSONIC Pro ALPHA 1Set[Face 20,000, EYE 200,000],1,20000,200000,459859216040,402505024100,402505024100
+ORD250724-0038,2025-7-24,11:19:16,해외주문,07041187330,L001-0030,뷰티루틴 쇼핑백,1,0,0,459859216040,402505024100,L001-0030
+ORD250724-0038,2025-7-24,11:19:16,해외주문,07041187330,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,459859216040,402505024100,L004-0023
+ORD250724-0038,2025-7-24,11:19:16,해외주문,07041187330,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459859216040,402505024100,8809595040017
+ORD250724-0037,2025-7-24,11:22:11,해외주문,07041187330,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459859216036,602501286133,602501286133
+ORD250724-0037,2025-7-24,11:22:11,해외주문,07041187330,L001-0030,뷰티루틴 쇼핑백,1,0,0,459859216036,602501286133,L001-0030
+ORD250724-0037,2025-7-24,11:22:11,해외주문,07041187330,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459859216036,602501286133,8809595040017
+ORD250724-0037,2025-7-24,11:22:11,해외주문,07041187330,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459859216036,602501286133,K001-0008
+ORD250724-0037,2025-7-24,11:22:11,해외주문,07041187330,P001-0152,원형케이스 퍼플,1,0,0,459859216036,602501286133,8809595040512
+ORD250724-0036,2025-7-24,11:25:46,윤영진,010-5705-2810,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459859216025,502506274100,8809595040697
+ORD250724-0036,2025-7-24,11:25:46,윤영진,010-5705-2810,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459859216025,502506274100,K001-0008
+ORD250724-0036,2025-7-24,11:25:46,윤영진,010-5705-2810,L001-0030,뷰티루틴 쇼핑백,1,0,0,459859216025,502506274100,L001-0030
+ORD250724-0036,2025-7-24,11:25:46,윤영진,010-5705-2810,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459859216025,502506274100,L004-0023
+ORD250724-0036,2025-7-24,11:25:46,윤영진,010-5705-2810,P001-0152,원형케이스 퍼플,1,0,0,459859216025,502506274100,8809595040512
+ORD250724-0036,2025-7-24,11:25:46,윤영진,010-5705-2810,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459859216025,502506274100,502506274100
+ORD250724-0036,2025-7-24,11:25:46,윤영진,010-5705-2810,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459859216025,502506274100,8809750465013
+ORD250724-0028,2025-7-24,11:30:54,채정화,010-9698-6226,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459859215944,502506239100,K001-0008
+ORD250724-0028,2025-7-24,11:30:54,채정화,010-9698-6226,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,459859215944,502506239100,8809527487118
+ORD250724-0028,2025-7-24,11:30:54,채정화,010-9698-6226,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459859215944,502506239100,8809595040017
+ORD250724-0028,2025-7-24,11:30:54,채정화,010-9698-6226,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459859215944,502506239100,8809750465013
+ORD250724-0028,2025-7-24,11:30:54,채정화,010-9698-6226,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459859215944,502506239100,502506239100
+ORD250724-0028,2025-7-24,11:30:54,채정화,010-9698-6226,L001-0030,뷰티루틴 쇼핑백,2,0,0,459859215944,502506239100,L001-0030
+ORD250724-0028,2025-7-24,11:30:54,채정화,010-9698-6226,P001-0156,우디케이스,1,0,0,459859215944,502506239100,8809595040598
+ORD250724-0028,2025-7-24,11:30:54,채정화,010-9698-6226,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,459859215944,502506239100,602501062111
+ORD250724-0027,2025-7-24,11:33:52,이현정,01073727450,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459859215933,602501224133,L004-0023
+ORD250724-0027,2025-7-24,11:33:52,이현정,01073727450,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459859215933,602501224133,8809750465013
+ORD250724-0027,2025-7-24,11:33:52,이현정,01073727450,L001-0030,뷰티루틴 쇼핑백,1,0,0,459859215933,602501224133,L001-0030
+ORD250724-0027,2025-7-24,11:33:52,이현정,01073727450,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459859215933,602501224133,8809595040697
+ORD250724-0027,2025-7-24,11:33:52,이현정,01073727450,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459859215933,602501224133,K001-0007
+ORD250724-0027,2025-7-24,11:33:52,이현정,01073727450,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459859215933,602501224133,602501224133
+ORD250724-0019,2025-7-24,11:37:59,황진선,010-5306-1696,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459859215852,402505072100,8809595040017
+ORD250724-0019,2025-7-24,11:37:59,황진선,010-5306-1696,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,459859215852,402505072100,8809527487118
+ORD250724-0019,2025-7-24,11:37:59,황진선,010-5306-1696,L001-0030,뷰티루틴 쇼핑백,1,0,0,459859215852,402505072100,L001-0030
+ORD250724-0019,2025-7-24,11:37:59,황진선,010-5306-1696,P001-0156,우디케이스,1,0,0,459859215852,402505072100,8809595040598
+ORD250724-0019,2025-7-24,11:37:59,황진선,010-5306-1696,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],1,40000,400000,459859215852,402505072100,402505072100
+ORD250724-0019,2025-7-24,11:37:59,황진선,010-5306-1696,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459859215852,402505072100,K001-0008
+ORD250724-0019,2025-7-24,11:37:59,황진선,010-5306-1696,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459859215852,402505072100,8809750465013
+ORD250724-0005,2025-7-24,11:53:27,최난영 책임,032-743-0449,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),10,0,0,459857896842,602507045130,602507130130/602507249130/602507045130/602507083130/602507080130/602507286130/602507140130/602507124130/602507190130/602507213130
+ORD250724-0067,2025-7-24,15:19:45,김현지메니저,064-710-1701 ,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),5,0,0,459863255832,202506008500,602507267130/602507128130/602507084130/602507248130/602507058130
+ORD250724-0067,2025-7-24,15:19:45,김현지메니저,064-710-1701 ,P001-DS155A,DUALSONIC Lux 1Set [Face 9,000 Eye 90,000],2,9000,90000,459863255832,202506008500,202506008500/202506016500
+ORD250724-0056,2025-7-24,15:36:42,백화점 물품,010-0000-0000,P001-MM001K,[MAXIMUM_V2_YELLOW] FULL PACK (KR),10,0,0,L004-0025,302504126150,302504334150/302505909150/302505982150/302505961150/302504126150/302504536150/302504496150/302504325150/302504329150/302504341150
+ORD250724-0056,2025-7-24,15:36:42,백화점 물품,010-0000-0000,K001-0133,C/T 택배박스(560*400*420),1,0,0,L004-0025,302504126150,K001-0133
+ORD250724-0054,2025-7-24,16:0:8,백화점 물품,010-0000-0000,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),10,0,0,8809595040376,602412039120,602507261130/602507126130/602507068130/602507238130/602507274130/602507253130/602507062130/602507111130/602507123130/602507112130
+ORD250724-0054,2025-7-24,16:0:8,백화점 물품,010-0000-0000,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),3,0,0,8809595040376,602412039120,602501046111/602501940110/602502854110
+ORD250724-0054,2025-7-24,16:0:8,백화점 물품,010-0000-0000,K001-0133,C/T 택배박스(560*400*420),1,0,0,8809595040376,602412039120,K001-0133
+ORD250724-0054,2025-7-24,16:0:8,백화점 물품,010-0000-0000,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),3,0,0,8809595040376,602412039120,602412039120/602412172120/602412233120
+ORD250724-0051,2025-7-24,16:7:15,백화점 물품,010-0000-0000,P001-0152,원형케이스 퍼플,18,0,0,k001-0133,ORD250724-0051,8809595040512
+ORD250724-0051,2025-7-24,16:7:15,백화점 물품,010-0000-0000,K001-0133,C/T 택배박스(560*400*420),1,0,0,k001-0133,ORD250724-0051,K001-0133
+ORD250724-0070,2025-7-24,16:16:44,한호정,0502-3215-7892,L001-0030,뷰티루틴 쇼핑백,1,0,0,692770596765,502507292100,L001-0030
+ORD250724-0070,2025-7-24,16:16:44,한호정,0502-3215-7892,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692770596765,502507292100,JGIFT-0010
+ORD250724-0070,2025-7-24,16:16:44,한호정,0502-3215-7892,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692770596765,502507292100,8809750465013
+ORD250724-0070,2025-7-24,16:16:44,한호정,0502-3215-7892,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692770596765,502507292100,502507292100
+ORD250724-0070,2025-7-24,16:16:44,한호정,0502-3215-7892,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692770596765,502507292100,K001-0007
+ORD250724-0070,2025-7-24,16:16:44,한호정,0502-3215-7892,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,692770596765,502507292100,8809595040017
+ORD250724-0071,2025-7-24,16:23:56,이진옥,010-9328-6934,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692770596776,602501505120,8809750465013
+ORD250724-0071,2025-7-24,16:23:56,이진옥,010-9328-6934,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),1,0,0,692770596776,602501505120,602501505120
+ORD250724-0071,2025-7-24,16:23:56,이진옥,010-9328-6934,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692770596776,602501505120,K001-0007
+ORD250724-0071,2025-7-24,16:23:56,이진옥,010-9328-6934,L001-0030,뷰티루틴 쇼핑백,1,0,0,692770596776,602501505120,L001-0030
+ORD250724-0071,2025-7-24,16:23:56,이진옥,010-9328-6934,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692770596776,602501505120,8809595040017
+ORD250724-0071,2025-7-24,16:23:56,이진옥,010-9328-6934,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692770596776,602501505120,JGIFT-0010
+ORD250724-0072,2025-7-24,16:27:24,이지혜,010-4872-2579,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692770596780,602501792110,K001-0007
+ORD250724-0072,2025-7-24,16:27:24,이지혜,010-4872-2579,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692770596780,602501792110,8809595040017
+ORD250724-0072,2025-7-24,16:27:24,이지혜,010-4872-2579,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692770596780,602501792110,JGIFT-0010
+ORD250724-0072,2025-7-24,16:27:24,이지혜,010-4872-2579,L001-0030,뷰티루틴 쇼핑백,1,0,0,692770596780,602501792110,L001-0030
+ORD250724-0072,2025-7-24,16:27:24,이지혜,010-4872-2579,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,692770596780,602501792110,602501792110
+ORD250724-0072,2025-7-24,16:27:24,이지혜,010-4872-2579,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692770596780,602501792110,8809750465013
+ORD250724-0075,2025-7-24,16:29:21,김은*,0502-2476-0250,K001-0010,젤 3개 포장박스 (1호),1,0,0,692770596813,112506194000,K001-0010
+ORD250724-0075,2025-7-24,16:29:21,김은*,0502-2476-0250,P001-DS007A,DUALSONIC Pro Face CARTRIDGE 1Set,1,6000,0,692770596813,112506194000,112506194000
+ORD250724-0083,2025-7-24,17:7:51,김은희,0504-2110-4938,K001-0022,가죽케이스 박스 (2호),1,0,0,692771933323,ORD250724-0083,K001-0022
+ORD250724-0083,2025-7-24,17:7:51,김은희,0504-2110-4938,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,692771933323,ORD250724-0083,L004-0023
+ORD250724-0085,2025-7-24,17:10:4,문지원,010-6695-1610,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,692772221115,312506973100,312506973100
+ORD250724-0085,2025-7-24,17:10:4,문지원,010-6695-1610,K001-0041,단품 1SET 박스 (3호),1,0,0,692772221115,312506973100,K001-0041
+ORD250724-0085,2025-7-24,17:10:4,문지원,010-6695-1610,L001-0030,뷰티루틴 쇼핑백,1,0,0,692772221115,312506973100,L001-0030
+ORD250724-0080,2025-7-24,17:13:57,손지혜,010-5060-2341,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692771933290,502507214100,502507214100
+ORD250724-0080,2025-7-24,17:13:57,손지혜,010-5060-2341,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692771933290,502507214100,JGIFT-0010
+ORD250724-0080,2025-7-24,17:13:57,손지혜,010-5060-2341,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692771933290,502507214100,K001-0007
+ORD250724-0080,2025-7-24,17:13:57,손지혜,010-5060-2341,L001-0030,뷰티루틴 쇼핑백,1,0,0,692771933290,502507214100,L001-0030
+ORD250724-0080,2025-7-24,17:13:57,손지혜,010-5060-2341,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,692771933290,502507214100,8809595040017
+ORD250724-0080,2025-7-24,17:13:57,손지혜,010-5060-2341,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692771933290,502507214100,8809750465013
+ORD250724-0088,2025-7-24,17:16:27,듀얼소닉이명란,010-3894-6366,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,30,0,0,459864522460,ORD250724-0088,8809750465013
+ORD250724-0086,2025-7-24,17:20:15,듀얼소닉이명란,010-3894-6366,L001-0030,뷰티루틴 쇼핑백,50,0,0,459864522445,ORD250724-0086,L001-0030
+ORD250724-0086,2025-7-24,17:20:15,듀얼소닉이명란,010-3894-6366,L001-0025,DUALSONIC 쇼핑백(부직포+금박코팅),50,0,0,459864522445,ORD250724-0086,L001-0025
+ORD250724-0086,2025-7-24,17:20:15,듀얼소닉이명란,010-3894-6366,L001-0028,골드 쇼퍼백(28.4*28.4*12),100,0,0,459864522445,ORD250724-0086,L001-0028
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-25.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-25.csv
new file mode 100644
index 0000000..656b14b
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-25.csv
@@ -0,0 +1,82 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250725-0135,2025-7-25,10:27:5,董 建暉 (トウ ケンキ),080-3776-0092,JGIFT-0026,EMS Belt_Purple,1,0,0,459867222496,ORD250725-0135,8809595040741
+ORD250725-0159,2025-7-25,11:36:22,해외주문,07041187330,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459868253051,602501140132,8809595040017
+ORD250725-0159,2025-7-25,11:36:22,해외주문,07041187330,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459868253051,602501140132,602501140132
+ORD250725-0159,2025-7-25,11:36:22,해외주문,07041187330,P001-0152,원형케이스 퍼플,1,0,0,459868253051,602501140132,8809595040512
+ORD250725-0159,2025-7-25,11:36:22,해외주문,07041187330,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459868253051,602501140132,K001-0008
+ORD250725-0159,2025-7-25,11:36:22,해외주문,07041187330,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,459868253051,602501140132,L004-0023
+ORD250725-0159,2025-7-25,11:36:22,해외주문,07041187330,L001-0030,뷰티루틴 쇼핑백,1,0,0,459868253051,602501140132,L001-0030
+ORD250725-0134,2025-7-25,11:39:31,백정주,010-7193-8246,K001-0010,젤 3개 포장박스 (1호),1,0,0,459867094971,ORD250725-0134,K001-0010
+ORD250725-0134,2025-7-25,11:39:31,백정주,010-7193-8246,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,459867094971,ORD250725-0134,L004-0023
+ORD250725-0156,2025-7-25,11:42:12,전현옥,0504-2258-0754,K001-0022,가죽케이스 박스 (2호),1,0,0,459868253025,ORD250725-0156,K001-0022
+ORD250725-0156,2025-7-25,11:42:12,전현옥,0504-2258-0754,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459868253025,ORD250725-0156,L004-0023
+ORD250725-0157,2025-7-25,11:45:29,정다혜,01049214715,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459868253036,502507211100,502507211100
+ORD250725-0157,2025-7-25,11:45:29,정다혜,01049214715,L001-0030,뷰티루틴 쇼핑백,2,0,0,459868253036,502507211100,L001-0030
+ORD250725-0157,2025-7-25,11:45:29,정다혜,01049214715,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459868253036,502507211100,K001-0008
+ORD250725-0157,2025-7-25,11:45:29,정다혜,01049214715,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459868253036,502507211100,602501251131
+ORD250725-0158,2025-7-25,11:48:35,해외주문,07041187330,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,459868253040,602501337133,L004-0023
+ORD250725-0158,2025-7-25,11:48:35,해외주문,07041187330,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459868253040,602501337133,8809595040017
+ORD250725-0158,2025-7-25,11:48:35,해외주문,07041187330,P001-0152,원형케이스 퍼플,1,0,0,459868253040,602501337133,8809595040512
+ORD250725-0158,2025-7-25,11:48:35,해외주문,07041187330,L001-0030,뷰티루틴 쇼핑백,1,0,0,459868253040,602501337133,L001-0030
+ORD250725-0158,2025-7-25,11:48:35,해외주문,07041187330,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459868253040,602501337133,602501337133
+ORD250725-0158,2025-7-25,11:48:35,해외주문,07041187330,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459868253040,602501337133,K001-0008
+ORD250725-0145,2025-7-25,11:49:59,이희령,010-4909-9839,L001-0030,뷰티루틴 쇼핑백,1,0,0,459868252911,ORD250725-0145,L001-0030
+ORD250725-0145,2025-7-25,11:49:59,이희령,010-4909-9839,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459868252911,ORD250725-0145,K001-0020
+ORD250725-0145,2025-7-25,11:49:59,이희령,010-4909-9839,L004-0030,Elixir Lifting Collagen Mask(엘릭시르 콜라겐 마스크팩) 24ML 10EA,2,0,0,459868252911,ORD250725-0145,8809750465037
+ORD250725-0145,2025-7-25,11:49:59,이희령,010-4909-9839,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,459868252911,ORD250725-0145,8809750465013
+ORD250725-0154,2025-7-25,11:55:19,채지영,0504-2272-3381,P001-0152,원형케이스 퍼플,1,0,0,459868253003,602501163133,8809595040512
+ORD250725-0154,2025-7-25,11:55:19,채지영,0504-2272-3381,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459868253003,602501163133,L004-0023
+ORD250725-0154,2025-7-25,11:55:19,채지영,0504-2272-3381,L001-0030,뷰티루틴 쇼핑백,1,0,0,459868253003,602501163133,L001-0030
+ORD250725-0154,2025-7-25,11:55:19,채지영,0504-2272-3381,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,459868253003,602501163133,8809750465013
+ORD250725-0154,2025-7-25,11:55:19,채지영,0504-2272-3381,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459868253003,602501163133,602501163133
+ORD250725-0154,2025-7-25,11:55:19,채지영,0504-2272-3381,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459868253003,602501163133,K001-0008
+ORD250725-0154,2025-7-25,11:55:19,채지영,0504-2272-3381,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,459868253003,602501163133,8809595040017
+ORD250725-0161,2025-7-25,13:48:45,광교 갤러리아 ,,P001-MM001L,[MAXIMUM_V2_PEACH] FULL PACK (KR),4,0,0,L004-0020,312504058160,312505039160/312507001160/312505040160/312504058160
+ORD250725-0161,2025-7-25,13:48:45,광교 갤러리아 ,,P001-MM001M,[MAXIMUM_V2_SHINE MINT] FULL PACK (KR),16,0,0,L004-0020,312504058160,312506014120/312506010120/312506009120/312506001120/312506017120/312506012120/312506006120/312506016120/312506005120/312506004120/312506002120/312506003120/312506015120/312506008120/312506013120/312506011120
+ORD250725-0183,2025-7-25,15:14:15,홍인표,01093154054,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692787362303,ORD250725-0183,L001-0032
+ORD250725-0183,2025-7-25,15:14:15,홍인표,01093154054,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692787362303,ORD250725-0183,K001-0008
+ORD250725-0183,2025-7-25,15:14:15,홍인표,01093154054,JGIFT-0026,EMS Belt_Purple,1,0,0,692787362303,ORD250725-0183,8809595040741
+ORD250725-0182,2025-7-25,15:16:28,김태호,01036136421,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692787362292,ORD250725-0182,K001-0008
+ORD250725-0182,2025-7-25,15:16:28,김태호,01036136421,JGIFT-0026,EMS Belt_Purple,1,0,0,692787362292,ORD250725-0182,8809595040741
+ORD250725-0182,2025-7-25,15:16:28,김태호,01036136421,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692787362292,ORD250725-0182,L001-0032
+ORD250725-0181,2025-7-25,15:18:29,권태희,01051790130,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692787362281,ORD250725-0181,L001-0032
+ORD250725-0181,2025-7-25,15:18:29,권태희,01051790130,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692787362281,ORD250725-0181,K001-0008
+ORD250725-0181,2025-7-25,15:18:29,권태희,01051790130,JGIFT-0025,EMS Belt_Peach,1,0,0,692787362281,ORD250725-0181,8809595040734
+ORD250725-0180,2025-7-25,15:21:46,박진영,01025256695,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692787362270,ORD250725-0180,L001-0032
+ORD250725-0180,2025-7-25,15:21:46,박진영,01025256695,JGIFT-0024,EMS Belt_Mint,1,0,0,692787362270,ORD250725-0180,8809595040758
+ORD250725-0180,2025-7-25,15:21:46,박진영,01025256695,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692787362270,ORD250725-0180,K001-0008
+ORD250725-0179,2025-7-25,15:24:38,PJH,01034529698,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692787362266,ORD250725-0179,L001-0032
+ORD250725-0179,2025-7-25,15:24:38,PJH,01034529698,JGIFT-0024,EMS Belt_Mint,1,0,0,692787362266,ORD250725-0179,8809595040758
+ORD250725-0179,2025-7-25,15:24:38,PJH,01034529698,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692787362266,ORD250725-0179,K001-0008
+ORD250725-0177,2025-7-25,15:26:49,배민정,010-8689-5582,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692787362244,ORD250725-0177,L001-0032
+ORD250725-0177,2025-7-25,15:26:49,배민정,010-8689-5582,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692787362244,ORD250725-0177,K001-0008
+ORD250725-0177,2025-7-25,15:26:49,배민정,010-8689-5582,JGIFT-0025,EMS Belt_Peach,1,0,0,692787362244,ORD250725-0177,8809595040734
+ORD250725-0176,2025-7-25,15:29:21,김서진,010-4082-4771,JGIFT-0026,EMS Belt_Purple,1,0,0,692787362233,ORD250725-0176,8809595040741
+ORD250725-0176,2025-7-25,15:29:21,김서진,010-4082-4771,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692787362233,ORD250725-0176,L001-0032
+ORD250725-0176,2025-7-25,15:29:21,김서진,010-4082-4771,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692787362233,ORD250725-0176,K001-0008
+ORD250725-0175,2025-7-25,15:32:18,금수연,010-5360-9273,K001-0022,가죽케이스 박스 (2호),1,0,0,692787362222,ORD250725-0175,K001-0022
+ORD250725-0175,2025-7-25,15:32:18,금수연,010-5360-9273,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692787362222,ORD250725-0175,L004-0023
+ORD250725-0170,2025-7-25,15:34:4,이영지,01089838822,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,692787362174,ORD250725-0170,8809595040635
+ORD250725-0170,2025-7-25,15:34:4,이영지,01089838822,K001-0041,단품 1SET 박스 (3호),1,0,0,692787362174,ORD250725-0170,K001-0041
+ORD250725-0170,2025-7-25,15:34:4,이영지,01089838822,L001-0030,뷰티루틴 쇼핑백,1,0,0,692787362174,ORD250725-0170,L001-0030
+ORD250725-0184,2025-7-25,15:35:55,이은정,01022133393,JGIFT-0026,EMS Belt_Purple,1,0,0,692787362314,ORD250725-0184,8809595040741
+ORD250725-0184,2025-7-25,15:35:55,이은정,01022133393,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692787362314,ORD250725-0184,K001-0008
+ORD250725-0184,2025-7-25,15:35:55,이은정,01022133393,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692787362314,ORD250725-0184,L001-0032
+ORD250725-0172,2025-7-25,15:40:43,정윤정,010-2578-5337,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692787362196,602501932132,K001-0007
+ORD250725-0172,2025-7-25,15:40:43,정윤정,010-2578-5337,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692787362196,602501932132,8809595040017
+ORD250725-0172,2025-7-25,15:40:43,정윤정,010-2578-5337,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692787362196,602501932132,8809750465013
+ORD250725-0172,2025-7-25,15:40:43,정윤정,010-2578-5337,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692787362196,602501932132,JGIFT-0010
+ORD250725-0172,2025-7-25,15:40:43,정윤정,010-2578-5337,L001-0030,뷰티루틴 쇼핑백,1,0,0,692787362196,602501932132,L001-0030
+ORD250725-0172,2025-7-25,15:40:43,정윤정,010-2578-5337,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,692787362196,602501932132,602501932132
+ORD250725-0203,2025-7-25,15:59:26,최경림(이태호),01087031770,JGIFT-0026,EMS Belt_Purple,1,0,0,692788902255,ORD250725-0203,8809595040741
+ORD250725-0203,2025-7-25,15:59:26,최경림(이태호),01087031770,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692788902255,ORD250725-0203,L001-0032
+ORD250725-0203,2025-7-25,15:59:26,최경림(이태호),01087031770,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692788902255,ORD250725-0203,K001-0008
+ORD250725-0202,2025-7-25,16:0:20,정윤정,01085883237,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692788902244,ORD250725-0202,L001-0032
+ORD250725-0202,2025-7-25,16:0:20,정윤정,01085883237,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692788902244,ORD250725-0202,K001-0008
+ORD250725-0202,2025-7-25,16:0:20,정윤정,01085883237,JGIFT-0026,EMS Belt_Purple,1,0,0,692788902244,ORD250725-0202,8809595040741
+ORD250725-0201,2025-7-25,16:1:22,백승희,01072081955,JGIFT-0026,EMS Belt_Purple,1,0,0,692788902233,ORD250725-0201,8809595040741
+ORD250725-0201,2025-7-25,16:1:22,백승희,01072081955,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692788902233,ORD250725-0201,K001-0008
+ORD250725-0201,2025-7-25,16:1:22,백승희,01072081955,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692788902233,ORD250725-0201,L001-0032
+ORD250725-0200,2025-7-25,16:2:15,조윤주,01020747250,JGIFT-0026,EMS Belt_Purple,1,0,0,692788902222,ORD250725-0200,8809595040741
+ORD250725-0200,2025-7-25,16:2:15,조윤주,01020747250,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692788902222,ORD250725-0200,K001-0008
+ORD250725-0200,2025-7-25,16:2:15,조윤주,01020747250,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692788902222,ORD250725-0200,L001-0032
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-28.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-28.csv
new file mode 100644
index 0000000..59b9f1c
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-28.csv
@@ -0,0 +1,251 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250728-0007,2025-7-28,10:15:29,쿠팡 인천4_4,070-4481-8846,K001-0041,택배박스_3호_305*255*185,1,0,0,692788033345,312505102180,K001-0041
+ORD250728-0007,2025-7-28,10:15:29,쿠팡 인천4_4,070-4481-8846,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),1,0,0,692788033345,312505102180,312505102180
+ORD250728-0008,2025-7-28,10:22:54,쿠팡 인천4_5,070-4481-8846,K001-0041,택배박스_3호_305*255*185,1,0,0,692788033356,312505870180,K001-0041
+ORD250728-0008,2025-7-28,10:22:54,쿠팡 인천4_5,070-4481-8846,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),1,0,0,692788033356,312505870180,312505870180
+ORD250728-0009,2025-7-28,10:28:16,쿠팡 인천4_6,070-4481-8846,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),1,0,0,692788033360,312505908180,312505908180
+ORD250728-0009,2025-7-28,10:28:16,쿠팡 인천4_6,070-4481-8846,K001-0041,택배박스_3호_305*255*185,1,0,0,692788033360,312505908180,K001-0041
+ORD250728-0003,2025-7-28,10:39:53,쿠팡 인천4,070-4481-8846,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),1,0,0,692788033301,602503545120,602503545120
+ORD250728-0003,2025-7-28,10:39:53,쿠팡 인천4,070-4481-8846,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,692788033301,602503545120,602503631111
+ORD250728-0003,2025-7-28,10:39:53,쿠팡 인천4,070-4481-8846,K001-0007,택배박스_5호_400*250*300,1,0,0,692788033301,602503545120,K001-0007
+ORD250728-0003,2025-7-28,10:39:53,쿠팡 인천4,070-4481-8846,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,692788033301,602503545120,602507384130
+ORD250728-0015,2025-7-28,11:1:42,조수현 매니저,010-3597-0313,JGIFT-0024,EMS Belt_Mint,2,0,0,459881829153,502408049180,8809595040758
+ORD250728-0015,2025-7-28,11:1:42,조수현 매니저,010-3597-0313,P001-AT001B,[ALTO_PURPLE] FULL PACK (KR),3,0,0,459881829153,502408049180,502408657180/502408049180/502408623180
+ORD250728-0017,2025-7-28,11:51:44,해외거래처,02-3143-5555,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459882888010,ORD250728-0017,8809595040628
+ORD250728-0017,2025-7-28,11:51:44,해외거래처,02-3143-5555,K001-0022,택배박스_2호_270*180*170,1,0,0,459882888010,ORD250728-0017,K001-0022
+ORD250728-0019,2025-7-28,11:54:49,해외거래처,02-3143-5555,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459882900050,ORD250728-0019,8809595040628
+ORD250728-0019,2025-7-28,11:54:49,해외거래처,02-3143-5555,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459882900050,ORD250728-0019,8809595040635
+ORD250728-0019,2025-7-28,11:54:49,해외거래처,02-3143-5555,K001-0022,택배박스_2호_270*180*170,1,0,0,459882900050,ORD250728-0019,K001-0022
+ORD250728-0018,2025-7-28,12:0:24,해외거래처,02-3143-5555,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459882898963,ORD250728-0018,8809595040635
+ORD250728-0018,2025-7-28,12:0:24,해외거래처,02-3143-5555,K001-0022,택배박스_2호_270*180*170,1,0,0,459882898963,ORD250728-0018,K001-0022
+ORD250728-0151,2025-7-28,13:34:40,박정순,010-9053-5878,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459884117442,312506716100,312506716100
+ORD250728-0151,2025-7-28,13:34:40,박정순,010-9053-5878,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459884117442,312506716100,8809595040017
+ORD250728-0151,2025-7-28,13:34:40,박정순,010-9053-5878,P001-0156,우디케이스,1,0,0,459884117442,312506716100,8809595040598
+ORD250728-0151,2025-7-28,13:34:40,박정순,010-9053-5878,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459884117442,312506716100,502507344100
+ORD250728-0151,2025-7-28,13:34:40,박정순,010-9053-5878,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117442,312506716100,K001-0008
+ORD250728-0151,2025-7-28,13:34:40,박정순,010-9053-5878,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459884117442,312506716100,8809750465013
+ORD250728-0151,2025-7-28,13:34:40,박정순,010-9053-5878,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,459884117442,312506716100,8809527487118
+ORD250728-0151,2025-7-28,13:34:40,박정순,010-9053-5878,L001-0030,뷰티루틴 쇼핑백,2,0,0,459884117442,312506716100,L001-0030
+ORD250728-0155,2025-7-28,13:38:30,우윤지,010-8795-7387,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459884117486,312506758100,312506758100
+ORD250728-0155,2025-7-28,13:38:30,우윤지,010-8795-7387,K001-0007,택배박스_5호_400*250*300,1,0,0,459884117486,312506758100,K001-0007
+ORD250728-0155,2025-7-28,13:38:30,우윤지,010-8795-7387,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459884117486,312506758100,L004-0023
+ORD250728-0155,2025-7-28,13:38:30,우윤지,010-8795-7387,L001-0030,뷰티루틴 쇼핑백,1,0,0,459884117486,312506758100,L001-0030
+ORD250728-0152,2025-7-28,13:42:8,안기영,01095713272,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,459884117453,312506710100,8809595040697
+ORD250728-0152,2025-7-28,13:42:8,안기영,01095713272,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459884117453,312506710100,L004-0023
+ORD250728-0152,2025-7-28,13:42:8,안기영,01095713272,L001-0030,뷰티루틴 쇼핑백,1,0,0,459884117453,312506710100,L001-0030
+ORD250728-0152,2025-7-28,13:42:8,안기영,01095713272,K001-0007,택배박스_5호_400*250*300,1,0,0,459884117453,312506710100,K001-0007
+ORD250728-0152,2025-7-28,13:42:8,안기영,01095713272,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459884117453,312506710100,8809750465013
+ORD250728-0152,2025-7-28,13:42:8,안기영,01095713272,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459884117453,312506710100,312506710100
+ORD250728-0113,2025-7-28,13:46:20,정선희,010-5547-7874,L001-0030,뷰티루틴 쇼핑백,1,0,0,459884117066,312507187101,L001-0030
+ORD250728-0113,2025-7-28,13:46:20,정선희,010-5547-7874,P001-0152,원형케이스 퍼플,1,0,0,459884117066,312507187101,8809595040512
+ORD250728-0113,2025-7-28,13:46:20,정선희,010-5547-7874,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459884117066,312507187101,8809595040017
+ORD250728-0113,2025-7-28,13:46:20,정선희,010-5547-7874,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,459884117066,312507187101,8809527487118
+ORD250728-0113,2025-7-28,13:46:20,정선희,010-5547-7874,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459884117066,312507187101,312507187101
+ORD250728-0113,2025-7-28,13:46:20,정선희,010-5547-7874,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117066,312507187101,K001-0008
+ORD250728-0113,2025-7-28,13:46:20,정선희,010-5547-7874,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459884117066,312507187101,8809750465013
+ORD250728-0114,2025-7-28,13:50:47,조현정,010-6251-6906,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,459884117070,312507344101,8809527487118
+ORD250728-0114,2025-7-28,13:50:47,조현정,010-6251-6906,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459884117070,312507344101,8809750465013
+ORD250728-0114,2025-7-28,13:50:47,조현정,010-6251-6906,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117070,312507344101,K001-0008
+ORD250728-0114,2025-7-28,13:50:47,조현정,010-6251-6906,L001-0030,뷰티루틴 쇼핑백,1,0,0,459884117070,312507344101,L001-0030
+ORD250728-0114,2025-7-28,13:50:47,조현정,010-6251-6906,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459884117070,312507344101,312507344101
+ORD250728-0114,2025-7-28,13:50:47,조현정,010-6251-6906,P001-0152,원형케이스 퍼플,1,0,0,459884117070,312507344101,8809595040512
+ORD250728-0114,2025-7-28,13:50:47,조현정,010-6251-6906,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459884117070,312507344101,8809595040017
+ORD250728-0112,2025-7-28,13:55:17,서진선,0502-3618-7551,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,459884117055,312507013101,8809527487118
+ORD250728-0112,2025-7-28,13:55:17,서진선,0502-3618-7551,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459884117055,312507013101,8809750465013
+ORD250728-0112,2025-7-28,13:55:17,서진선,0502-3618-7551,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459884117055,312507013101,8809595040017
+ORD250728-0112,2025-7-28,13:55:17,서진선,0502-3618-7551,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117055,312507013101,K001-0008
+ORD250728-0112,2025-7-28,13:55:17,서진선,0502-3618-7551,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459884117055,312507013101,312507013101
+ORD250728-0112,2025-7-28,13:55:17,서진선,0502-3618-7551,P001-0152,원형케이스 퍼플,1,0,0,459884117055,312507013101,8809595040512
+ORD250728-0112,2025-7-28,13:55:17,서진선,0502-3618-7551,L001-0030,뷰티루틴 쇼핑백,1,0,0,459884117055,312507013101,L001-0030
+ORD250728-0111,2025-7-28,13:59:34,배관순,010-6272-6368,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117044,312507948100,K001-0008
+ORD250728-0111,2025-7-28,13:59:34,배관순,010-6272-6368,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459884117044,312507948100,312507948100
+ORD250728-0111,2025-7-28,13:59:34,배관순,010-6272-6368,P001-0152,원형케이스 퍼플,1,0,0,459884117044,312507948100,8809595040512
+ORD250728-0111,2025-7-28,13:59:34,배관순,010-6272-6368,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,459884117044,312507948100,8809527487118
+ORD250728-0111,2025-7-28,13:59:34,배관순,010-6272-6368,L001-0030,뷰티루틴 쇼핑백,1,0,0,459884117044,312507948100,L001-0030
+ORD250728-0111,2025-7-28,13:59:34,배관순,010-6272-6368,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459884117044,312507948100,8809595040017
+ORD250728-0111,2025-7-28,13:59:34,배관순,010-6272-6368,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459884117044,312507948100,8809750465013
+ORD250728-0110,2025-7-28,14:3:55,임은영,010-5396-8627,P001-0152,원형케이스 퍼플,1,0,0,459884117033,312507061101,8809595040512
+ORD250728-0110,2025-7-28,14:3:55,임은영,010-5396-8627,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,459884117033,312507061101,8809527487118
+ORD250728-0110,2025-7-28,14:3:55,임은영,010-5396-8627,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459884117033,312507061101,312507061101
+ORD250728-0110,2025-7-28,14:3:55,임은영,010-5396-8627,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117033,312507061101,K001-0008
+ORD250728-0110,2025-7-28,14:3:55,임은영,010-5396-8627,L001-0030,뷰티루틴 쇼핑백,1,0,0,459884117033,312507061101,L001-0030
+ORD250728-0110,2025-7-28,14:3:55,임은영,010-5396-8627,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459884117033,312507061101,8809750465013
+ORD250728-0110,2025-7-28,14:3:55,임은영,010-5396-8627,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459884117033,312507061101,8809595040017
+ORD250728-0109,2025-7-28,14:8:13,김희영,010-6205-5349,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459884117022,312507115101,8809595040017
+ORD250728-0109,2025-7-28,14:8:13,김희영,010-6205-5349,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459884117022,312507115101,8809750465013
+ORD250728-0109,2025-7-28,14:8:13,김희영,010-6205-5349,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459884117022,312507115101,312507115101
+ORD250728-0109,2025-7-28,14:8:13,김희영,010-6205-5349,P001-0152,원형케이스 퍼플,1,0,0,459884117022,312507115101,8809595040512
+ORD250728-0109,2025-7-28,14:8:13,김희영,010-6205-5349,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,459884117022,312507115101,8809527487118
+ORD250728-0109,2025-7-28,14:8:13,김희영,010-6205-5349,L001-0030,뷰티루틴 쇼핑백,1,0,0,459884117022,312507115101,L001-0030
+ORD250728-0109,2025-7-28,14:8:13,김희영,010-6205-5349,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117022,312507115101,K001-0008
+ORD250728-0108,2025-7-28,14:11:41,최연순,010-8781-7340,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459884117011,312507269101,8809595040017
+ORD250728-0108,2025-7-28,14:11:41,최연순,010-8781-7340,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459884117011,312507269101,8809750465013
+ORD250728-0108,2025-7-28,14:11:41,최연순,010-8781-7340,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,459884117011,312507269101,8809527487118
+ORD250728-0108,2025-7-28,14:11:41,최연순,010-8781-7340,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117011,312507269101,K001-0008
+ORD250728-0108,2025-7-28,14:11:41,최연순,010-8781-7340,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459884117011,312507269101,312507269101
+ORD250728-0108,2025-7-28,14:11:41,최연순,010-8781-7340,L001-0030,뷰티루틴 쇼핑백,1,0,0,459884117011,312507269101,L001-0030
+ORD250728-0108,2025-7-28,14:11:41,최연순,010-8781-7340,P001-0152,원형케이스 퍼플,1,0,0,459884117011,312507269101,8809595040512
+ORD250728-0107,2025-7-28,14:15:2,박희동,0502-3017-7548,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459884117000,312507343101,8809750465013
+ORD250728-0107,2025-7-28,14:15:2,박희동,0502-3017-7548,P001-0152,원형케이스 퍼플,1,0,0,459884117000,312507343101,8809595040512
+ORD250728-0107,2025-7-28,14:15:2,박희동,0502-3017-7548,L001-0030,뷰티루틴 쇼핑백,1,0,0,459884117000,312507343101,L001-0030
+ORD250728-0107,2025-7-28,14:15:2,박희동,0502-3017-7548,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,459884117000,312507343101,8809527487118
+ORD250728-0107,2025-7-28,14:15:2,박희동,0502-3017-7548,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459884117000,312507343101,8809595040017
+ORD250728-0107,2025-7-28,14:15:2,박희동,0502-3017-7548,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117000,312507343101,K001-0008
+ORD250728-0107,2025-7-28,14:15:2,박희동,0502-3017-7548,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459884117000,312507343101,312507343101
+ORD250728-0106,2025-7-28,14:18:43,김현미,010-4744-4738,L001-0030,뷰티루틴 쇼핑백,1,0,0,459884116996,312505099180,L001-0030
+ORD250728-0106,2025-7-28,14:18:43,김현미,010-4744-4738,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,459884116996,312505099180,8809527487118
+ORD250728-0106,2025-7-28,14:18:43,김현미,010-4744-4738,K001-0008,택배박스_6호_410x265x360,1,0,0,459884116996,312505099180,K001-0008
+ORD250728-0106,2025-7-28,14:18:43,김현미,010-4744-4738,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459884116996,312505099180,8809750465013
+ORD250728-0106,2025-7-28,14:18:43,김현미,010-4744-4738,P001-0152,원형케이스 퍼플,1,0,0,459884116996,312505099180,8809595040512
+ORD250728-0106,2025-7-28,14:18:43,김현미,010-4744-4738,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),1,0,0,459884116996,312505099180,312505099180
+ORD250728-0106,2025-7-28,14:18:43,김현미,010-4744-4738,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459884116996,312505099180,8809595040017
+ORD250728-0134,2025-7-28,14:24:50,하세라,010-5714-4401,JGIFT-0025,EMS Belt_Peach,1,0,0,459884117276,602503621110,8809595040734
+ORD250728-0134,2025-7-28,14:24:50,하세라,010-5714-4401,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459884117276,602503621110,JGIFT-0010
+ORD250728-0134,2025-7-28,14:24:50,하세라,010-5714-4401,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459884117276,602503621110,8809750465013
+ORD250728-0134,2025-7-28,14:24:50,하세라,010-5714-4401,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,459884117276,602503621110,602503621110
+ORD250728-0134,2025-7-28,14:24:50,하세라,010-5714-4401,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117276,602503621110,K001-0008
+ORD250728-0134,2025-7-28,14:24:50,하세라,010-5714-4401,L001-0030,뷰티루틴 쇼핑백,1,0,0,459884117276,602503621110,L001-0030
+ORD250728-0134,2025-7-28,14:24:50,하세라,010-5714-4401,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117276,602503621110,L001-0032
+ORD250728-0134,2025-7-28,14:24:50,하세라,010-5714-4401,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459884117276,602503621110,8809595040017
+ORD250728-0145,2025-7-28,14:38:14,김수진,010-8509-7792,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117383,ORD250728-0145,L001-0032
+ORD250728-0145,2025-7-28,14:38:14,김수진,010-8509-7792,JGIFT-0024,EMS Belt_Mint,1,0,0,459884117383,ORD250728-0145,8809595040758
+ORD250728-0145,2025-7-28,14:38:14,김수진,010-8509-7792,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117383,ORD250728-0145,K001-0008
+ORD250728-0183,2025-7-28,14:39:39,임왕규,01089919575,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117744,ORD250728-0183,L001-0032
+ORD250728-0183,2025-7-28,14:39:39,임왕규,01089919575,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117744,ORD250728-0183,K001-0008
+ORD250728-0183,2025-7-28,14:39:39,임왕규,01089919575,JGIFT-0024,EMS Belt_Mint,1,0,0,459884117744,ORD250728-0183,8809595040758
+ORD250728-0182,2025-7-28,14:42:2,김희성,01091967268,JGIFT-0024,EMS Belt_Mint,1,0,0,459884117733,ORD250728-0182,8809595040758
+ORD250728-0182,2025-7-28,14:42:2,김희성,01091967268,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117733,ORD250728-0182,L001-0032
+ORD250728-0182,2025-7-28,14:42:2,김희성,01091967268,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117733,ORD250728-0182,K001-0008
+ORD250728-0181,2025-7-28,14:43:48,천범성,01022458327,JGIFT-0024,EMS Belt_Mint,1,0,0,459884117722,ORD250728-0181,8809595040758
+ORD250728-0181,2025-7-28,14:43:48,천범성,01022458327,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117722,ORD250728-0181,K001-0008
+ORD250728-0181,2025-7-28,14:43:48,천범성,01022458327,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117722,ORD250728-0181,L001-0032
+ORD250728-0180,2025-7-28,14:45:35,문인숙,0312866989,JGIFT-0024,EMS Belt_Mint,1,0,0,459884117711,ORD250728-0180,8809595040758
+ORD250728-0180,2025-7-28,14:45:35,문인숙,0312866989,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117711,ORD250728-0180,L001-0032
+ORD250728-0180,2025-7-28,14:45:35,문인숙,0312866989,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117711,ORD250728-0180,K001-0008
+ORD250728-0179,2025-7-28,14:46:40,양인영,01065250048,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117700,ORD250728-0179,L001-0032
+ORD250728-0179,2025-7-28,14:46:40,양인영,01065250048,JGIFT-0024,EMS Belt_Mint,1,0,0,459884117700,ORD250728-0179,8809595040758
+ORD250728-0179,2025-7-28,14:46:40,양인영,01065250048,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117700,ORD250728-0179,K001-0008
+ORD250728-0178,2025-7-28,14:47:56,황해영,01035517589,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117696,ORD250728-0178,K001-0008
+ORD250728-0178,2025-7-28,14:47:56,황해영,01035517589,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117696,ORD250728-0178,L001-0032
+ORD250728-0178,2025-7-28,14:47:56,황해영,01035517589,JGIFT-0024,EMS Belt_Mint,1,0,0,459884117696,ORD250728-0178,8809595040758
+ORD250728-0177,2025-7-28,14:49:19,유혜원,01082229587,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117685,ORD250728-0177,L001-0032
+ORD250728-0177,2025-7-28,14:49:19,유혜원,01082229587,JGIFT-0024,EMS Belt_Mint,1,0,0,459884117685,ORD250728-0177,8809595040758
+ORD250728-0177,2025-7-28,14:49:19,유혜원,01082229587,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117685,ORD250728-0177,K001-0008
+ORD250728-0176,2025-7-28,14:50:40,김미경,01023082816,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117674,ORD250728-0176,K001-0008
+ORD250728-0176,2025-7-28,14:50:40,김미경,01023082816,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117674,ORD250728-0176,L001-0032
+ORD250728-0176,2025-7-28,14:50:40,김미경,01023082816,JGIFT-0024,EMS Belt_Mint,1,0,0,459884117674,ORD250728-0176,8809595040758
+ORD250728-0175,2025-7-28,14:52:7,서정혜,01050341662,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117663,ORD250728-0175,L001-0032
+ORD250728-0175,2025-7-28,14:52:7,서정혜,01050341662,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117663,ORD250728-0175,K001-0008
+ORD250728-0175,2025-7-28,14:52:7,서정혜,01050341662,JGIFT-0024,EMS Belt_Mint,1,0,0,459884117663,ORD250728-0175,8809595040758
+ORD250728-0174,2025-7-28,14:54:4,최정국,01026982713,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117652,ORD250728-0174,L001-0032
+ORD250728-0174,2025-7-28,14:54:4,최정국,01026982713,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117652,ORD250728-0174,K001-0008
+ORD250728-0174,2025-7-28,14:54:4,최정국,01026982713,JGIFT-0024,EMS Belt_Mint,1,0,0,459884117652,ORD250728-0174,8809595040758
+ORD250728-0173,2025-7-28,14:55:58,김희정,01052260036,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117641,ORD250728-0173,K001-0008
+ORD250728-0173,2025-7-28,14:55:58,김희정,01052260036,JGIFT-0024,EMS Belt_Mint,1,0,0,459884117641,ORD250728-0173,8809595040758
+ORD250728-0173,2025-7-28,14:55:58,김희정,01052260036,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117641,ORD250728-0173,L001-0032
+ORD250728-0172,2025-7-28,14:57:23,민경천,01089657270,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117630,ORD250728-0172,K001-0008
+ORD250728-0172,2025-7-28,14:57:23,민경천,01089657270,JGIFT-0024,EMS Belt_Mint,1,0,0,459884117630,ORD250728-0172,8809595040758
+ORD250728-0172,2025-7-28,14:57:23,민경천,01089657270,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117630,ORD250728-0172,L001-0032
+ORD250728-0171,2025-7-28,14:59:11,최유리,01071179733,JGIFT-0024,EMS Belt_Mint,1,0,0,459884117626,ORD250728-0171,8809595040758
+ORD250728-0171,2025-7-28,14:59:11,최유리,01071179733,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117626,ORD250728-0171,L001-0032
+ORD250728-0171,2025-7-28,14:59:11,최유리,01071179733,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117626,ORD250728-0171,K001-0008
+ORD250728-0170,2025-7-28,15:14:46,이상희,01044167982,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117615,ORD250728-0170,K001-0008
+ORD250728-0170,2025-7-28,15:14:46,이상희,01044167982,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117615,ORD250728-0170,L001-0032
+ORD250728-0170,2025-7-28,15:14:46,이상희,01044167982,JGIFT-0024,EMS Belt_Mint,1,0,0,459884117615,ORD250728-0170,8809595040758
+ORD250728-0169,2025-7-28,15:16:34,김욱진,01025458763,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117604,ORD250728-0169,L001-0032
+ORD250728-0169,2025-7-28,15:16:34,김욱진,01025458763,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117604,ORD250728-0169,K001-0008
+ORD250728-0169,2025-7-28,15:16:34,김욱진,01025458763,JGIFT-0024,EMS Belt_Mint,1,0,0,459884117604,ORD250728-0169,8809595040758
+ORD250728-0168,2025-7-28,15:18:0,이영범,01089746794,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117593,ORD250728-0168,K001-0008
+ORD250728-0168,2025-7-28,15:18:0,이영범,01089746794,JGIFT-0024,EMS Belt_Mint,1,0,0,459884117593,ORD250728-0168,8809595040758
+ORD250728-0168,2025-7-28,15:18:0,이영범,01089746794,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117593,ORD250728-0168,L001-0032
+ORD250728-0146,2025-7-28,15:19:27,임경숙,010-4802-5535,JGIFT-0024,EMS Belt_Mint,1,0,0,459884117394,ORD250728-0146,8809595040758
+ORD250728-0146,2025-7-28,15:19:27,임경숙,010-4802-5535,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117394,ORD250728-0146,L001-0032
+ORD250728-0146,2025-7-28,15:19:27,임경숙,010-4802-5535,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117394,ORD250728-0146,K001-0008
+ORD250728-0105,2025-7-28,15:23:52,장*희,0502-6316-1589,JGIFT-0025,EMS Belt_Peach,1,0,0,459884116985,ORD250728-0105,8809595040734
+ORD250728-0105,2025-7-28,15:23:52,장*희,0502-6316-1589,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884116985,ORD250728-0105,L001-0032
+ORD250728-0105,2025-7-28,15:23:52,장*희,0502-6316-1589,K001-0008,택배박스_6호_410x265x360,1,0,0,459884116985,ORD250728-0105,K001-0008
+ORD250728-0150,2025-7-28,15:24:58,김은진,010-4749-1546,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117431,ORD250728-0150,K001-0008
+ORD250728-0150,2025-7-28,15:24:58,김은진,010-4749-1546,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117431,ORD250728-0150,L001-0032
+ORD250728-0150,2025-7-28,15:24:58,김은진,010-4749-1546,JGIFT-0025,EMS Belt_Peach,1,0,0,459884117431,ORD250728-0150,8809595040734
+ORD250728-0149,2025-7-28,15:27:7,홍채원,010-9459-0109,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117420,ORD250728-0149,L001-0032
+ORD250728-0149,2025-7-28,15:27:7,홍채원,010-9459-0109,JGIFT-0025,EMS Belt_Peach,1,0,0,459884117420,ORD250728-0149,8809595040734
+ORD250728-0149,2025-7-28,15:27:7,홍채원,010-9459-0109,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117420,ORD250728-0149,K001-0008
+ORD250728-0148,2025-7-28,15:28:24,유예린,010-6400-2246,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117416,ORD250728-0148,L001-0032
+ORD250728-0148,2025-7-28,15:28:24,유예린,010-6400-2246,JGIFT-0025,EMS Belt_Peach,1,0,0,459884117416,ORD250728-0148,8809595040734
+ORD250728-0148,2025-7-28,15:28:24,유예린,010-6400-2246,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117416,ORD250728-0148,K001-0008
+ORD250728-0103,2025-7-28,15:30:35,이*숙,0502-6202-2106,JGIFT-0026,EMS Belt_Purple,1,0,0,459884116963,ORD250728-0103,8809595040741
+ORD250728-0103,2025-7-28,15:30:35,이*숙,0502-6202-2106,K001-0008,택배박스_6호_410x265x360,1,0,0,459884116963,ORD250728-0103,K001-0008
+ORD250728-0103,2025-7-28,15:30:35,이*숙,0502-6202-2106,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884116963,ORD250728-0103,L001-0032
+ORD250728-0104,2025-7-28,15:31:58,조*숙,0502-6352-9986,JGIFT-0026,EMS Belt_Purple,1,0,0,459884116974,ORD250728-0104,8809595040741
+ORD250728-0104,2025-7-28,15:31:58,조*숙,0502-6352-9986,K001-0008,택배박스_6호_410x265x360,1,0,0,459884116974,ORD250728-0104,K001-0008
+ORD250728-0104,2025-7-28,15:31:58,조*숙,0502-6352-9986,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884116974,ORD250728-0104,L001-0032
+ORD250728-0147,2025-7-28,15:33:31,정혜윤,010-2678-8799,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884117405,ORD250728-0147,L001-0032
+ORD250728-0147,2025-7-28,15:33:31,정혜윤,010-2678-8799,K001-0008,택배박스_6호_410x265x360,1,0,0,459884117405,ORD250728-0147,K001-0008
+ORD250728-0147,2025-7-28,15:33:31,정혜윤,010-2678-8799,JGIFT-0026,EMS Belt_Purple,1,0,0,459884117405,ORD250728-0147,8809595040741
+ORD250728-0274,2025-7-28,15:48:2,박현숙,01032659055,JGIFT-0025,EMS Belt_Peach,1,0,0,459884118654,ORD250728-0274,8809595040734
+ORD250728-0274,2025-7-28,15:48:2,박현숙,01032659055,K001-0008,택배박스_6호_410x265x360,1,0,0,459884118654,ORD250728-0274,K001-0008
+ORD250728-0274,2025-7-28,15:48:2,박현숙,01032659055,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884118654,ORD250728-0274,L001-0032
+ORD250728-0273,2025-7-28,15:49:30,박영숙,01045504580,K001-0008,택배박스_6호_410x265x360,1,0,0,459884118643,ORD250728-0273,K001-0008
+ORD250728-0273,2025-7-28,15:49:30,박영숙,01045504580,JGIFT-0025,EMS Belt_Peach,1,0,0,459884118643,ORD250728-0273,8809595040734
+ORD250728-0273,2025-7-28,15:49:30,박영숙,01045504580,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884118643,ORD250728-0273,L001-0032
+ORD250728-0272,2025-7-28,15:50:55,장면옥,01064098333,K001-0008,택배박스_6호_410x265x360,1,0,0,459884118632,ORD250728-0272,K001-0008
+ORD250728-0272,2025-7-28,15:50:55,장면옥,01064098333,JGIFT-0025,EMS Belt_Peach,1,0,0,459884118632,ORD250728-0272,8809595040734
+ORD250728-0272,2025-7-28,15:50:55,장면옥,01064098333,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884118632,ORD250728-0272,L001-0032
+ORD250728-0271,2025-7-28,15:52:22,김재분,01076442447,K001-0008,택배박스_6호_410x265x360,1,0,0,459884118621,ORD250728-0271,K001-0008
+ORD250728-0271,2025-7-28,15:52:22,김재분,01076442447,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884118621,ORD250728-0271,L001-0032
+ORD250728-0271,2025-7-28,15:52:22,김재분,01076442447,JGIFT-0025,EMS Belt_Peach,1,0,0,459884118621,ORD250728-0271,8809595040734
+ORD250728-0270,2025-7-28,15:53:53,정미선,01035123087,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884118610,ORD250728-0270,L001-0032
+ORD250728-0270,2025-7-28,15:53:53,정미선,01035123087,K001-0008,택배박스_6호_410x265x360,1,0,0,459884118610,ORD250728-0270,K001-0008
+ORD250728-0270,2025-7-28,15:53:53,정미선,01035123087,JGIFT-0025,EMS Belt_Peach,1,0,0,459884118610,ORD250728-0270,8809595040734
+ORD250728-0269,2025-7-28,15:56:48,박은영,01039968237,K001-0008,택배박스_6호_410x265x360,1,0,0,459884118606,ORD250728-0269,K001-0008
+ORD250728-0269,2025-7-28,15:56:48,박은영,01039968237,JGIFT-0025,EMS Belt_Peach,1,0,0,459884118606,ORD250728-0269,8809595040734
+ORD250728-0269,2025-7-28,15:56:48,박은영,01039968237,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884118606,ORD250728-0269,L001-0032
+ORD250728-0268,2025-7-28,15:58:13,황수영,01032813654,K001-0008,택배박스_6호_410x265x360,1,0,0,459884118595,ORD250728-0268,K001-0008
+ORD250728-0268,2025-7-28,15:58:13,황수영,01032813654,JGIFT-0025,EMS Belt_Peach,1,0,0,459884118595,ORD250728-0268,8809595040734
+ORD250728-0268,2025-7-28,15:58:13,황수영,01032813654,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884118595,ORD250728-0268,L001-0032
+ORD250728-0267,2025-7-28,15:59:46,천금열,01094259402,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884118584,ORD250728-0267,L001-0032
+ORD250728-0267,2025-7-28,15:59:46,천금열,01094259402,K001-0008,택배박스_6호_410x265x360,1,0,0,459884118584,ORD250728-0267,K001-0008
+ORD250728-0267,2025-7-28,15:59:46,천금열,01094259402,JGIFT-0025,EMS Belt_Peach,1,0,0,459884118584,ORD250728-0267,8809595040734
+ORD250728-0266,2025-7-28,16:1:16,김무범,01037083769,K001-0008,택배박스_6호_410x265x360,1,0,0,459884118573,ORD250728-0266,K001-0008
+ORD250728-0266,2025-7-28,16:1:16,김무범,01037083769,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884118573,ORD250728-0266,L001-0032
+ORD250728-0266,2025-7-28,16:1:16,김무범,01037083769,JGIFT-0025,EMS Belt_Peach,1,0,0,459884118573,ORD250728-0266,8809595040734
+ORD250728-0265,2025-7-28,16:2:31,조경희,01089208953,K001-0008,택배박스_6호_410x265x360,1,0,0,459884118562,ORD250728-0265,K001-0008
+ORD250728-0265,2025-7-28,16:2:31,조경희,01089208953,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884118562,ORD250728-0265,L001-0032
+ORD250728-0265,2025-7-28,16:2:31,조경희,01089208953,JGIFT-0025,EMS Belt_Peach,1,0,0,459884118562,ORD250728-0265,8809595040734
+ORD250728-0264,2025-7-28,16:3:53,선주경,01087903331,JGIFT-0025,EMS Belt_Peach,1,0,0,459884118551,ORD250728-0264,8809595040734
+ORD250728-0264,2025-7-28,16:3:53,선주경,01087903331,K001-0008,택배박스_6호_410x265x360,1,0,0,459884118551,ORD250728-0264,K001-0008
+ORD250728-0264,2025-7-28,16:3:53,선주경,01087903331,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459884118551,ORD250728-0264,L001-0032
+ORD250728-0315,2025-7-28,16:15:19,김규린,0508-6845-9625,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692827606143,ORD250728-0315,L001-0032
+ORD250728-0315,2025-7-28,16:15:19,김규린,0508-6845-9625,JGIFT-0026,EMS Belt_Purple,1,0,0,692827606143,ORD250728-0315,8809595040741
+ORD250728-0315,2025-7-28,16:15:19,김규린,0508-6845-9625,K001-0008,택배박스_6호_410x265x360,1,0,0,692827606143,ORD250728-0315,K001-0008
+ORD250728-0316,2025-7-28,16:19:56,조윤*,0502-2511-0389,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,692827606154,ORD250728-0316,8809595040017
+ORD250728-0316,2025-7-28,16:19:56,조윤*,0502-2511-0389,K001-0022,택배박스_2호_270*180*170,1,0,0,692827606154,ORD250728-0316,K001-0022
+ORD250728-0317,2025-7-28,16:22:18,조인아,0502-6330-8289,JGIFT-0024,EMS Belt_Mint,1,0,0,692827606165,ORD250728-0317,8809595040758
+ORD250728-0317,2025-7-28,16:22:18,조인아,0502-6330-8289,K001-0008,택배박스_6호_410x265x360,1,0,0,692827606165,ORD250728-0317,K001-0008
+ORD250728-0317,2025-7-28,16:22:18,조인아,0502-6330-8289,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692827606165,ORD250728-0317,L001-0032
+ORD250728-0318,2025-7-28,16:24:28,추보경,010-2040-5555,K001-0010,택배박스_1호_250*150*100,1,0,0,692827606176,ORD250728-0318,K001-0010
+ORD250728-0318,2025-7-28,16:24:28,추보경,010-2040-5555,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,692827606176,ORD250728-0318,L004-0023
+ORD250728-0319,2025-7-28,16:26:43,임경현,01030245878,K001-0008,택배박스_6호_410x265x360,1,0,0,692827606180,ORD250728-0319,K001-0008
+ORD250728-0319,2025-7-28,16:26:43,임경현,01030245878,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692827606180,ORD250728-0319,L001-0032
+ORD250728-0319,2025-7-28,16:26:43,임경현,01030245878,JGIFT-0024,EMS Belt_Mint,1,0,0,692827606180,ORD250728-0319,8809595040758
+ORD250728-0320,2025-7-28,16:30:43,이은경,0422727710,K001-0008,택배박스_6호_410x265x360,1,0,0,692827606191,ORD250728-0320,K001-0008
+ORD250728-0320,2025-7-28,16:30:43,이은경,0422727710,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692827606191,ORD250728-0320,L001-0032
+ORD250728-0320,2025-7-28,16:30:43,이은경,0422727710,JGIFT-0024,EMS Belt_Mint,1,0,0,692827606191,ORD250728-0320,8809595040758
+ORD250728-0338,2025-7-28,17:8:56,최승미,010-7937-0050,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692828802513,ORD250728-0338,8809595040017
+ORD250728-0338,2025-7-28,17:8:56,최승미,010-7937-0050,K001-0010,택배박스_1호_250*150*100,1,0,0,692828802513,ORD250728-0338,K001-0010
+ORD250728-0336,2025-7-28,17:10:15,함정민,010-2776-0789,K001-0010,택배박스_1호_250*150*100,1,0,0,692828802491,ORD250728-0336,K001-0010
+ORD250728-0336,2025-7-28,17:10:15,함정민,010-2776-0789,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,692828802491,ORD250728-0336,8809595040017
+ORD250728-0333,2025-7-28,17:12:4,양자영,010-3925-8055,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,692828802465,ORD250728-0333,8809595040017
+ORD250728-0333,2025-7-28,17:12:4,양자영,010-3925-8055,K001-0010,택배박스_1호_250*150*100,1,0,0,692828802465,ORD250728-0333,K001-0010
+ORD250728-0329,2025-7-28,17:16:25,장은희,010-8519-8282,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,692828802421,602503763110,602503763110
+ORD250728-0329,2025-7-28,17:16:25,장은희,010-8519-8282,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692828802421,602503763110,8809595040017
+ORD250728-0329,2025-7-28,17:16:25,장은희,010-8519-8282,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692828802421,602503763110,JGIFT-0010
+ORD250728-0329,2025-7-28,17:16:25,장은희,010-8519-8282,K001-0007,택배박스_5호_400*250*300,1,0,0,692828802421,602503763110,K001-0007
+ORD250728-0329,2025-7-28,17:16:25,장은희,010-8519-8282,L001-0030,뷰티루틴 쇼핑백,1,0,0,692828802421,602503763110,L001-0030
+ORD250728-0329,2025-7-28,17:16:25,장은희,010-8519-8282,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692828802421,602503763110,8809750465013
+ORD250728-0330,2025-7-28,17:22:50,송정선,010-3617-9718,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692828802432,312505091180,8809595040017
+ORD250728-0330,2025-7-28,17:22:50,송정선,010-3617-9718,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,692828802432,312505091180,8809750465013
+ORD250728-0330,2025-7-28,17:22:50,송정선,010-3617-9718,K001-0007,택배박스_5호_400*250*300,1,0,0,692828802432,312505091180,K001-0007
+ORD250728-0330,2025-7-28,17:22:50,송정선,010-3617-9718,L001-0030,뷰티루틴 쇼핑백,1,0,0,692828802432,312505091180,L001-0030
+ORD250728-0330,2025-7-28,17:22:50,송정선,010-3617-9718,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692828802432,312505091180,JGIFT-0010
+ORD250728-0330,2025-7-28,17:22:50,송정선,010-3617-9718,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),1,0,0,692828802432,312505091180,312505091180
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-29.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-29.csv
new file mode 100644
index 0000000..36cae74
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-29.csv
@@ -0,0 +1,76 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250729-0021,2025-7-29,11:15:47,조미*,0503-6358-7937,K001-0010,택배박스_1호_250*150*100,1,0,0,459893708013,ORD250729-0021,K001-0010
+ORD250729-0021,2025-7-29,11:15:47,조미*,0503-6358-7937,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,459893708013,ORD250729-0021,8809595040017
+ORD250729-0022,2025-7-29,11:21:5,박태환,010-6691-3969,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459893732653,602507040131,8809595040017
+ORD250729-0022,2025-7-29,11:21:5,박태환,010-6691-3969,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459893732653,602507040131,8809750465013
+ORD250729-0022,2025-7-29,11:21:5,박태환,010-6691-3969,K001-0020,택배박스_4호_400*250*220,1,0,0,459893732653,602507040131,K001-0020
+ORD250729-0022,2025-7-29,11:21:5,박태환,010-6691-3969,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,459893732653,602507040131,L001-0031
+ORD250729-0022,2025-7-29,11:21:5,박태환,010-6691-3969,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459893732653,602507040131,602507040131
+ORD250729-0022,2025-7-29,11:21:5,박태환,010-6691-3969,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459893732653,602507040131,JGIFT-0010
+ORD250729-0023,2025-7-29,11:23:54,김보람,010-2888-0809,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459893732664,602507062131,8809750465013
+ORD250729-0023,2025-7-29,11:23:54,김보람,010-2888-0809,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459893732664,602507062131,602507062131
+ORD250729-0023,2025-7-29,11:23:54,김보람,010-2888-0809,K001-0020,택배박스_4호_400*250*220,1,0,0,459893732664,602507062131,K001-0020
+ORD250729-0023,2025-7-29,11:23:54,김보람,010-2888-0809,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,459893732664,602507062131,L001-0031
+ORD250729-0023,2025-7-29,11:23:54,김보람,010-2888-0809,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459893732664,602507062131,8809595040017
+ORD250729-0023,2025-7-29,11:23:54,김보람,010-2888-0809,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459893732664,602507062131,JGIFT-0010
+ORD250729-0024,2025-7-29,11:26:52,김하미,010-4145-7452,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459893732675,ORD250729-0024,L004-0023
+ORD250729-0024,2025-7-29,11:26:52,김하미,010-4145-7452,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459893732675,ORD250729-0024,8809595040017
+ORD250729-0024,2025-7-29,11:26:52,김하미,010-4145-7452,K001-0020,택배박스_4호_400*250*220,1,0,0,459893732675,ORD250729-0024,K001-0020
+ORD250729-0025,2025-7-29,11:29:50,강주희,010-6481-7429,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459893732686,602507776130,602507776130
+ORD250729-0025,2025-7-29,11:29:50,강주희,010-6481-7429,K001-0020,택배박스_4호_400*250*220,1,0,0,459893732686,602507776130,K001-0020
+ORD250729-0025,2025-7-29,11:29:50,강주희,010-6481-7429,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459893732686,602507776130,JGIFT-0010
+ORD250729-0025,2025-7-29,11:29:50,강주희,010-6481-7429,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459893732686,602507776130,8809595040017
+ORD250729-0025,2025-7-29,11:29:50,강주희,010-6481-7429,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,459893732686,602507776130,L001-0031
+ORD250729-0025,2025-7-29,11:29:50,강주희,010-6481-7429,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459893732686,602507776130,8809750465013
+ORD250729-0026,2025-7-29,11:36:52,이예설,010-7516-5321,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459893732690,502507157100,602507019130
+ORD250729-0026,2025-7-29,11:36:52,이예설,010-7516-5321,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,459893732690,502507157100,8809750465013
+ORD250729-0026,2025-7-29,11:36:52,이예설,010-7516-5321,K001-0008,택배박스_6호_410x265x360,1,0,0,459893732690,502507157100,K001-0008
+ORD250729-0026,2025-7-29,11:36:52,이예설,010-7516-5321,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,459893732690,502507157100,8809595040017
+ORD250729-0026,2025-7-29,11:36:52,이예설,010-7516-5321,L001-0031,신년 스페셜 쇼핑백(260*160*220),2,0,0,459893732690,502507157100,L001-0031
+ORD250729-0026,2025-7-29,11:36:52,이예설,010-7516-5321,P001-0152,원형케이스 퍼플,1,0,0,459893732690,502507157100,8809595040512
+ORD250729-0026,2025-7-29,11:36:52,이예설,010-7516-5321,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459893732690,502507157100,JGIFT-0010
+ORD250729-0026,2025-7-29,11:36:52,이예설,010-7516-5321,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459893732690,502507157100,502507157100
+ORD250729-0027,2025-7-29,11:39:38,Lekhanh 수정,010-3072-5997,K001-0010,택배박스_1호_250*150*100,1,0,0,459893732701,432504007000,K001-0010
+ORD250729-0027,2025-7-29,11:39:38,Lekhanh 수정,010-3072-5997,P001-DSA008,DUALSONIC Pro ALPHA BODY CARTRIDGE 1Set [BODY 30,000샷],1,30000,0,459893732701,432504007000,432504007000
+ORD250729-0028,2025-7-29,11:44:54,안보경,010-9978-2544,P001-0152,원형케이스 퍼플,1,0,0,459893732712,502507150100,8809595040512
+ORD250729-0028,2025-7-29,11:44:54,안보경,010-9978-2544,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459893732712,502507150100,JGIFT-0010
+ORD250729-0028,2025-7-29,11:44:54,안보경,010-9978-2544,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459893732712,502507150100,502507150100
+ORD250729-0028,2025-7-29,11:44:54,안보경,010-9978-2544,L001-0031,신년 스페셜 쇼핑백(260*160*220),2,0,0,459893732712,502507150100,L001-0031
+ORD250729-0028,2025-7-29,11:44:54,안보경,010-9978-2544,K001-0008,택배박스_6호_410x265x360,1,0,0,459893732712,502507150100,K001-0008
+ORD250729-0028,2025-7-29,11:44:54,안보경,010-9978-2544,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459893732712,502507150100,602507853130
+ORD250729-0028,2025-7-29,11:44:54,안보경,010-9978-2544,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,459893732712,502507150100,8809750465013
+ORD250729-0028,2025-7-29,11:44:54,안보경,010-9978-2544,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,459893732712,502507150100,8809595040017
+ORD250729-0043,2025-7-29,11:49:22,이민형 반장님,032-744-1170,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,8809595040376,ORD250729-0043,8809595040017
+ORD250729-0044,2025-7-29,11:52:41,이민형 반장님,032-744-1170,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),50,0,0,k001-0133,ORD250729-0044,L004-0023
+ORD250729-0035,2025-7-29,13:6:11,이민형 반장님,032-744-1170,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),10,0,0,k001-0133,312506335101,312506443101/312506555101/312506463101/312506474101/312506521101/312506553101/312506335101/312506845100/312506757100/312506759100
+ORD250729-0034,2025-7-29,13:10:55,이민형 반장님,032-744-1170,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),10,0,0,k001-0133,312506050101,312506767100/312506831100/312506684100/312506768100/312506709100/312506362101/312506798100/312506977100/312506795100/312506050101
+ORD250729-0033,2025-7-29,13:16:31,이민형 반장님,032-744-1170,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),10,0,0,k001-0133,312506025101,312506432101/312507275101/312506776100/312506025101/312506465101/312506682100/312506818100/312506756100/312506867100/312506485101
+ORD250729-0056,2025-7-29,13:54:43,조한규차장님,010-4707-9257,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),10,0,0,8809595040376,602507017131,602507775130/602507647130/602507751130/602507821130/602507017131/602507079131/602507042131/602507883130/602507076131/602507952130
+ORD250729-0055,2025-7-29,13:59:17,조한규차장님,010-4707-9257,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),10,0,0,L004-0025,602507022130,602507951130/602507958130/602507075131/602507917130/602507037131/602507887130/602507300130/602507793130/602507816130/602507022130
+ORD250729-0057,2025-7-29,14:11:14,조한규차장님,010-4707-9257,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),10,0,0,L004-0020,602507020131,602507636130/602507920130/602507859130/602507020131/602507760130/602507860130/602507974130/602507662130/602507711130/602507885130
+ORD250729-0059,2025-7-29,14:19:19,조한규차장님,010-4707-9257,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),10,0,0,L004-0025,602507031131,602507804130/602507720130/602507645130/602507056131/602507757130/602507622130/602507827130/602507031131/602507039131/602507708130
+ORD250729-0070,2025-7-29,14:56:18,박성인,051-915-1725,K001-0022,택배박스_2호_270*180*170,1,0,0,692845901752,ORD250729-0070,K001-0022
+ORD250729-0070,2025-7-29,14:56:18,박성인,051-915-1725,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,692845901752,ORD250729-0070,8809595040017
+ORD250729-0071,2025-7-29,14:58:19,하태심,0504-2404-7984,K001-0010,택배박스_1호_250*150*100,1,0,0,692845901763,ORD250729-0071,K001-0010
+ORD250729-0071,2025-7-29,14:58:19,하태심,0504-2404-7984,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,692845901763,ORD250729-0071,8809595040017
+ORD250729-0072,2025-7-29,14:59:56,최미숙,0502-6366-8923,K001-0022,택배박스_2호_270*180*170,1,0,0,692845901774,ORD250729-0072,K001-0022
+ORD250729-0072,2025-7-29,14:59:56,최미숙,0502-6366-8923,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,692845901774,ORD250729-0072,L004-0023
+ORD250729-0002,2025-7-29,15:30:9,김용덕,010-7900-0008,JGIFT-0024,EMS Belt_Mint,1,0,0,692827750262,ORD250729-0002,8809595040758
+ORD250729-0003,2025-7-29,15:33:13,유예지,010-6441-2512,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,692835724662,ORD250729-0003,8809595040017
+ORD250729-0003,2025-7-29,15:33:13,유예지,010-6441-2512,K001-0010,택배박스_1호_250*150*100,1,0,0,692835724662,ORD250729-0003,K001-0010
+ORD250729-0073,2025-7-29,16:35:52,손은지,010-4212-9136,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692847723631,602507671130,8809750465013
+ORD250729-0073,2025-7-29,16:35:52,손은지,010-4212-9136,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692847723631,602507671130,JGIFT-0010
+ORD250729-0073,2025-7-29,16:35:52,손은지,010-4212-9136,K001-0007,택배박스_5호_400*250*300,1,0,0,692847723631,602507671130,K001-0007
+ORD250729-0073,2025-7-29,16:35:52,손은지,010-4212-9136,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,692847723631,602507671130,602507671130
+ORD250729-0073,2025-7-29,16:35:52,손은지,010-4212-9136,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,692847723631,602507671130,L001-0031
+ORD250729-0073,2025-7-29,16:35:52,손은지,010-4212-9136,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692847723631,602507671130,8809595040017
+ORD250729-0074,2025-7-29,16:38:25,윤찬영,010-4222-6836,K001-0007,택배박스_5호_400*250*300,1,0,0,692847723642,602507010131,K001-0007
+ORD250729-0074,2025-7-29,16:38:25,윤찬영,010-4222-6836,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692847723642,602507010131,8809595040017
+ORD250729-0074,2025-7-29,16:38:25,윤찬영,010-4222-6836,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692847723642,602507010131,8809750465013
+ORD250729-0074,2025-7-29,16:38:25,윤찬영,010-4222-6836,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692847723642,602507010131,JGIFT-0010
+ORD250729-0074,2025-7-29,16:38:25,윤찬영,010-4222-6836,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,692847723642,602507010131,L001-0031
+ORD250729-0074,2025-7-29,16:38:25,윤찬영,010-4222-6836,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,692847723642,602507010131,602507010131
+ORD250729-0093,2025-7-29,16:41:6,김정숙,010-5525-5761,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692848227734,312507117101,8809595040017
+ORD250729-0093,2025-7-29,16:41:6,김정숙,010-5525-5761,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,692848227734,312507117101,312507117101
+ORD250729-0093,2025-7-29,16:41:6,김정숙,010-5525-5761,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,692848227734,312507117101,L001-0031
+ORD250729-0093,2025-7-29,16:41:6,김정숙,010-5525-5761,K001-0007,택배박스_5호_400*250*300,1,0,0,692848227734,312507117101,K001-0007
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-3.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-3.csv
new file mode 100644
index 0000000..e7ba9f3
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-3.csv
@@ -0,0 +1,34 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250703-0050,2025-7-3,14:10:5,박상규차장님,.,P001-AT001,[ALTO_WHITE] FULL PACK (KR),10,0,0,k001-0133,502506103100,502506214100/502506204100/502506239100/502506274100/502506105100/502506311100/502506103100/502506205100/502506307100/502506126100
+ORD250703-0057,2025-7-3,14:19:38,박상규차장님,.,L004-0035,Elixir Aqua Hyal Ampoule(엘릭시르 하이알 앰플) 35ML,1,0,0,k001-0133,ORD250703-0057,8809527486555
+ORD250703-0057,2025-7-3,14:19:38,박상규차장님,.,L004-0034,Elixir Aqua Hyal Toner(엘릭시르 하이알 토너) 130ML,1,0,0,k001-0133,ORD250703-0057,8809527486548
+ORD250703-0057,2025-7-3,14:19:38,박상규차장님,.,L004-0016,엘릭시르 클렌징워터 500mL,1,0,0,k001-0133,ORD250703-0057,8809849804662
+ORD250703-0057,2025-7-3,14:19:38,박상규차장님,.,L004-0033,Elixir Lifting Collagen Cream(엘릭시르 콜라겐 크림) 50ML,1,0,0,k001-0133,ORD250703-0057,8809527486593
+ORD250703-0057,2025-7-3,14:19:38,박상규차장님,.,L004-0031,Elixir Lifting Collagen Toner(엘릭시르 콜라겐 토너) 130ML,1,0,0,k001-0133,ORD250703-0057,8809527486579
+ORD250703-0057,2025-7-3,14:19:38,박상규차장님,.,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,k001-0133,ORD250703-0057,8809527487118
+ORD250703-0057,2025-7-3,14:19:38,박상규차장님,.,L004-0030,Elixir Lifting Collagen Mask(엘릭시르 콜라겐 마스크팩) 24ML 10EA,1,0,0,k001-0133,ORD250703-0057,8809750465037
+ORD250703-0057,2025-7-3,14:19:38,박상규차장님,.,L004-0036,Elixir Aqua Hyal Cream(엘릭시르 하이알 크림) 50ML,1,0,0,k001-0133,ORD250703-0057,8809527486562
+ORD250703-0057,2025-7-3,14:19:38,박상규차장님,.,L004-0032,Elixir Lifting Collagen Ampoule(엘릭시르 콜라겐 앰플) 35ML,1,0,0,k001-0133,ORD250703-0057,8809527486586
+ORD250703-0057,2025-7-3,14:19:38,박상규차장님,.,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,k001-0133,ORD250703-0057,8809750465013
+ORD250703-0047,2025-7-3,14:30:34,박상규차장님,.,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),10,0,0,k001-0133,312410024101,312506237101/312506306101/312410024101/312506312100/312506239101/312506329101/312506238101/312506554100/312506468100/312506246101
+ORD250703-0048,2025-7-3,14:34:27,박상규차장님,.,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),10,0,0,k001-0133,602503060130,602503157130/602503185130/602503162130/602503137130/602503209130/602503092130/602503138130/602503060130/602503077130/602503089130
+ORD250703-0046,2025-7-3,14:40:30,박상규차장님,.,P001-AT001C,[ALTO_BLACK] FULL PACK (KR),2,0,0,k001-0133,312505824180,502408100190/502408186190
+ORD250703-0046,2025-7-3,14:40:30,박상규차장님,.,JGIFT-0024,EMS Belt_Mint,5,0,0,k001-0133,312505824180,JGIFT-0024
+ORD250703-0046,2025-7-3,14:40:30,박상규차장님,.,P001-AT001B,[ALTO_PURPLE] FULL PACK (KR),2,0,0,k001-0133,312505824180,502408797180/502408642180
+ORD250703-0046,2025-7-3,14:40:30,박상규차장님,.,JGIFT-0026,EMS Belt_Purple,5,0,0,k001-0133,312505824180,JGIFT-0026
+ORD250703-0046,2025-7-3,14:40:30,박상규차장님,.,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),2,0,0,k001-0133,312505824180,312505889180/312505824180
+ORD250703-0046,2025-7-3,14:40:30,박상규차장님,.,JGIFT-0025,EMS Belt_Peach,5,0,0,k001-0133,312505824180,JGIFT-0025
+ORD250703-0051,2025-7-3,15:44:45,박상규차장님,.,P001-DSA007,DUALSONIC Pro ALPHA EYE CARTRIDGE 1Set [EYE 200,000샷],1,0,200000,k001-0133,112506065000,422506004000
+ORD250703-0051,2025-7-3,15:44:45,박상규차장님,.,P001-DS015A,DUALSONIC Pro BODY CARTRIDGE 1Set,1,30000,0,k001-0133,112506065000,132503016000
+ORD250703-0051,2025-7-3,15:44:45,박상규차장님,.,P001-DSA008,DUALSONIC Pro ALPHA BODY CARTRIDGE 1Set [BODY 30,000샷],1,30000,0,k001-0133,112506065000,432504027000
+ORD250703-0051,2025-7-3,15:44:45,박상규차장님,.,P001-DSA006,DUALSONIC Pro ALPHA FACE CARTRIDGE 1Set [FACE 20,000샷],1,20000,0,k001-0133,112506065000,412506006000
+ORD250703-0051,2025-7-3,15:44:45,박상규차장님,.,P001-DS143A,DUALSONIC Pro Face CARTRIDGE 1Set 12,000샷,2,12000,0,k001-0133,112506065000,112506065000/112506163000
+ORD250703-0051,2025-7-3,15:44:45,박상규차장님,.,P001-DSA013,DUALSONIC Pro ALPHA FACE CARTRIDGE 1Set [FACE 40,000샷],1,40000,0,k001-0133,112506065000,412506024000
+ORD250703-0051,2025-7-3,15:44:45,박상규차장님,.,P001-DS146A,DUALSONIC Pro EYE CARTRIDGE 1Set 120,000샷,1,0,120000,k001-0133,112506065000,122506009000
+ORD250703-0049,2025-7-3,15:49:54,박상규차장님,.,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),2,0,0,k001-0133,102502002100,602502483120/602412315120
+ORD250703-0049,2025-7-3,15:49:54,박상규차장님,.,P001-DS0036A,DUALSONIC Pro 1Set 완제품 (KR)[Face 12,000샷, Eye 120,000 샷],1,12000,120000,k001-0133,102502002100,102502002100
+ORD250703-0049,2025-7-3,15:49:54,박상규차장님,.,P001-DSA005,DUALSONIC Pro ALPHA 1Set[Face 20,000, EYE 200,000],1,20000,200000,k001-0133,102502002100,402505047100
+ORD250703-0049,2025-7-3,15:49:54,박상규차장님,.,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),2,0,0,k001-0133,102502002100,602501046111/602501062111
+ORD250703-0049,2025-7-3,15:49:54,박상규차장님,.,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],1,40000,400000,k001-0133,102502002100,402505157100
+ORD250703-0081,2025-7-3,17:15:58,해외출고,010-0000-0000,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459698181353,ORD250703-0081,8809750465013
+ORD250703-0081,2025-7-3,17:15:58,해외출고,010-0000-0000,K001-0010,젤 3개 포장박스 (1호),1,0,0,459698181353,ORD250703-0081,K001-0010
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-30.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-30.csv
new file mode 100644
index 0000000..b5c7f9b
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-30.csv
@@ -0,0 +1,39 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250730-0008,2025-7-30,10:4:51,쿠팡 인천28_3,070-4741-9123,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,692833539354,ORD250730-0008,8809595040017
+ORD250730-0007,2025-7-30,10:11:44,쿠팡 인천28_2,070-4741-9123,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,692833539343,ORD250730-0007,8809595040017
+ORD250730-0013,2025-7-30,10:23:1,쿠팡 동탄1_3,070-7771-6872,K001-0008,택배박스_6호_410x265x360,1,0,0,692833539402,602503627110,K001-0008
+ORD250730-0013,2025-7-30,10:23:1,쿠팡 동탄1_3,070-7771-6872,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),6,0,0,692833539402,602503627110,602503755111/602503857110/602503627110/602503821110/602503692111/602503744111
+ORD250730-0012,2025-7-30,10:28:27,쿠팡 동탄1_2,070-7771-6872,K001-0008,택배박스_6호_410x265x360,1,0,0,692833539391,602503516120,K001-0008
+ORD250730-0012,2025-7-30,10:28:27,쿠팡 동탄1_2,070-7771-6872,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),6,0,0,692833539391,602503516120,602503516120/602503704120/602503602120/602503641120/602503591120/602503576120
+ORD250730-0051,2025-7-30,10:51:33,조창현차장님,010-3321-7696,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),5,0,0,k001-0133,602503613110,602503904110/602503861110/602503867110/602503613110/602503740110
+ORD250730-0050,2025-7-30,10:55:29,조창현차장님,010-3321-7696,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),6,0,0,8809595040376,602507006131,602507006131/602507029131/602507710130/602507748130/602507986130/602507913130
+ORD250730-0055,2025-7-30,14:36:9,신세계면세점,032-744-0866,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),10,0,0,L004-0020,602507045131,602507882130/602507045131/602507518130/602507670130/602507769130/602507806130/602507669130/602507932130/602507061131/602507060131
+ORD250730-0056,2025-7-30,14:52:55,신세계면세점,032-744-0866,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),10,0,0,l004-0020,602507046131,602507055131/602507046131/602507613130/602507973130/602507614130/602507943130/602507995130/602507939130/602507994130/602507447130
+ORD250730-0041,2025-7-30,16:3:15,김*영,050716117016,K001-0007,택배박스_5호_400*250*300,1,0,0,459902007062,602507812130,K001-0007
+ORD250730-0041,2025-7-30,16:3:15,김*영,050716117016,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459902007062,602507812130,602507812130
+ORD250730-0041,2025-7-30,16:3:15,김*영,050716117016,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459902007062,602507812130,8809595040017
+ORD250730-0041,2025-7-30,16:3:15,김*영,050716117016,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,459902007062,602507812130,L001-0031
+ORD250730-0042,2025-7-30,16:9:53,강정선,010-8626-7423,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459902074741,102502003100,8809595040017
+ORD250730-0042,2025-7-30,16:9:53,강정선,010-8626-7423,K001-0007,택배박스_5호_400*250*300,1,0,0,459902074741,102502003100,K001-0007
+ORD250730-0042,2025-7-30,16:9:53,강정선,010-8626-7423,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459902074741,102502003100,JGIFT-0010
+ORD250730-0042,2025-7-30,16:9:53,강정선,010-8626-7423,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459902074741,102502003100,L004-0023
+ORD250730-0042,2025-7-30,16:9:53,강정선,010-8626-7423,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,459902074741,102502003100,L001-0031
+ORD250730-0042,2025-7-30,16:9:53,강정선,010-8626-7423,P001-0156,우디케이스,1,0,0,459902074741,102502003100,8809595040598
+ORD250730-0042,2025-7-30,16:9:53,강정선,010-8626-7423,P001-DS0036A,DUALSONIC Pro 1Set 완제품 (KR)[Face 12,000샷, Eye 120,000 샷],1,12000,120000,459902074741,102502003100,102502003100
+ORD250730-0258,2025-7-30,16:45:15,이다은,010-2544-2249,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,692866625683,602507989130,8809595040017
+ORD250730-0258,2025-7-30,16:45:15,이다은,010-2544-2249,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,692866625683,602507989130,L001-0031
+ORD250730-0258,2025-7-30,16:45:15,이다은,010-2544-2249,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,692866625683,602507989130,602507989130
+ORD250730-0258,2025-7-30,16:45:15,이다은,010-2544-2249,K001-0041,택배박스_3호_305*255*185,1,0,0,692866625683,602507989130,K001-0041
+ORD250730-0259,2025-7-30,16:47:51,이*민,050716119137,K001-0041,택배박스_3호_305*255*185,1,0,0,692866625694,602503589111,K001-0041
+ORD250730-0259,2025-7-30,16:47:51,이*민,050716119137,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,692866625694,602503589111,602503589111
+ORD250730-0259,2025-7-30,16:47:51,이*민,050716119137,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692866625694,602503589111,8809595040017
+ORD250730-0259,2025-7-30,16:47:51,이*민,050716119137,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,692866625694,602503589111,L001-0031
+ORD250730-0261,2025-7-30,16:50:15,김*선,0502-6314-5300,K001-0022,택배박스_2호_270*180*170,1,0,0,692866625716,ORD250730-0261,K001-0022
+ORD250730-0261,2025-7-30,16:50:15,김*선,0502-6314-5300,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,692866625716,ORD250730-0261,L004-0023
+ORD250730-0260,2025-7-30,16:51:33,조선애,010-2277-6178,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,692866625705,ORD250730-0260,L004-0023
+ORD250730-0260,2025-7-30,16:51:33,조선애,010-2277-6178,K001-0010,택배박스_1호_250*150*100,1,0,0,692866625705,ORD250730-0260,K001-0010
+ORD250730-0262,2025-7-30,16:53:19,오혜*,0502-2570-3808,K001-0010,택배박스_1호_250*150*100,1,0,0,692866625720,112506171000,K001-0010
+ORD250730-0262,2025-7-30,16:53:19,오혜*,0502-2570-3808,P001-DS007A,DUALSONIC Pro Face CARTRIDGE 1Set,1,6000,0,692866625720,112506171000,112506171000
+ORD250730-0263,2025-7-30,16:55:53,정춘희,0508-6822-6145,K001-0008,택배박스_6호_410x265x360,1,0,0,692866625731,ORD250730-0263,K001-0008
+ORD250730-0263,2025-7-30,16:55:53,정춘희,0508-6822-6145,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692866625731,ORD250730-0263,L001-0032
+ORD250730-0263,2025-7-30,16:55:53,정춘희,0508-6822-6145,JGIFT-0026,EMS Belt_Purple,1,0,0,692866625731,ORD250730-0263,8809595040741
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-31.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-31.csv
new file mode 100644
index 0000000..d5fe927
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-31.csv
@@ -0,0 +1,115 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250731-0051,2025-7-31,10:29:46,유희성,010-2329-8316,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,004-0022,ORD250731-0051,JGIFT-0010
+ORD250731-0051,2025-7-31,10:29:46,유희성,010-2329-8316,L001-0030,뷰티루틴 쇼핑백,1,0,0,004-0022,ORD250731-0051,L001-0030
+ORD250731-0051,2025-7-31,10:29:46,유희성,010-2329-8316,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,004-0022,ORD250731-0051,8809750465013
+ORD250731-0051,2025-7-31,10:29:46,유희성,010-2329-8316,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,004-0022,ORD250731-0051,8809595040017
+ORD250731-0058,2025-7-31,10:48:6,여경숙,010-4117-0105,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,459910201682,312507232101,8809595040017
+ORD250731-0058,2025-7-31,10:48:6,여경숙,010-4117-0105,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459910201682,312507232101,JGIFT-0010
+ORD250731-0058,2025-7-31,10:48:6,여경숙,010-4117-0105,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,459910201682,312507232101,L001-0031
+ORD250731-0058,2025-7-31,10:48:6,여경숙,010-4117-0105,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459910201682,312507232101,312507232101
+ORD250731-0058,2025-7-31,10:48:6,여경숙,010-4117-0105,K001-0020,택배박스_4호_400*250*220,1,0,0,459910201682,312507232101,K001-0020
+ORD250731-0059,2025-7-31,10:53:43,고객,010-2916-6190,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459910201693,502507103100,502507103100
+ORD250731-0059,2025-7-31,10:53:43,고객,010-2916-6190,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459910201693,502507103100,JGIFT-0010
+ORD250731-0059,2025-7-31,10:53:43,고객,010-2916-6190,P001-0152,원형케이스 퍼플,1,0,0,459910201693,502507103100,8809595040512
+ORD250731-0059,2025-7-31,10:53:43,고객,010-2916-6190,K001-0007,택배박스_5호_400*250*300,1,0,0,459910201693,502507103100,K001-0007
+ORD250731-0059,2025-7-31,10:53:43,고객,010-2916-6190,L001-0031,신년 스페셜 쇼핑백(260*160*220),2,0,0,459910201693,502507103100,L001-0031
+ORD250731-0059,2025-7-31,10:53:43,고객,010-2916-6190,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,459910201693,502507103100,8809595040017
+ORD250731-0059,2025-7-31,10:53:43,고객,010-2916-6190,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,459910201693,502507103100,602503875110
+ORD250731-0065,2025-7-31,11:19:55,형연순,0508-6827-2745,K001-0008,택배박스_6호_410x265x360,1,0,0,459910559150,ORD250731-0065,K001-0008
+ORD250731-0065,2025-7-31,11:19:55,형연순,0508-6827-2745,JGIFT-0024,EMS Belt_Mint,1,0,0,459910559150,ORD250731-0065,8809595040758
+ORD250731-0065,2025-7-31,11:19:55,형연순,0508-6827-2745,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459910559150,ORD250731-0065,L001-0032
+ORD250731-0077,2025-7-31,11:23:14,범영지,010-8535-8281,JGIFT-0024,EMS Belt_Mint,1,0,0,459910559275,ORD250731-0077,8809595040758
+ORD250731-0077,2025-7-31,11:23:14,범영지,010-8535-8281,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459910559275,ORD250731-0077,L001-0032
+ORD250731-0077,2025-7-31,11:23:14,범영지,010-8535-8281,K001-0008,택배박스_6호_410x265x360,1,0,0,459910559275,ORD250731-0077,K001-0008
+ORD250731-0078,2025-7-31,11:25:12,최*리,050716121038,K001-0008,택배박스_6호_410x265x360,1,0,0,459910559286,ORD250731-0078,K001-0008
+ORD250731-0078,2025-7-31,11:25:12,최*리,050716121038,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459910559286,ORD250731-0078,L001-0032
+ORD250731-0078,2025-7-31,11:25:12,최*리,050716121038,JGIFT-0026,EMS Belt_Purple,1,0,0,459910559286,ORD250731-0078,8809595040741
+ORD250731-0079,2025-7-31,11:27:36,윤*수,050716119662,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,459910559290,602507005131,L001-0031
+ORD250731-0079,2025-7-31,11:27:36,윤*수,050716119662,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459910559290,602507005131,8809595040017
+ORD250731-0079,2025-7-31,11:27:36,윤*수,050716119662,K001-0007,택배박스_5호_400*250*300,1,0,0,459910559290,602507005131,K001-0007
+ORD250731-0079,2025-7-31,11:27:36,윤*수,050716119662,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459910559290,602507005131,602507005131
+ORD250731-0080,2025-7-31,11:30:11,이*경,050716124168,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,459910559301,602503629110,L001-0031
+ORD250731-0080,2025-7-31,11:30:11,이*경,050716124168,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,459910559301,602503629110,8809595040017
+ORD250731-0080,2025-7-31,11:30:11,이*경,050716124168,K001-0007,택배박스_5호_400*250*300,1,0,0,459910559301,602503629110,K001-0007
+ORD250731-0080,2025-7-31,11:30:11,이*경,050716124168,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,459910559301,602503629110,602503629110
+ORD250731-0071,2025-7-31,13:19:12,박미*,0502-2538-1228,L001-0031,신년 스페셜 쇼핑백(260*160*220),2,0,0,459910559216,502507242100,L001-0031
+ORD250731-0071,2025-7-31,13:19:12,박미*,0502-2538-1228,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),1,0,0,459910559216,502507242100,602503702120
+ORD250731-0071,2025-7-31,13:19:12,박미*,0502-2538-1228,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459910559216,502507242100,502507242100
+ORD250731-0071,2025-7-31,13:19:12,박미*,0502-2538-1228,P001-0152,원형케이스 퍼플,1,0,0,459910559216,502507242100,8809595040512
+ORD250731-0071,2025-7-31,13:19:12,박미*,0502-2538-1228,K001-0008,택배박스_6호_410x265x360,1,0,0,459910559216,502507242100,K001-0008
+ORD250731-0071,2025-7-31,13:19:12,박미*,0502-2538-1228,L004-0001,DUALSONIC Blooming Moisture Gel,12,0,0,459910559216,502507242100,8809595040017
+ORD250731-0126,2025-7-31,16:3:44,큐텐,010-0000-0000,L004-0032,Elixir Lifting Collagen Ampoule(엘릭시르 콜라겐 앰플) 35ML,5,0,0,k2507305386208,ORD250731-0126,8809527486586
+ORD250731-0126,2025-7-31,16:3:44,큐텐,010-0000-0000,L004-0033,Elixir Lifting Collagen Cream(엘릭시르 콜라겐 크림) 50ML,5,0,0,k2507305386208,ORD250731-0126,8809527486593
+ORD250731-0125,2025-7-31,16:6:43,큐텐,010-0000-0000,L004-0032,Elixir Lifting Collagen Ampoule(엘릭시르 콜라겐 앰플) 35ML,5,0,0,k2507305386098,ORD250731-0125,8809527486586
+ORD250731-0125,2025-7-31,16:6:43,큐텐,010-0000-0000,L004-0033,Elixir Lifting Collagen Cream(엘릭시르 콜라겐 크림) 50ML,5,0,0,k2507305386098,ORD250731-0125,8809527486593
+ORD250731-0124,2025-7-31,16:12:33,큐텐,010-0000-0000,L004-0033,Elixir Lifting Collagen Cream(엘릭시르 콜라겐 크림) 50ML,2,0,0,k2507305386023,ORD250731-0124,8809527486593
+ORD250731-0124,2025-7-31,16:12:33,큐텐,010-0000-0000,L004-0032,Elixir Lifting Collagen Ampoule(엘릭시르 콜라겐 앰플) 35ML,2,0,0,k2507305386023,ORD250731-0124,8809527486586
+ORD250731-0124,2025-7-31,16:12:33,큐텐,010-0000-0000,JGIFT-0024,EMS Belt_Mint,1,0,0,k2507305386023,ORD250731-0124,8809595040758
+ORD250731-0110,2025-7-31,16:14:26,큐텐,010-0000-0000,L004-0033,Elixir Lifting Collagen Cream(엘릭시르 콜라겐 크림) 50ML,8,0,0,k2507305386062,ORD250731-0110,8809527486593
+ORD250731-0110,2025-7-31,16:14:26,큐텐,010-0000-0000,L004-0032,Elixir Lifting Collagen Ampoule(엘릭시르 콜라겐 앰플) 35ML,2,0,0,k2507305386062,ORD250731-0110,8809527486586
+ORD250731-0063,2025-7-31,16:18:42,박일용,010-9688-8416,JGIFT-0024,EMS Belt_Mint,1,0,0,692873799751,ORD250731-0063,8809595040758
+ORD250731-0282,2025-7-31,17:26:49,해외 구매 고객 ,,P001-DS009A,DUALSONIC Lux Face CARTRIDGE 1Set,1,3000,0,l004-0020,212507008000,212507008000
+ORD250731-0279,2025-7-31,18:6:10,田中陽子 (タナカ ヨウコ),018-846-0668 / 090-4638-8625,K001-0010,택배박스_1호_250*150*100,1,0,0,459915206133,ORD250731-0279,K001-0010
+ORD250731-0279,2025-7-31,18:6:10,田中陽子 (タナカ ヨウコ),018-846-0668 / 090-4638-8625,L004-0032,Elixir Lifting Collagen Ampoule(엘릭시르 콜라겐 앰플) 35ML,1,0,0,459915206133,ORD250731-0279,8809527486586
+ORD250731-0283,2025-7-31,18:7:40,金子由美 (カネコ ユミ),080-4735-0559,K001-0010,택배박스_1호_250*150*100,1,0,0,k2507315398673,ORD250731-0283,K001-0010
+ORD250731-0283,2025-7-31,18:7:40,金子由美 (カネコ ユミ),080-4735-0559,L004-0032,Elixir Lifting Collagen Ampoule(엘릭시르 콜라겐 앰플) 35ML,1,0,0,k2507315398673,ORD250731-0283,8809527486586
+ORD250731-0130,2025-7-31,18:12:24,유주완,01030009447,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,692882719895,312506729100,L004-0023
+ORD250731-0130,2025-7-31,18:12:24,유주완,01030009447,L001-0030,뷰티루틴 쇼핑백,1,0,0,692882719895,312506729100,L001-0030
+ORD250731-0130,2025-7-31,18:12:24,유주완,01030009447,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,692882719895,312506729100,312506729100
+ORD250731-0130,2025-7-31,18:12:24,유주완,01030009447,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692882719895,312506729100,8809750465013
+ORD250731-0130,2025-7-31,18:12:24,유주완,01030009447,K001-0020,택배박스_4호_400*250*220,1,0,0,692882719895,312506729100,K001-0020
+ORD250731-0130,2025-7-31,18:12:24,유주완,01030009447,PF001-005C,[BR] DAY SHOT GIFT KIT (2 BOTTLES),1,0,0,692882719895,312506729100,8809595040697
+ORD250731-0131,2025-7-31,18:14:11,박*원,0502-6399-2737,K001-0041,택배박스_3호_305*255*185,1,0,0,692882719906,602503840110,K001-0041
+ORD250731-0131,2025-7-31,18:14:11,박*원,0502-6399-2737,L001-0030,뷰티루틴 쇼핑백,1,0,0,692882719906,602503840110,L001-0030
+ORD250731-0131,2025-7-31,18:14:11,박*원,0502-6399-2737,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,692882719906,602503840110,602503840110
+ORD250731-0132,2025-7-31,18:16:5,권정선,010-5239-0035,L001-0030,뷰티루틴 쇼핑백,1,0,0,692882719921,502507376100,L001-0030
+ORD250731-0132,2025-7-31,18:16:5,권정선,010-5239-0035,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692882719921,502507376100,502507376100
+ORD250731-0132,2025-7-31,18:16:5,권정선,010-5239-0035,K001-0041,택배박스_3호_305*255*185,1,0,0,692882719921,502507376100,K001-0041
+ORD250731-0280,2025-7-31,18:16:52,MAK KI HIM (マック キヒム),070-6570-1337,K001-0041,택배박스_3호_305*255*185,1,0,0,l004-0022,602503651111,K001-0041
+ORD250731-0280,2025-7-31,18:16:52,MAK KI HIM (マック キヒム),070-6570-1337,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,l004-0022,602503651111,602503651111
+ORD250731-0093,2025-7-31,18:18:28,송혜연,010-5687-9175,K001-0010,택배박스_1호_250*150*100,1,0,0,692876467860,ORD250731-0093,K001-0010
+ORD250731-0093,2025-7-31,18:18:28,송혜연,010-5687-9175,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,692876467860,ORD250731-0093,L004-0023
+ORD250731-0134,2025-7-31,18:23:30,손수아,010-3511-0072,JGIFT-0024,EMS Belt_Mint,1,0,0,692882949856,ORD250731-0134,8809595040758
+ORD250731-0134,2025-7-31,18:23:30,손수아,010-3511-0072,L001-0031,신년 스페셜 쇼핑백(260*160*220),6,0,0,692882949856,ORD250731-0134,L001-0031
+ORD250731-0134,2025-7-31,18:23:30,손수아,010-3511-0072,K001-0133,C/T 택배박스(560*400*420),1,0,0,692882949856,ORD250731-0134,K001-0133
+ORD250731-0134,2025-7-31,18:23:30,손수아,010-3511-0072,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),12,0,0,692882949856,ORD250731-0134,8809595040635
+ORD250731-0135,2025-7-31,18:34:33,정소현,010-9399-7388,L001-0001,DUALSONIC 쇼핑백,3,0,0,692882949860,ORD250731-0135,L001-0001
+ORD250731-0135,2025-7-31,18:34:33,정소현,010-9399-7388,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),12,0,0,692882949860,ORD250731-0135,8809595040628
+ORD250731-0135,2025-7-31,18:34:33,정소현,010-9399-7388,L001-0031,신년 스페셜 쇼핑백(260*160*220),3,0,0,692882949860,ORD250731-0135,L001-0031
+ORD250731-0135,2025-7-31,18:34:33,정소현,010-9399-7388,JGIFT-0024,EMS Belt_Mint,1,0,0,692882949860,ORD250731-0135,8809595040758
+ORD250731-0135,2025-7-31,18:34:33,정소현,010-9399-7388,K001-0133,C/T 택배박스(560*400*420),1,0,0,692882949860,ORD250731-0135,K001-0133
+ORD250731-0154,2025-7-31,18:43:31,우현미,010-8445-1559,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),12,0,0,692882950055,ORD250731-0154,8809595040628
+ORD250731-0154,2025-7-31,18:43:31,우현미,010-8445-1559,L001-0030,뷰티루틴 쇼핑백,6,0,0,692882950055,ORD250731-0154,L001-0030
+ORD250731-0154,2025-7-31,18:43:31,우현미,010-8445-1559,JGIFT-0024,EMS Belt_Mint,1,0,0,692882950055,ORD250731-0154,8809595040758
+ORD250731-0154,2025-7-31,18:43:31,우현미,010-8445-1559,K001-0133,C/T 택배박스(560*400*420),1,0,0,692882950055,ORD250731-0154,K001-0133
+ORD250731-0133,2025-7-31,18:45:54,곽현라,01087716565,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692882719921,502507304100,502507304100
+ORD250731-0133,2025-7-31,18:45:54,곽현라,01087716565,K001-0041,택배박스_3호_305*255*185,1,0,0,692882719921,502507304100,K001-0041
+ORD250731-0133,2025-7-31,18:45:54,곽현라,01087716565,L001-0030,뷰티루틴 쇼핑백,1,0,0,692882719921,502507304100,L001-0030
+ORD250731-0161,2025-7-31,18:49:59,황진아,010-5321-6985,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),12,0,0,692882950125,ORD250731-0161,8809595040628
+ORD250731-0161,2025-7-31,18:49:59,황진아,010-5321-6985,L001-0030,뷰티루틴 쇼핑백,6,0,0,692882950125,ORD250731-0161,L001-0030
+ORD250731-0161,2025-7-31,18:49:59,황진아,010-5321-6985,JGIFT-0024,EMS Belt_Mint,1,0,0,692882950125,ORD250731-0161,8809595040758
+ORD250731-0161,2025-7-31,18:49:59,황진아,010-5321-6985,K001-0133,C/T 택배박스(560*400*420),1,0,0,692882950125,ORD250731-0161,K001-0133
+ORD250731-0162,2025-7-31,18:57:58,최유리,010-7273-7684,K001-0133,C/T 택배박스(560*400*420),1,0,0,692882950136,ORD250731-0162,K001-0133
+ORD250731-0162,2025-7-31,18:57:58,최유리,010-7273-7684,L001-0030,뷰티루틴 쇼핑백,12,0,0,692882950136,ORD250731-0162,L001-0030
+ORD250731-0162,2025-7-31,18:57:58,최유리,010-7273-7684,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),12,0,0,692882950136,ORD250731-0162,8809595040635
+ORD250731-0162,2025-7-31,18:57:58,최유리,010-7273-7684,JGIFT-0024,EMS Belt_Mint,2,0,0,692882950136,ORD250731-0162,8809595040758
+ORD250731-0162,2025-7-31,18:57:58,최유리,010-7273-7684,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),12,0,0,692882950136,ORD250731-0162,8809595040628
+ORD250731-0163,2025-7-31,19:3:39,김다영,010-8898-4814,K001-0007,택배박스_5호_400*250*300,1,0,0,692882950140,602503117130,K001-0007
+ORD250731-0163,2025-7-31,19:3:39,김다영,010-8898-4814,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692882950140,602503117130,JGIFT-0010
+ORD250731-0163,2025-7-31,19:3:39,김다영,010-8898-4814,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,692882950140,602503117130,602503117130
+ORD250731-0163,2025-7-31,19:3:39,김다영,010-8898-4814,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692882950140,602503117130,8809595040017
+ORD250731-0163,2025-7-31,19:3:39,김다영,010-8898-4814,L001-0030,뷰티루틴 쇼핑백,1,0,0,692882950140,602503117130,L001-0030
+ORD250731-0167,2025-7-31,19:7:49,최성훈,010-2476-6065,K001-0133,C/T 택배박스(560*400*420),1,0,0,692882950195,ORD250731-0167,K001-0133
+ORD250731-0167,2025-7-31,19:7:49,최성훈,010-2476-6065,JGIFT-0024,EMS Belt_Mint,1,0,0,692882950195,ORD250731-0167,8809595040758
+ORD250731-0167,2025-7-31,19:7:49,최성훈,010-2476-6065,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),12,0,0,692882950195,ORD250731-0167,8809595040628
+ORD250731-0167,2025-7-31,19:7:49,최성훈,010-2476-6065,L001-0030,뷰티루틴 쇼핑백,6,0,0,692882950195,ORD250731-0167,L001-0030
+ORD250731-0168,2025-7-31,19:15:25,이만성,010-8266-1253,K001-0007,택배박스_5호_400*250*300,1,0,0,692882950195,312507191101,K001-0007
+ORD250731-0168,2025-7-31,19:15:25,이만성,010-8266-1253,L001-0030,뷰티루틴 쇼핑백,1,0,0,692882950195,312507191101,L001-0030
+ORD250731-0168,2025-7-31,19:15:25,이만성,010-8266-1253,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,692882950195,312507191101,312507191101
+ORD250731-0168,2025-7-31,19:15:25,이만성,010-8266-1253,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692882950195,312507191101,JGIFT-0010
+ORD250731-0168,2025-7-31,19:15:25,이만성,010-8266-1253,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,692882950195,312507191101,8809595040017
+ORD250731-0136,2025-7-31,19:22:52,이은아,010-6349-6954,L001-0030,뷰티루틴 쇼핑백,1,0,0,692882949871,ORD250731-0136,L001-0030
+ORD250731-0136,2025-7-31,19:22:52,이은아,010-6349-6954,L001-0001,DUALSONIC 쇼핑백,11,0,0,692882949871,ORD250731-0136,L001-0001
+ORD250731-0136,2025-7-31,19:22:52,이은아,010-6349-6954,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),24,0,0,692882949871,ORD250731-0136,8809595040635
+ORD250731-0136,2025-7-31,19:22:52,이은아,010-6349-6954,JGIFT-0024,EMS Belt_Mint,2,0,0,692882949871,ORD250731-0136,8809595040758
+ORD250731-0136,2025-7-31,19:22:52,이은아,010-6349-6954,K001-0133,C/T 택배박스(560*400*420),1,0,0,692882949871,ORD250731-0136,K001-0133
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-4.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-4.csv
new file mode 100644
index 0000000..bd23be5
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-4.csv
@@ -0,0 +1,24 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250704-0029,2025-7-4,14:22:4,김주연,01083508458,JGIFT-0024,EMS Belt_Mint,1,0,0,459701777986,ORD250704-0029,JGIFT-0024
+ORD250704-0029,2025-7-4,14:22:4,김주연,01083508458,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459701777986,ORD250704-0029,K001-0008
+ORD250704-0029,2025-7-4,14:22:4,김주연,01083508458,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459701777986,ORD250704-0029,L001-0032
+ORD250704-0020,2025-7-4,14:26:55,황선영,010-5834-1340,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459701777894,ORD250704-0020,K001-0008
+ORD250704-0020,2025-7-4,14:26:55,황선영,010-5834-1340,JGIFT-0024,EMS Belt_Mint,1,0,0,459701777894,ORD250704-0020,JGIFT-0024
+ORD250704-0020,2025-7-4,14:26:55,황선영,010-5834-1340,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459701777894,ORD250704-0020,L001-0032
+ORD250704-0041,2025-7-4,14:33:22,김혜란 매니저,010-7997-8384 ,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),50,0,0,459704513354,ORD250704-0041,L004-0023
+ORD250704-0039,2025-7-4,14:36:17,김혜란 매니저,010-7997-8384 ,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,459704513332,ORD250704-0039,8809595040017
+ORD250704-0057,2025-7-4,16:4:30,배명희,010-7437-1791,JGIFT-0026,EMS Belt_Purple,1,0,0,692428137073,ORD250704-0057,JGIFT-0026
+ORD250704-0057,2025-7-4,16:4:30,배명희,010-7437-1791,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692428137073,ORD250704-0057,K001-0008
+ORD250704-0057,2025-7-4,16:4:30,배명희,010-7437-1791,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692428137073,ORD250704-0057,L001-0032
+ORD250704-0078,2025-7-4,16:5:20,조미*,0502-2246-1927,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692428137283,ORD250704-0078,K001-0008
+ORD250704-0078,2025-7-4,16:5:20,조미*,0502-2246-1927,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692428137283,ORD250704-0078,L001-0032
+ORD250704-0078,2025-7-4,16:5:20,조미*,0502-2246-1927,JGIFT-0025,EMS Belt_Peach,1,0,0,692428137283,ORD250704-0078,JGIFT-0025
+ORD250704-0054,2025-7-4,16:8:11,강수현,010-7223-4741,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,692428137040,ORD250704-0054,K001-0020
+ORD250704-0054,2025-7-4,16:8:11,강수현,010-7223-4741,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692428137040,ORD250704-0054,L004-0023
+ORD250704-0054,2025-7-4,16:8:11,강수현,010-7223-4741,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,692428137040,ORD250704-0054,8809595040017
+ORD250704-0053,2025-7-4,16:10:5,박철호,010-5296-1238,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,692428137036,ORD250704-0053,K001-0020
+ORD250704-0053,2025-7-4,16:10:5,박철호,010-5296-1238,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692428137036,ORD250704-0053,L004-0023
+ORD250704-0053,2025-7-4,16:10:5,박철호,010-5296-1238,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,692428137036,ORD250704-0053,8809595040017
+ORD250704-0055,2025-7-4,16:13:5,나새롬,010-2791-7366,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,692428137051,ORD250704-0055,8809595040017
+ORD250704-0055,2025-7-4,16:13:5,나새롬,010-2791-7366,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,692428137051,ORD250704-0055,L004-0023
+ORD250704-0055,2025-7-4,16:13:5,나새롬,010-2791-7366,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,692428137051,ORD250704-0055,K001-0020
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-7.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-7.csv
new file mode 100644
index 0000000..93042d4
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-7.csv
@@ -0,0 +1,271 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250707-0129,2025-7-7,11:30:47,장미옥,0504-2311-0591,K001-0022,가죽케이스 박스 (2호),1,0,0,459716715356,ORD250707-0129,K001-0022
+ORD250707-0129,2025-7-7,11:30:47,장미옥,0504-2311-0591,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459716715356,ORD250707-0129,L004-0023
+ORD250707-0126,2025-7-7,11:31:58,한인숙,0504-2445-9243,K001-0022,가죽케이스 박스 (2호),1,0,0,459716715323,ORD250707-0126,K001-0022
+ORD250707-0126,2025-7-7,11:31:58,한인숙,0504-2445-9243,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459716715323,ORD250707-0126,8809595040017
+ORD250707-0125,2025-7-7,11:35:36,김도윤,0504-2324-1482,K001-0022,가죽케이스 박스 (2호),1,0,0,459716715312,ORD250707-0125,K001-0022
+ORD250707-0125,2025-7-7,11:35:36,김도윤,0504-2324-1482,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459716715312,ORD250707-0125,8809595040017
+ORD250707-0124,2025-7-7,11:36:27,조윤식,0504-2163-1776,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459716715301,ORD250707-0124,8809595040017
+ORD250707-0124,2025-7-7,11:36:27,조윤식,0504-2163-1776,K001-0022,가죽케이스 박스 (2호),1,0,0,459716715301,ORD250707-0124,K001-0022
+ORD250707-0123,2025-7-7,11:37:14,정희영,0504-2363-5650,K001-0022,가죽케이스 박스 (2호),1,0,0,459716715290,ORD250707-0123,K001-0022
+ORD250707-0123,2025-7-7,11:37:14,정희영,0504-2363-5650,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459716715290,ORD250707-0123,8809595040017
+ORD250707-0122,2025-7-7,11:38:3,최현숙,0504-2242-8633,K001-0022,가죽케이스 박스 (2호),1,0,0,459716715286,ORD250707-0122,K001-0022
+ORD250707-0122,2025-7-7,11:38:3,최현숙,0504-2242-8633,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,459716715286,ORD250707-0122,8809595040017
+ORD250707-0335,2025-7-7,11:39:41,해외출고,010-0000-0000,K001-0010,젤 3개 포장박스 (1호),1,0,0,692456847993,ORD250707-0335,K001-0010
+ORD250707-0335,2025-7-7,11:39:41,해외출고,010-0000-0000,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,692456847993,ORD250707-0335,8809750465013
+ORD250707-0131,2025-7-7,11:42:32,정혜련,0504-2380-4369,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459716715371,ORD250707-0131,L004-0023
+ORD250707-0131,2025-7-7,11:42:32,정혜련,0504-2380-4369,K001-0022,가죽케이스 박스 (2호),1,0,0,459716715371,ORD250707-0131,K001-0022
+ORD250707-0130,2025-7-7,11:43:14,고수은,0504-2135-1752,K001-0022,가죽케이스 박스 (2호),1,0,0,459716715360,ORD250707-0130,K001-0022
+ORD250707-0130,2025-7-7,11:43:14,고수은,0504-2135-1752,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459716715360,ORD250707-0130,L004-0023
+ORD250707-0114,2025-7-7,11:45:3,황언*,0502-2253-0381,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459716715205,ORD250707-0114,L001-0032
+ORD250707-0114,2025-7-7,11:45:3,황언*,0502-2253-0381,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716715205,ORD250707-0114,K001-0008
+ORD250707-0114,2025-7-7,11:45:3,황언*,0502-2253-0381,JGIFT-0024,EMS Belt_Mint,1,0,0,459716715205,ORD250707-0114,JGIFT-0024
+ORD250707-0113,2025-7-7,11:45:43,강미*,0502-2250-0255,JGIFT-0024,EMS Belt_Mint,1,0,0,459716715194,ORD250707-0113,JGIFT-0024
+ORD250707-0113,2025-7-7,11:45:43,강미*,0502-2250-0255,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716715194,ORD250707-0113,K001-0008
+ORD250707-0113,2025-7-7,11:45:43,강미*,0502-2250-0255,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459716715194,ORD250707-0113,L001-0032
+ORD250707-0108,2025-7-7,11:50:1,홍*희,0502-6360-5993,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459716715194,ORD250707-0108,L001-0032
+ORD250707-0108,2025-7-7,11:50:1,홍*희,0502-6360-5993,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716715194,ORD250707-0108,K001-0008
+ORD250707-0108,2025-7-7,11:50:1,홍*희,0502-6360-5993,JGIFT-0024,EMS Belt_Mint,1,0,0,459716715194,ORD250707-0108,JGIFT-0024
+ORD250707-0454,2025-7-7,13:2:34,양경희,010-2980-0713,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,459716714645,ORD250707-0454,8809595040628
+ORD250707-0454,2025-7-7,13:2:34,양경희,010-2980-0713,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,459716714645,ORD250707-0454,8809595040635
+ORD250707-0454,2025-7-7,13:2:34,양경희,010-2980-0713,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459716714645,ORD250707-0454,K001-0007
+ORD250707-0454,2025-7-7,13:2:34,양경희,010-2980-0713,L001-0030,뷰티루틴 쇼핑백,2,0,0,459716714645,ORD250707-0454,L001-0030
+ORD250707-0483,2025-7-7,13:9:55,이지은,010-2778-0302,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),3,0,0,459716714936,ORD250707-0483,8809595040628
+ORD250707-0483,2025-7-7,13:9:55,이지은,010-2778-0302,L001-0030,뷰티루틴 쇼핑백,3,0,0,459716714936,ORD250707-0483,L001-0030
+ORD250707-0483,2025-7-7,13:9:55,이지은,010-2778-0302,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459716714936,ORD250707-0483,K001-0007
+ORD250707-0483,2025-7-7,13:9:55,이지은,010-2778-0302,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),3,0,0,459716714936,ORD250707-0483,8809595040635
+ORD250707-0484,2025-7-7,13:11:16,김윤경,010-9018-3969,L001-0030,뷰티루틴 쇼핑백,3,0,0,459716714940,ORD250707-0484,L001-0030
+ORD250707-0484,2025-7-7,13:11:16,김윤경,010-9018-3969,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),3,0,0,459716714940,ORD250707-0484,8809595040635
+ORD250707-0484,2025-7-7,13:11:16,김윤경,010-9018-3969,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),3,0,0,459716714940,ORD250707-0484,8809595040628
+ORD250707-0484,2025-7-7,13:11:16,김윤경,010-9018-3969,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459716714940,ORD250707-0484,K001-0007
+ORD250707-0485,2025-7-7,13:15:1,신철,010-6239-7676,L001-0030,뷰티루틴 쇼핑백,3,0,0,459716714951,ORD250707-0485,L001-0030
+ORD250707-0485,2025-7-7,13:15:1,신철,010-6239-7676,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),3,0,0,459716714951,ORD250707-0485,8809595040628
+ORD250707-0485,2025-7-7,13:15:1,신철,010-6239-7676,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459716714951,ORD250707-0485,K001-0007
+ORD250707-0485,2025-7-7,13:15:1,신철,010-6239-7676,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),3,0,0,459716714951,ORD250707-0485,8809595040635
+ORD250707-0486,2025-7-7,13:16:49,김정하,010-6391-7836,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),3,0,0,459716714962,ORD250707-0486,8809595040628
+ORD250707-0486,2025-7-7,13:16:49,김정하,010-6391-7836,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),3,0,0,459716714962,ORD250707-0486,8809595040635
+ORD250707-0486,2025-7-7,13:16:49,김정하,010-6391-7836,L001-0030,뷰티루틴 쇼핑백,3,0,0,459716714962,ORD250707-0486,L001-0030
+ORD250707-0486,2025-7-7,13:16:49,김정하,010-6391-7836,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459716714962,ORD250707-0486,K001-0007
+ORD250707-0487,2025-7-7,13:19:13,구민지,010-9056-0865,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459716714973,ORD250707-0487,K001-0007
+ORD250707-0487,2025-7-7,13:19:13,구민지,010-9056-0865,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),3,0,0,459716714973,ORD250707-0487,8809595040628
+ORD250707-0487,2025-7-7,13:19:13,구민지,010-9056-0865,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),3,0,0,459716714973,ORD250707-0487,8809595040635
+ORD250707-0487,2025-7-7,13:19:13,구민지,010-9056-0865,L001-0030,뷰티루틴 쇼핑백,3,0,0,459716714973,ORD250707-0487,L001-0030
+ORD250707-0488,2025-7-7,13:24:2,김세욱,010-6309-8072,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),6,0,0,459716714984,ORD250707-0488,8809595040635
+ORD250707-0488,2025-7-7,13:24:2,김세욱,010-6309-8072,L001-0030,뷰티루틴 쇼핑백,6,0,0,459716714984,ORD250707-0488,L001-0030
+ORD250707-0488,2025-7-7,13:24:2,김세욱,010-6309-8072,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),6,0,0,459716714984,ORD250707-0488,8809595040628
+ORD250707-0488,2025-7-7,13:24:2,김세욱,010-6309-8072,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716714984,ORD250707-0488,K001-0008
+ORD250707-0448,2025-7-7,13:27:5,홍근순,010-5913-5882,P001-DSA005,DUALSONIC Pro ALPHA 1Set[Face 20,000, EYE 200,000],1,20000,200000,459716714586,402505021100,402505021100
+ORD250707-0448,2025-7-7,13:27:5,홍근순,010-5913-5882,K001-0041,단품 1SET 박스 (3호),1,0,0,459716714586,402505021100,K001-0041
+ORD250707-0448,2025-7-7,13:27:5,홍근순,010-5913-5882,L001-0030,뷰티루틴 쇼핑백,1,0,0,459716714586,402505021100,L001-0030
+ORD250707-0501,2025-7-7,13:36:50,김민정,010-2985-1913,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459716715080,402502125100,502506007100
+ORD250707-0501,2025-7-7,13:36:50,김민정,010-2985-1913,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,459716715080,402502125100,8809750465013
+ORD250707-0501,2025-7-7,13:36:50,김민정,010-2985-1913,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),20,0,0,459716715080,402502125100,L004-0023
+ORD250707-0501,2025-7-7,13:36:50,김민정,010-2985-1913,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716715080,402502125100,8809595040017
+ORD250707-0501,2025-7-7,13:36:50,김민정,010-2985-1913,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716715080,402502125100,K001-0008
+ORD250707-0501,2025-7-7,13:36:50,김민정,010-2985-1913,JGIFT-0025,EMS Belt_Peach,1,0,0,459716715080,402502125100,JGIFT-0025
+ORD250707-0501,2025-7-7,13:36:50,김민정,010-2985-1913,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],1,40000,400000,459716715080,402502125100,402502125100
+ORD250707-0501,2025-7-7,13:36:50,김민정,010-2985-1913,L001-0030,뷰티루틴 쇼핑백,2,0,0,459716715080,402502125100,L001-0030
+ORD250707-0501,2025-7-7,13:36:50,김민정,010-2985-1913,P001-0156,우디케이스,1,0,0,459716715080,402502125100,8809595040598
+ORD250707-0449,2025-7-7,13:43:53,조영아,010-4534-5955,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716714590,ORD250707-0449,K001-0008
+ORD250707-0449,2025-7-7,13:43:53,조영아,010-4534-5955,JGIFT-0026,EMS Belt_Purple,1,0,0,459716714590,ORD250707-0449,JGIFT-0026
+ORD250707-0449,2025-7-7,13:43:53,조영아,010-4534-5955,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459716714590,ORD250707-0449,L001-0032
+ORD250707-0450,2025-7-7,13:45:35,윤진원,010-2579-2259,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716714601,ORD250707-0450,K001-0008
+ORD250707-0450,2025-7-7,13:45:35,윤진원,010-2579-2259,JGIFT-0026,EMS Belt_Purple,1,0,0,459716714601,ORD250707-0450,JGIFT-0026
+ORD250707-0450,2025-7-7,13:45:35,윤진원,010-2579-2259,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459716714601,ORD250707-0450,L001-0032
+ORD250707-0451,2025-7-7,13:46:40,장민수,010-5357-2244,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716714612,ORD250707-0451,K001-0008
+ORD250707-0451,2025-7-7,13:46:40,장민수,010-5357-2244,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459716714612,ORD250707-0451,L001-0032
+ORD250707-0451,2025-7-7,13:46:40,장민수,010-5357-2244,JGIFT-0026,EMS Belt_Purple,1,0,0,459716714612,ORD250707-0451,JGIFT-0026
+ORD250707-0452,2025-7-7,13:47:38,김난희,010-9147-9691,JGIFT-0026,EMS Belt_Purple,1,0,0,459716714623,ORD250707-0452,JGIFT-0026
+ORD250707-0452,2025-7-7,13:47:38,김난희,010-9147-9691,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716714623,ORD250707-0452,K001-0008
+ORD250707-0452,2025-7-7,13:47:38,김난희,010-9147-9691,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459716714623,ORD250707-0452,L001-0032
+ORD250707-0453,2025-7-7,13:49:18,지민영,010-9965-6937,JGIFT-0025,EMS Belt_Peach,1,0,0,459716714634,ORD250707-0453,JGIFT-0025
+ORD250707-0453,2025-7-7,13:49:18,지민영,010-9965-6937,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716714634,ORD250707-0453,K001-0008
+ORD250707-0453,2025-7-7,13:49:18,지민영,010-9965-6937,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459716714634,ORD250707-0453,L001-0032
+ORD250707-0498,2025-7-7,13:50:18,김민주,01054976689,JGIFT-0025,EMS Belt_Peach,1,0,0,459716715091,ORD250707-0498,JGIFT-0025
+ORD250707-0498,2025-7-7,13:50:18,김민주,01054976689,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459716715091,ORD250707-0498,L001-0032
+ORD250707-0498,2025-7-7,13:50:18,김민주,01054976689,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716715091,ORD250707-0498,K001-0008
+ORD250707-0499,2025-7-7,13:51:16,문상희,01085297985,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716715102,ORD250707-0499,K001-0008
+ORD250707-0499,2025-7-7,13:51:16,문상희,01085297985,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459716715102,ORD250707-0499,L001-0032
+ORD250707-0499,2025-7-7,13:51:16,문상희,01085297985,JGIFT-0025,EMS Belt_Peach,1,0,0,459716715102,ORD250707-0499,JGIFT-0025
+ORD250707-0276,2025-7-7,13:53:4,장미경,010-9524-6556,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459716713960,ORD250707-0276,8809595040017
+ORD250707-0276,2025-7-7,13:53:4,장미경,010-9524-6556,K001-0010,젤 3개 포장박스 (1호),1,0,0,459716713960,ORD250707-0276,K001-0010
+ORD250707-0277,2025-7-7,13:53:43,김도현,010-2771-6248,K001-0010,젤 3개 포장박스 (1호),1,0,0,459716713971,ORD250707-0277,K001-0010
+ORD250707-0277,2025-7-7,13:53:43,김도현,010-2771-6248,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459716713971,ORD250707-0277,8809595040017
+ORD250707-0308,2025-7-7,14:0:25,김도연,010-5297-3311,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714310,ORD250707-0308,L004-0023
+ORD250707-0308,2025-7-7,14:0:25,김도연,010-5297-3311,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714310,ORD250707-0308,8809595040017
+ORD250707-0308,2025-7-7,14:0:25,김도연,010-5297-3311,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714310,ORD250707-0308,K001-0020
+ORD250707-0309,2025-7-7,14:2:29,한보미,010-9471-0114,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714321,ORD250707-0309,L004-0023
+ORD250707-0309,2025-7-7,14:2:29,한보미,010-9471-0114,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714321,ORD250707-0309,K001-0020
+ORD250707-0309,2025-7-7,14:2:29,한보미,010-9471-0114,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714321,ORD250707-0309,8809595040017
+ORD250707-0310,2025-7-7,14:4:26,김희숙,010-7485-0408,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714332,ORD250707-0310,8809595040017
+ORD250707-0310,2025-7-7,14:4:26,김희숙,010-7485-0408,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714332,ORD250707-0310,K001-0020
+ORD250707-0310,2025-7-7,14:4:26,김희숙,010-7485-0408,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714332,ORD250707-0310,L004-0023
+ORD250707-0311,2025-7-7,14:6:27,오영화,010-8483-3217,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714343,ORD250707-0311,K001-0020
+ORD250707-0311,2025-7-7,14:6:27,오영화,010-8483-3217,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714343,ORD250707-0311,8809595040017
+ORD250707-0311,2025-7-7,14:6:27,오영화,010-8483-3217,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714343,ORD250707-0311,L004-0023
+ORD250707-0312,2025-7-7,14:8:10,김강문,010-7522-1450,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714354,ORD250707-0312,K001-0020
+ORD250707-0312,2025-7-7,14:8:10,김강문,010-7522-1450,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714354,ORD250707-0312,L004-0023
+ORD250707-0312,2025-7-7,14:8:10,김강문,010-7522-1450,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714354,ORD250707-0312,8809595040017
+ORD250707-0313,2025-7-7,14:14:58,권석란,010-4294-5253,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714365,ORD250707-0313,8809595040017
+ORD250707-0313,2025-7-7,14:14:58,권석란,010-4294-5253,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714365,ORD250707-0313,L004-0023
+ORD250707-0313,2025-7-7,14:14:58,권석란,010-4294-5253,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714365,ORD250707-0313,K001-0020
+ORD250707-0314,2025-7-7,14:17:25,김정아,010-9606-1982,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714376,ORD250707-0314,K001-0020
+ORD250707-0314,2025-7-7,14:17:25,김정아,010-9606-1982,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714376,ORD250707-0314,L004-0023
+ORD250707-0314,2025-7-7,14:17:25,김정아,010-9606-1982,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714376,ORD250707-0314,8809595040017
+ORD250707-0315,2025-7-7,14:19:19,정미해,010-3067-7151,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714380,ORD250707-0315,8809595040017
+ORD250707-0315,2025-7-7,14:19:19,정미해,010-3067-7151,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714380,ORD250707-0315,K001-0020
+ORD250707-0315,2025-7-7,14:19:19,정미해,010-3067-7151,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714380,ORD250707-0315,L004-0023
+ORD250707-0316,2025-7-7,14:21:14,조성은,010-9073-3424,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714391,ORD250707-0316,K001-0020
+ORD250707-0316,2025-7-7,14:21:14,조성은,010-9073-3424,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714391,ORD250707-0316,8809595040017
+ORD250707-0316,2025-7-7,14:21:14,조성은,010-9073-3424,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714391,ORD250707-0316,L004-0023
+ORD250707-0317,2025-7-7,14:25:0,김수정,010-8887-8093,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714402,ORD250707-0317,L004-0023
+ORD250707-0317,2025-7-7,14:25:0,김수정,010-8887-8093,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714402,ORD250707-0317,8809595040017
+ORD250707-0317,2025-7-7,14:25:0,김수정,010-8887-8093,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714402,ORD250707-0317,K001-0020
+ORD250707-0500,2025-7-7,14:26:37,변보*,0502-2257-1196,K001-0010,젤 3개 포장박스 (1호),1,0,0,459716715113,ORD250707-0500,K001-0010
+ORD250707-0500,2025-7-7,14:26:37,변보*,0502-2257-1196,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459716715113,ORD250707-0500,8809595040017
+ORD250707-0318,2025-7-7,14:29:13,임소희,010-9482-9159,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714413,ORD250707-0318,8809595040017
+ORD250707-0318,2025-7-7,14:29:13,임소희,010-9482-9159,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714413,ORD250707-0318,L004-0023
+ORD250707-0318,2025-7-7,14:29:13,임소희,010-9482-9159,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714413,ORD250707-0318,K001-0020
+ORD250707-0319,2025-7-7,14:31:21,윤효진,010-7997-8335,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714424,ORD250707-0319,K001-0020
+ORD250707-0319,2025-7-7,14:31:21,윤효진,010-7997-8335,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714424,ORD250707-0319,L004-0023
+ORD250707-0319,2025-7-7,14:31:21,윤효진,010-7997-8335,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714424,ORD250707-0319,8809595040017
+ORD250707-0320,2025-7-7,14:33:47,최솔지,010-4846-0112,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714435,ORD250707-0320,8809595040017
+ORD250707-0320,2025-7-7,14:33:47,최솔지,010-4846-0112,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714435,ORD250707-0320,K001-0020
+ORD250707-0320,2025-7-7,14:33:47,최솔지,010-4846-0112,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714435,ORD250707-0320,L004-0023
+ORD250707-0321,2025-7-7,14:36:34,심은숙,010-2542-8302,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714446,ORD250707-0321,K001-0020
+ORD250707-0321,2025-7-7,14:36:34,심은숙,010-2542-8302,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714446,ORD250707-0321,8809595040017
+ORD250707-0321,2025-7-7,14:36:34,심은숙,010-2542-8302,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714446,ORD250707-0321,L004-0023
+ORD250707-0322,2025-7-7,14:38:33,김지연,010-2990-9368,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714450,ORD250707-0322,L004-0023
+ORD250707-0322,2025-7-7,14:38:33,김지연,010-2990-9368,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714450,ORD250707-0322,8809595040017
+ORD250707-0322,2025-7-7,14:38:33,김지연,010-2990-9368,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714450,ORD250707-0322,K001-0020
+ORD250707-0323,2025-7-7,14:42:11,임은미,010-5500-7536,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714461,ORD250707-0323,K001-0020
+ORD250707-0323,2025-7-7,14:42:11,임은미,010-5500-7536,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714461,ORD250707-0323,L004-0023
+ORD250707-0323,2025-7-7,14:42:11,임은미,010-5500-7536,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714461,ORD250707-0323,8809595040017
+ORD250707-0324,2025-7-7,14:43:54,최혁,010-3805-8723,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714472,ORD250707-0324,8809595040017
+ORD250707-0324,2025-7-7,14:43:54,최혁,010-3805-8723,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714472,ORD250707-0324,L004-0023
+ORD250707-0324,2025-7-7,14:43:54,최혁,010-3805-8723,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714472,ORD250707-0324,K001-0020
+ORD250707-0325,2025-7-7,14:46:15,백하윤,010-9608-1816,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714483,ORD250707-0325,8809595040017
+ORD250707-0325,2025-7-7,14:46:15,백하윤,010-9608-1816,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714483,ORD250707-0325,K001-0020
+ORD250707-0325,2025-7-7,14:46:15,백하윤,010-9608-1816,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714483,ORD250707-0325,L004-0023
+ORD250707-0326,2025-7-7,14:50:41,정일화,010-2886-2448,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714494,ORD250707-0326,L004-0023
+ORD250707-0326,2025-7-7,14:50:41,정일화,010-2886-2448,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714494,ORD250707-0326,8809595040017
+ORD250707-0326,2025-7-7,14:50:41,정일화,010-2886-2448,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714494,ORD250707-0326,K001-0020
+ORD250707-0327,2025-7-7,14:52:48,정주비,010-3339-3039,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714505,ORD250707-0327,8809595040017
+ORD250707-0327,2025-7-7,14:52:48,정주비,010-3339-3039,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714505,ORD250707-0327,L004-0023
+ORD250707-0327,2025-7-7,14:52:48,정주비,010-3339-3039,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714505,ORD250707-0327,K001-0020
+ORD250707-0328,2025-7-7,14:55:26,권설희,010-2802-5654,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714516,ORD250707-0328,8809595040017
+ORD250707-0328,2025-7-7,14:55:26,권설희,010-2802-5654,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714516,ORD250707-0328,K001-0020
+ORD250707-0328,2025-7-7,14:55:26,권설희,010-2802-5654,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714516,ORD250707-0328,L004-0023
+ORD250707-0329,2025-7-7,14:58:52,이미선,010-6501-9177,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714520,ORD250707-0329,8809595040017
+ORD250707-0329,2025-7-7,14:58:52,이미선,010-6501-9177,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714520,ORD250707-0329,L004-0023
+ORD250707-0329,2025-7-7,14:58:52,이미선,010-6501-9177,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714520,ORD250707-0329,K001-0020
+ORD250707-0330,2025-7-7,15:2:35,이연우,010-2747-3086,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714531,ORD250707-0330,K001-0020
+ORD250707-0330,2025-7-7,15:2:35,이연우,010-2747-3086,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714531,ORD250707-0330,L004-0023
+ORD250707-0330,2025-7-7,15:2:35,이연우,010-2747-3086,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714531,ORD250707-0330,8809595040017
+ORD250707-0331,2025-7-7,15:3:53,김영욱,010-3526-0192,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714542,ORD250707-0331,L004-0023
+ORD250707-0331,2025-7-7,15:3:53,김영욱,010-3526-0192,L004-0001,DUALSONIC Blooming Moisture Gel,10,0,0,459716714542,ORD250707-0331,8809595040017
+ORD250707-0331,2025-7-7,15:3:53,김영욱,010-3526-0192,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,459716714542,ORD250707-0331,K001-0020
+ORD250707-0332,2025-7-7,15:15:22,이의준,010-4156-6107,L004-0001,DUALSONIC Blooming Moisture Gel,20,0,0,459716714553,ORD250707-0332,8809595040017
+ORD250707-0332,2025-7-7,15:15:22,이의준,010-4156-6107,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),20,0,0,459716714553,ORD250707-0332,L004-0023
+ORD250707-0332,2025-7-7,15:15:22,이의준,010-4156-6107,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716714553,ORD250707-0332,K001-0008
+ORD250707-0446,2025-7-7,15:17:38,윤해주,010-8582-0406,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,459716714564,ORD250707-0446,L004-0023
+ORD250707-0446,2025-7-7,15:17:38,윤해주,010-8582-0406,K001-0010,젤 3개 포장박스 (1호),1,0,0,459716714564,ORD250707-0446,K001-0010
+ORD250707-0447,2025-7-7,15:18:21,박서연,0502-3689-5085,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459716714575,ORD250707-0447,L004-0023
+ORD250707-0447,2025-7-7,15:18:21,박서연,0502-3689-5085,K001-0010,젤 3개 포장박스 (1호),1,0,0,459716714575,ORD250707-0447,K001-0010
+ORD250707-0282,2025-7-7,15:20:18,나영,010-8539-5528,K001-0041,단품 1SET 박스 (3호),1,0,0,459716714026,ORD250707-0282,K001-0041
+ORD250707-0282,2025-7-7,15:20:18,나영,010-8539-5528,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,459716714026,ORD250707-0282,L001-0031
+ORD250707-0282,2025-7-7,15:20:18,나영,010-8539-5528,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,459716714026,ORD250707-0282,8809527487118
+ORD250707-0283,2025-7-7,15:23:23,배수현,010-4927-9101,L004-0056,Elixir Aqua Hyal Premium Set(엘릭시르 하이알 프리미엄 세트),1,0,0,459716714030,ORD250707-0283,8809527487118
+ORD250707-0283,2025-7-7,15:23:23,배수현,010-4927-9101,L001-0030,뷰티루틴 쇼핑백,3,0,0,459716714030,ORD250707-0283,L001-0030
+ORD250707-0283,2025-7-7,15:23:23,배수현,010-4927-9101,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),3,0,0,459716714030,ORD250707-0283,8809595040635
+ORD250707-0283,2025-7-7,15:23:23,배수현,010-4927-9101,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,459716714030,ORD250707-0283,K001-0007
+ORD250707-0283,2025-7-7,15:23:23,배수현,010-4927-9101,L001-0031,신년 스페셜 쇼핑백(260*160*220),1,0,0,459716714030,ORD250707-0283,L001-0031
+ORD250707-0283,2025-7-7,15:23:23,배수현,010-4927-9101,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),3,0,0,459716714030,ORD250707-0283,8809595040628
+ORD250707-0504,2025-7-7,15:24:49,홍은*,0503-6360-0954,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,692468055133,ORD250707-0504,8809595040017
+ORD250707-0504,2025-7-7,15:24:49,홍은*,0503-6360-0954,K001-0010,젤 3개 포장박스 (1호),1,0,0,692468055133,ORD250707-0504,K001-0010
+ORD250707-0489,2025-7-7,15:34:6,최하늬,010-4416-1608,L001-0030,뷰티루틴 쇼핑백,2,0,0,459716714995,402502148100,L001-0030
+ORD250707-0489,2025-7-7,15:34:6,최하늬,010-4416-1608,JGIFT-0025,EMS Belt_Peach,1,0,0,459716714995,402502148100,JGIFT-0025
+ORD250707-0489,2025-7-7,15:34:6,최하늬,010-4416-1608,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716714995,402502148100,L004-0023
+ORD250707-0489,2025-7-7,15:34:6,최하늬,010-4416-1608,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459716714995,402502148100,502506027100
+ORD250707-0489,2025-7-7,15:34:6,최하늬,010-4416-1608,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],1,40000,400000,459716714995,402502148100,402502148100
+ORD250707-0489,2025-7-7,15:34:6,최하늬,010-4416-1608,P001-0156,우디케이스,1,0,0,459716714995,402502148100,8809595040598
+ORD250707-0489,2025-7-7,15:34:6,최하늬,010-4416-1608,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716714995,402502148100,K001-0008
+ORD250707-0489,2025-7-7,15:34:6,최하늬,010-4416-1608,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,459716714995,402502148100,8809750465013
+ORD250707-0490,2025-7-7,15:48:50,박미정,010-3165-0126,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],1,40000,400000,459716715006,402503009100,402503009100
+ORD250707-0490,2025-7-7,15:48:50,박미정,010-3165-0126,P001-0156,우디케이스,1,0,0,459716715006,402503009100,8809595040598
+ORD250707-0490,2025-7-7,15:48:50,박미정,010-3165-0126,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716715006,402503009100,L004-0023
+ORD250707-0490,2025-7-7,15:48:50,박미정,010-3165-0126,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,459716715006,402503009100,8809750465013
+ORD250707-0490,2025-7-7,15:48:50,박미정,010-3165-0126,JGIFT-0025,EMS Belt_Peach,1,0,0,459716715006,402503009100,JGIFT-0025
+ORD250707-0490,2025-7-7,15:48:50,박미정,010-3165-0126,L001-0030,뷰티루틴 쇼핑백,2,0,0,459716715006,402503009100,L001-0030
+ORD250707-0490,2025-7-7,15:48:50,박미정,010-3165-0126,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459716715006,402503009100,502506057100
+ORD250707-0490,2025-7-7,15:48:50,박미정,010-3165-0126,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716715006,402503009100,K001-0008
+ORD250707-0278,2025-7-7,15:55:34,여울,010-7511-1526,K001-0041,단품 1SET 박스 (3호),1,0,0,459716713982,502506043100,K001-0041
+ORD250707-0278,2025-7-7,15:55:34,여울,010-7511-1526,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459716713982,502506043100,502506043100
+ORD250707-0278,2025-7-7,15:55:34,여울,010-7511-1526,L001-0030,뷰티루틴 쇼핑백,1,0,0,459716713982,502506043100,L001-0030
+ORD250707-0279,2025-7-7,15:58:59,송수민,010-9859-0106,K001-0041,단품 1SET 박스 (3호),1,0,0,459716713993,502506062100,K001-0041
+ORD250707-0279,2025-7-7,15:58:59,송수민,010-9859-0106,L001-0030,뷰티루틴 쇼핑백,1,0,0,459716713993,502506062100,L001-0030
+ORD250707-0279,2025-7-7,15:58:59,송수민,010-9859-0106,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459716713993,502506062100,502506062100
+ORD250707-0280,2025-7-7,16:0:47,전희수,0502-3089-5985,K001-0041,단품 1SET 박스 (3호),1,0,0,459716714004,502506095100,K001-0041
+ORD250707-0280,2025-7-7,16:0:47,전희수,0502-3089-5985,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459716714004,502506095100,502506095100
+ORD250707-0280,2025-7-7,16:0:47,전희수,0502-3089-5985,L001-0030,뷰티루틴 쇼핑백,1,0,0,459716714004,502506095100,L001-0030
+ORD250707-0281,2025-7-7,16:2:15,노윤지,010-9660-6606,K001-0041,단품 1SET 박스 (3호),1,0,0,459716714015,502506039100,K001-0041
+ORD250707-0281,2025-7-7,16:2:15,노윤지,010-9660-6606,L001-0030,뷰티루틴 쇼핑백,1,0,0,459716714015,502506039100,L001-0030
+ORD250707-0281,2025-7-7,16:2:15,노윤지,010-9660-6606,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459716714015,502506039100,502506039100
+ORD250707-0392,2025-7-7,16:3:38,문예진,010-8279-7119,K001-0041,단품 1SET 박스 (3호),1,0,0,459701777780,502506081100,K001-0041
+ORD250707-0392,2025-7-7,16:3:38,문예진,010-8279-7119,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459701777780,502506081100,502506081100
+ORD250707-0392,2025-7-7,16:3:38,문예진,010-8279-7119,L001-0030,뷰티루틴 쇼핑백,1,0,0,459701777780,502506081100,L001-0030
+ORD250707-0497,2025-7-7,16:15:36,박창현,010-5216-3821,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716715076,402502164100,K001-0008
+ORD250707-0497,2025-7-7,16:15:36,박창현,010-5216-3821,P001-0156,우디케이스,1,0,0,459716715076,402502164100,8809595040598
+ORD250707-0497,2025-7-7,16:15:36,박창현,010-5216-3821,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],1,40000,400000,459716715076,402502164100,402502164100
+ORD250707-0497,2025-7-7,16:15:36,박창현,010-5216-3821,L001-0030,뷰티루틴 쇼핑백,2,0,0,459716715076,402502164100,L001-0030
+ORD250707-0497,2025-7-7,16:15:36,박창현,010-5216-3821,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459716715076,402502164100,502506099100
+ORD250707-0497,2025-7-7,16:15:36,박창현,010-5216-3821,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,459716715076,402502164100,8809750465013
+ORD250707-0497,2025-7-7,16:15:36,박창현,010-5216-3821,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716715076,402502164100,L004-0023
+ORD250707-0497,2025-7-7,16:15:36,박창현,010-5216-3821,JGIFT-0025,EMS Belt_Peach,1,0,0,459716715076,402502164100,JGIFT-0025
+ORD250707-0496,2025-7-7,16:19:28,신가혜,010-6316-5717,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716715065,402502188100,K001-0008
+ORD250707-0496,2025-7-7,16:19:28,신가혜,010-6316-5717,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,459716715065,402502188100,8809750465013
+ORD250707-0496,2025-7-7,16:19:28,신가혜,010-6316-5717,P001-0156,우디케이스,1,0,0,459716715065,402502188100,8809595040598
+ORD250707-0496,2025-7-7,16:19:28,신가혜,010-6316-5717,L001-0030,뷰티루틴 쇼핑백,2,0,0,459716715065,402502188100,L001-0030
+ORD250707-0496,2025-7-7,16:19:28,신가혜,010-6316-5717,JGIFT-0025,EMS Belt_Peach,1,0,0,459716715065,402502188100,JGIFT-0025
+ORD250707-0496,2025-7-7,16:19:28,신가혜,010-6316-5717,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716715065,402502188100,L004-0023
+ORD250707-0496,2025-7-7,16:19:28,신가혜,010-6316-5717,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459716715065,402502188100,502506030100
+ORD250707-0496,2025-7-7,16:19:28,신가혜,010-6316-5717,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],1,40000,400000,459716715065,402502188100,402502188100
+ORD250707-0495,2025-7-7,16:22:10,조채인,010-2307-6661,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,459716715054,402502122100,8809750465013
+ORD250707-0495,2025-7-7,16:22:10,조채인,010-2307-6661,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716715054,402502122100,L004-0023
+ORD250707-0495,2025-7-7,16:22:10,조채인,010-2307-6661,JGIFT-0025,EMS Belt_Peach,1,0,0,459716715054,402502122100,JGIFT-0025
+ORD250707-0495,2025-7-7,16:22:10,조채인,010-2307-6661,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],1,40000,400000,459716715054,402502122100,402502122100
+ORD250707-0495,2025-7-7,16:22:10,조채인,010-2307-6661,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459716715054,402502122100,502506025100
+ORD250707-0495,2025-7-7,16:22:10,조채인,010-2307-6661,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716715054,402502122100,K001-0008
+ORD250707-0495,2025-7-7,16:22:10,조채인,010-2307-6661,P001-0156,우디케이스,1,0,0,459716715054,402502122100,8809595040598
+ORD250707-0495,2025-7-7,16:22:10,조채인,010-2307-6661,L001-0030,뷰티루틴 쇼핑백,2,0,0,459716715054,402502122100,L001-0030
+ORD250707-0494,2025-7-7,16:25:15,정필천,010-2611-8187,JGIFT-0025,EMS Belt_Peach,1,0,0,459716715043,402502147100,JGIFT-0025
+ORD250707-0494,2025-7-7,16:25:15,정필천,010-2611-8187,P001-DSA010,DUALSONIC Pro ALPHA 1Set [FACE 40,000, EYE 400,000],1,40000,400000,459716715043,402502147100,402502147100
+ORD250707-0494,2025-7-7,16:25:15,정필천,010-2611-8187,P001-0156,우디케이스,1,0,0,459716715043,402502147100,8809595040598
+ORD250707-0494,2025-7-7,16:25:15,정필천,010-2611-8187,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,459716715043,402502147100,L004-0023
+ORD250707-0494,2025-7-7,16:25:15,정필천,010-2611-8187,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459716715043,402502147100,502506067100
+ORD250707-0494,2025-7-7,16:25:15,정필천,010-2611-8187,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,459716715043,402502147100,8809750465013
+ORD250707-0494,2025-7-7,16:25:15,정필천,010-2611-8187,L001-0030,뷰티루틴 쇼핑백,2,0,0,459716715043,402502147100,L001-0030
+ORD250707-0494,2025-7-7,16:25:15,정필천,010-2611-8187,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459716715043,402502147100,K001-0008
+ORD250707-0505,2025-7-7,16:29:47,강우석,0502-6368-2040,L001-0030,뷰티루틴 쇼핑백,1,0,0,692468055144,502506048100,L001-0030
+ORD250707-0505,2025-7-7,16:29:47,강우석,0502-6368-2040,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,692468055144,502506048100,L004-0023
+ORD250707-0505,2025-7-7,16:29:47,강우석,0502-6368-2040,P001-0156,우디케이스,1,0,0,692468055144,502506048100,8809595040598
+ORD250707-0505,2025-7-7,16:29:47,강우석,0502-6368-2040,JGIFT-0026,EMS Belt_Purple,1,0,0,692468055144,502506048100,JGIFT-0026
+ORD250707-0505,2025-7-7,16:29:47,강우석,0502-6368-2040,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692468055144,502506048100,502506048100
+ORD250707-0505,2025-7-7,16:29:47,강우석,0502-6368-2040,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,692468055144,502506048100,8809595040628
+ORD250707-0505,2025-7-7,16:29:47,강우석,0502-6368-2040,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692468055144,502506048100,K001-0008
+ORD250707-0505,2025-7-7,16:29:47,강우석,0502-6368-2040,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692468055144,502506048100,L001-0032
+ORD250707-0505,2025-7-7,16:29:47,강우석,0502-6368-2040,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,692468055144,502506048100,8809595040635
+ORD250707-0506,2025-7-7,16:32:17,오수*,0502-2278-0636,JGIFT-0025,EMS Belt_Peach,1,0,0,692468055155,ORD250707-0506,JGIFT-0025
+ORD250707-0506,2025-7-7,16:32:17,오수*,0502-2278-0636,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692468055155,ORD250707-0506,L001-0032
+ORD250707-0506,2025-7-7,16:32:17,오수*,0502-2278-0636,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692468055155,ORD250707-0506,K001-0008
+ORD250707-0507,2025-7-7,16:33:28,오정아,01057806223,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692468055166,ORD250707-0507,L001-0032
+ORD250707-0507,2025-7-7,16:33:28,오정아,01057806223,JGIFT-0024,EMS Belt_Mint,1,0,0,692468055166,ORD250707-0507,JGIFT-0024
+ORD250707-0507,2025-7-7,16:33:28,오정아,01057806223,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692468055166,ORD250707-0507,K001-0008
+ORD250707-0508,2025-7-7,16:35:0,김연희,010-4816-4927,K001-0010,젤 3개 포장박스 (1호),1,0,0,692468055170,ORD250707-0508,K001-0010
+ORD250707-0508,2025-7-7,16:35:0,김연희,010-4816-4927,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,692468055170,ORD250707-0508,8809595040017
+ORD250707-0136,2025-7-7,16:46:57,김소영,010-6693-9669,K001-0010,젤 3개 포장박스 (1호),1,0,0,692470707315,ORD250707-0136,K001-0010
+ORD250707-0136,2025-7-7,16:46:57,김소영,010-6693-9669,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,692470707315,ORD250707-0136,8809595040017
+ORD250707-0523,2025-7-7,17:23:52,김서영,010-9374-3912,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,692465409542,602507003110,602507003110
+ORD250707-0522,2025-7-7,17:25:7,윤현수,010-9745-3740,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692467343325,502506412100,502506412100
+ORD250707-0522,2025-7-7,17:25:7,윤현수,010-9745-3740,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,692467343325,502506412100,602507002110
+ORD250707-0522,2025-7-7,17:25:7,윤현수,010-9745-3740,K001-0007,제품 +가죽케이스, 앰플or젤키트 포장박스 (5호),1,0,0,692467343325,502506412100,K001-0007
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-8.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-8.csv
new file mode 100644
index 0000000..a6b5fc7
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-8.csv
@@ -0,0 +1,68 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250708-0014,2025-7-8,10:44:21,고경욱,010-8924-7705,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459729829005,602501933110,8809595040635
+ORD250708-0014,2025-7-8,10:44:21,고경욱,010-8924-7705,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459729829005,602501933110,L004-0023
+ORD250708-0014,2025-7-8,10:44:21,고경욱,010-8924-7705,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459729829005,602501933110,8809595040628
+ORD250708-0014,2025-7-8,10:44:21,고경욱,010-8924-7705,P001-0152,원형케이스 퍼플,1,0,0,459729829005,602501933110,8809595040512
+ORD250708-0014,2025-7-8,10:44:21,고경욱,010-8924-7705,L001-0030,뷰티루틴 쇼핑백,1,0,0,459729829005,602501933110,L001-0030
+ORD250708-0014,2025-7-8,10:44:21,고경욱,010-8924-7705,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459729829005,602501933110,K001-0008
+ORD250708-0014,2025-7-8,10:44:21,고경욱,010-8924-7705,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,459729829005,602501933110,602501933110
+ORD250708-0013,2025-7-8,10:47:57,조영원,0503-7216-1045,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459729828994,602503220130,K001-0008
+ORD250708-0013,2025-7-8,10:47:57,조영원,0503-7216-1045,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459729828994,602503220130,L004-0023
+ORD250708-0013,2025-7-8,10:47:57,조영원,0503-7216-1045,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459729828994,602503220130,8809595040635
+ORD250708-0013,2025-7-8,10:47:57,조영원,0503-7216-1045,L001-0030,뷰티루틴 쇼핑백,1,0,0,459729828994,602503220130,L001-0030
+ORD250708-0013,2025-7-8,10:47:57,조영원,0503-7216-1045,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459729828994,602503220130,602503220130
+ORD250708-0013,2025-7-8,10:47:57,조영원,0503-7216-1045,P001-0152,원형케이스 퍼플,1,0,0,459729828994,602503220130,8809595040512
+ORD250708-0013,2025-7-8,10:47:57,조영원,0503-7216-1045,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459729828994,602503220130,8809595040628
+ORD250708-0012,2025-7-8,10:51:38,신난경,0503-7213-0111,P001-0152,원형케이스 퍼플,1,0,0,459729828983,602503054130,8809595040512
+ORD250708-0012,2025-7-8,10:51:38,신난경,0503-7213-0111,L001-0030,뷰티루틴 쇼핑백,1,0,0,459729828983,602503054130,L001-0030
+ORD250708-0012,2025-7-8,10:51:38,신난경,0503-7213-0111,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459729828983,602503054130,L004-0023
+ORD250708-0012,2025-7-8,10:51:38,신난경,0503-7213-0111,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459729828983,602503054130,602503054130
+ORD250708-0012,2025-7-8,10:51:38,신난경,0503-7213-0111,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459729828983,602503054130,8809595040635
+ORD250708-0012,2025-7-8,10:51:38,신난경,0503-7213-0111,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459729828983,602503054130,8809595040628
+ORD250708-0012,2025-7-8,10:51:38,신난경,0503-7213-0111,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459729828983,602503054130,K001-0008
+ORD250708-0011,2025-7-8,10:54:31,윤여은,010-3881-4126,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459729828972,602503049130,8809595040635
+ORD250708-0011,2025-7-8,10:54:31,윤여은,010-3881-4126,L001-0030,뷰티루틴 쇼핑백,1,0,0,459729828972,602503049130,L001-0030
+ORD250708-0011,2025-7-8,10:54:31,윤여은,010-3881-4126,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459729828972,602503049130,K001-0008
+ORD250708-0011,2025-7-8,10:54:31,윤여은,010-3881-4126,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459729828972,602503049130,L004-0023
+ORD250708-0011,2025-7-8,10:54:31,윤여은,010-3881-4126,P001-0152,원형케이스 퍼플,1,0,0,459729828972,602503049130,8809595040512
+ORD250708-0011,2025-7-8,10:54:31,윤여은,010-3881-4126,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459729828972,602503049130,602503049130
+ORD250708-0011,2025-7-8,10:54:31,윤여은,010-3881-4126,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459729828972,602503049130,8809595040628
+ORD250708-0010,2025-7-8,10:58:59,최은영,010-4575-9699,P001-0152,원형케이스 퍼플,1,0,0,459729828961,602503047130,8809595040512
+ORD250708-0010,2025-7-8,10:58:59,최은영,010-4575-9699,L001-0030,뷰티루틴 쇼핑백,1,0,0,459729828961,602503047130,L001-0030
+ORD250708-0010,2025-7-8,10:58:59,최은영,010-4575-9699,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459729828961,602503047130,8809595040635
+ORD250708-0010,2025-7-8,10:58:59,최은영,010-4575-9699,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459729828961,602503047130,8809595040628
+ORD250708-0010,2025-7-8,10:58:59,최은영,010-4575-9699,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459729828961,602503047130,K001-0008
+ORD250708-0010,2025-7-8,10:58:59,최은영,010-4575-9699,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459729828961,602503047130,L004-0023
+ORD250708-0010,2025-7-8,10:58:59,최은영,010-4575-9699,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459729828961,602503047130,602503047130
+ORD250708-0007,2025-7-8,11:6:3,마지영,01055246077,L004-0034,Elixir Aqua Hyal Toner(엘릭시르 하이알 토너) 130ML,1,0,0,459729828935,502506045100,8809527486548
+ORD250708-0007,2025-7-8,11:6:3,마지영,01055246077,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,459729828935,502506045100,JGIFT-0010
+ORD250708-0007,2025-7-8,11:6:3,마지영,01055246077,L004-0036,Elixir Aqua Hyal Cream(엘릭시르 하이알 크림) 50ML,1,0,0,459729828935,502506045100,8809527486562
+ORD250708-0007,2025-7-8,11:6:3,마지영,01055246077,L004-0035,Elixir Aqua Hyal Ampoule(엘릭시르 하이알 앰플) 35ML,1,0,0,459729828935,502506045100,8809527486555
+ORD250708-0007,2025-7-8,11:6:3,마지영,01055246077,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,459729828935,502506045100,8809595040017
+ORD250708-0007,2025-7-8,11:6:3,마지영,01055246077,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,459729828935,502506045100,L004-0023
+ORD250708-0007,2025-7-8,11:6:3,마지영,01055246077,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,1,0,0,459729828935,502506045100,8809750465013
+ORD250708-0007,2025-7-8,11:6:3,마지영,01055246077,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459729828935,502506045100,K001-0008
+ORD250708-0007,2025-7-8,11:6:3,마지영,01055246077,L001-0030,뷰티루틴 쇼핑백,1,0,0,459729828935,502506045100,L001-0030
+ORD250708-0007,2025-7-8,11:6:3,마지영,01055246077,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,459729828935,502506045100,502506045100
+ORD250708-0003,2025-7-8,11:12:53,송수현,0502-6347-7794,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,459729828891,602501173110,602501173110
+ORD250708-0003,2025-7-8,11:12:53,송수현,0502-6347-7794,JGIFT-0025,EMS Belt_Peach,1,0,0,459729828891,602501173110,JGIFT-0025
+ORD250708-0003,2025-7-8,11:12:53,송수현,0502-6347-7794,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,459729828891,602501173110,L004-0023
+ORD250708-0003,2025-7-8,11:12:53,송수현,0502-6347-7794,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459729828891,602501173110,8809595040628
+ORD250708-0003,2025-7-8,11:12:53,송수현,0502-6347-7794,L001-0030,뷰티루틴 쇼핑백,1,0,0,459729828891,602501173110,L001-0030
+ORD250708-0003,2025-7-8,11:12:53,송수현,0502-6347-7794,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459729828891,602501173110,8809595040635
+ORD250708-0003,2025-7-8,11:12:53,송수현,0502-6347-7794,K001-0008,제품 6Set 포장박스 (6호),1,0,0,459729828891,602501173110,K001-0008
+ORD250708-0003,2025-7-8,11:12:53,송수현,0502-6347-7794,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,459729828891,602501173110,L001-0032
+ORD250708-0003,2025-7-8,11:12:53,송수현,0502-6347-7794,P001-0156,우디케이스,1,0,0,459729828891,602501173110,8809595040598
+ORD250707-0967,2025-7-8,15:15:39,박효연,010-5436-0242,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,692468055214,102502074100,8809595040635
+ORD250707-0967,2025-7-8,15:15:39,박효연,010-5436-0242,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692468055214,102502074100,K001-0008
+ORD250707-0967,2025-7-8,15:15:39,박효연,010-5436-0242,L001-0030,뷰티루틴 쇼핑백,1,0,0,692468055214,102502074100,L001-0030
+ORD250707-0967,2025-7-8,15:15:39,박효연,010-5436-0242,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,692468055214,102502074100,8809595040628
+ORD250707-0967,2025-7-8,15:15:39,박효연,010-5436-0242,L004-0029,Elixir Aqua Hyal Mask(엘릭시르 하이알 마스크팩) 22ML 10EA,2,0,0,692468055214,102502074100,8809750465013
+ORD250707-0967,2025-7-8,15:15:39,박효연,010-5436-0242,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),8,0,0,692468055214,102502074100,L004-0023
+ORD250707-0967,2025-7-8,15:15:39,박효연,010-5436-0242,P001-0156,우디케이스,1,0,0,692468055214,102502074100,8809595040598
+ORD250707-0967,2025-7-8,15:15:39,박효연,010-5436-0242,P001-DS0036A,DUALSONIC Pro 1Set 완제품 (KR)[Face 12,000샷, Eye 120,000 샷],1,12000,120000,692468055214,102502074100,102502074100
+ORD250708-0046,2025-7-8,15:17:42,김유진,010-5376-8175,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692489761934,ORD250708-0046,L001-0032
+ORD250708-0046,2025-7-8,15:17:42,김유진,010-5376-8175,JGIFT-0024,EMS Belt_Mint,1,0,0,692489761934,ORD250708-0046,JGIFT-0024
+ORD250708-0046,2025-7-8,15:17:42,김유진,010-5376-8175,K001-0008,제품 6Set 포장박스 (6호),1,0,0,692489761934,ORD250708-0046,K001-0008
+ORD250708-0023,2025-7-8,16:34:1,박영경,010-3185-3813,P001-0101,Micro B-Type 충전기 Assy,1,0,0,692492866434,ORD250708-0023,8809595040246
+ORD250708-0023,2025-7-8,16:34:1,박영경,010-3185-3813,K001-0010,젤 3개 포장박스 (1호),1,0,0,692492866434,ORD250708-0023,K001-0010
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-9.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-9.csv
new file mode 100644
index 0000000..0267f48
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-7-9.csv
@@ -0,0 +1,15 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250709-0003,2025-7-9,10:24:13,쿠팡 인천26,070-7824-4666,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,692470824064,302506046150,8809595040017
+ORD250709-0003,2025-7-9,10:24:13,쿠팡 인천26,070-7824-4666,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,692470824064,302506046150,L004-0023
+ORD250709-0003,2025-7-9,10:24:13,쿠팡 인천26,070-7824-4666,P001-MM001K,[MAXIMUM_V2_YELLOW] FULL PACK (KR),1,0,0,692470824064,302506046150,302506046150
+ORD250709-0003,2025-7-9,10:24:13,쿠팡 인천26,070-7824-4666,K001-0020,제품+사은품, 젤 10개 박스 (4호),1,0,0,692470824064,302506046150,K001-0020
+ORD250709-0001,2025-7-9,10:31:56,쿠팡 인천14_1,070-7824-4674,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692470824042,502506046100,502506046100
+ORD250709-0001,2025-7-9,10:31:56,쿠팡 인천14_1,070-7824-4674,K001-0041,단품 1SET 박스 (3호),1,0,0,692470824042,502506046100,K001-0041
+ORD250709-0001,2025-7-9,10:31:56,쿠팡 인천14_1,070-7824-4674,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,692470824042,502506046100,L004-0023
+ORD250709-0002,2025-7-9,10:35:6,쿠팡 인천14_2,070-7824-4674,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692470824053,502506033100,502506033100
+ORD250709-0002,2025-7-9,10:35:6,쿠팡 인천14_2,070-7824-4674,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,692470824053,502506033100,L004-0023
+ORD250709-0002,2025-7-9,10:35:6,쿠팡 인천14_2,070-7824-4674,K001-0041,단품 1SET 박스 (3호),1,0,0,692470824053,502506033100,K001-0041
+ORD250709-0043,2025-7-9,11:50:35,신세계 면세점,032-744-0866,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,L001-0030,ORD250709-0043,8809595040017
+ORD250709-0044,2025-7-9,11:53:47,신세계 면세점,032-744-0866,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,L001-0030,ORD250709-0044,8809595040017
+ORD250709-0030,2025-7-9,13:12:16,김혜란 매니저,010-7997-8384,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),10,0,0,459739708514,312505015180,312505701180/312505409180/312505410180/312505582180/312505280180/312505015180/312505513180/312505371180/312505210180/312505365180
+ORD250709-0029,2025-7-9,13:17:10,김혜란 매니저,010-7997-8384,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),10,0,0,459739708503,312505008180,312505008180/312505404180/312505372180/312505698180/312505822180/312505885180/312505828180/312505298180/312505814180/312505036180
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-8-1.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-8-1.csv
new file mode 100644
index 0000000..bb26e93
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-8-1.csv
@@ -0,0 +1,123 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250801-0023,2025-8-1,10:30:10,함동희,0504-2119-2919,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,4599177988,ORD250801-0023,L004-0023
+ORD250801-0023,2025-8-1,10:30:10,함동희,0504-2119-2919,K001-0022,택배박스_2호_270*180*170,1,0,0,4599177988,ORD250801-0023,K001-0022
+ORD250801-0024,2025-8-1,10:32:25,김청하,01040120049,L001-0030,뷰티루틴 쇼핑백,1,0,0,459917798863,312507341101,L001-0030
+ORD250801-0024,2025-8-1,10:32:25,김청하,01040120049,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,459917798863,312507341101,312507341101
+ORD250801-0024,2025-8-1,10:32:25,김청하,01040120049,K001-0041,택배박스_3호_305*255*185,1,0,0,459917798863,312507341101,K001-0041
+ORD250801-0025,2025-8-1,10:35:14,서보경,01041466953,L001-0030,뷰티루틴 쇼핑백,1,0,0,459917798874,ORD250801-0025,L001-0030
+ORD250801-0025,2025-8-1,10:35:14,서보경,01041466953,K001-0041,택배박스_3호_305*255*185,1,0,0,459917798874,ORD250801-0025,K001-0041
+ORD250801-0025,2025-8-1,10:35:14,서보경,01041466953,PF001-001C,[BR] DAY SHOT (14 BOTTLES),1,0,0,459917798874,ORD250801-0025,8809595040642
+ORD250801-0018,2025-8-1,10:41:15,김태식,010-2536-7936,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,459917798804,602503923130,L004-0023
+ORD250801-0018,2025-8-1,10:41:15,김태식,010-2536-7936,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,459917798804,602503923130,602503923130
+ORD250801-0018,2025-8-1,10:41:15,김태식,010-2536-7936,L001-0030,뷰티루틴 쇼핑백,1,0,0,459917798804,602503923130,L001-0030
+ORD250801-0018,2025-8-1,10:41:15,김태식,010-2536-7936,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459917798804,602503923130,8809595040628
+ORD250801-0018,2025-8-1,10:41:15,김태식,010-2536-7936,P001-0152,원형케이스 퍼플,1,0,0,459917798804,602503923130,8809595040512
+ORD250801-0018,2025-8-1,10:41:15,김태식,010-2536-7936,K001-0008,택배박스_6호_410x265x360,1,0,0,459917798804,602503923130,K001-0008
+ORD250801-0019,2025-8-1,10:47:24,해외주문,07041187330,K001-0008,택배박스_6호_410x265x360,1,0,0,459917798815,312505656180,K001-0008
+ORD250801-0019,2025-8-1,10:47:24,해외주문,07041187330,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,459917798815,312505656180,L004-0023
+ORD250801-0019,2025-8-1,10:47:24,해외주문,07041187330,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,459917798815,312505656180,8809595040017
+ORD250801-0019,2025-8-1,10:47:24,해외주문,07041187330,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),1,0,0,459917798815,312505656180,312505656180
+ORD250801-0019,2025-8-1,10:47:24,해외주문,07041187330,L001-0030,뷰티루틴 쇼핑백,1,0,0,459917798815,312505656180,L001-0030
+ORD250801-0019,2025-8-1,10:47:24,해외주문,07041187330,P001-0156,우디케이스,1,0,0,459917798815,312505656180,8809595040598
+ORD250801-0039,2025-8-1,11:29:11,서수정,010-3570-1108,K001-0133,C/T 택배박스(560*400*420),1,0,0,459918208772,ORD250801-0039,K001-0133
+ORD250801-0039,2025-8-1,11:29:11,서수정,010-3570-1108,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),12,0,0,459918208772,ORD250801-0039,8809595040628
+ORD250801-0039,2025-8-1,11:29:11,서수정,010-3570-1108,L001-0030,뷰티루틴 쇼핑백,6,0,0,459918208772,ORD250801-0039,L001-0030
+ORD250801-0039,2025-8-1,11:29:11,서수정,010-3570-1108,JGIFT-0024,EMS Belt_Mint,1,0,0,459918208772,ORD250801-0039,8809595040758
+ORD250801-0040,2025-8-1,11:34:20,정다윤,010-5154-8458,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),12,0,0,459918208783,ORD250801-0040,8809595040628
+ORD250801-0040,2025-8-1,11:34:20,정다윤,010-5154-8458,K001-0133,C/T 택배박스(560*400*420),1,0,0,459918208783,ORD250801-0040,K001-0133
+ORD250801-0040,2025-8-1,11:34:20,정다윤,010-5154-8458,L001-0030,뷰티루틴 쇼핑백,6,0,0,459918208783,ORD250801-0040,L001-0030
+ORD250801-0040,2025-8-1,11:34:20,정다윤,010-5154-8458,JGIFT-0024,EMS Belt_Mint,1,0,0,459918208783,ORD250801-0040,8809595040758
+ORD250801-0041,2025-8-1,11:41:37,김효숙,010-3001-3798,K001-0133,C/T 택배박스(560*400*420),1,0,0,459918208794,ORD250801-0041,K001-0133
+ORD250801-0041,2025-8-1,11:41:37,김효숙,010-3001-3798,JGIFT-0024,EMS Belt_Mint,1,0,0,459918208794,ORD250801-0041,8809595040758
+ORD250801-0041,2025-8-1,11:41:37,김효숙,010-3001-3798,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),12,0,0,459918208794,ORD250801-0041,8809595040628
+ORD250801-0041,2025-8-1,11:41:37,김효숙,010-3001-3798,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),6,0,0,459918208794,ORD250801-0041,8809595040635
+ORD250801-0041,2025-8-1,11:41:37,김효숙,010-3001-3798,L001-0030,뷰티루틴 쇼핑백,9,0,0,459918208794,ORD250801-0041,L001-0030
+ORD250801-0050,2025-8-1,11:45:39,이영민,010-2591-3267,L001-0030,뷰티루틴 쇼핑백,1,0,0,459918208816,ORD250801-0050,L001-0030
+ORD250801-0050,2025-8-1,11:45:39,이영민,010-2591-3267,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,459918208816,ORD250801-0050,8809595040635
+ORD250801-0050,2025-8-1,11:45:39,이영민,010-2591-3267,K001-0041,택배박스_3호_305*255*185,1,0,0,459918208816,ORD250801-0050,K001-0041
+ORD250801-0042,2025-8-1,11:53:25,김보혜,010-2358-3239,JGIFT-0024,EMS Belt_Mint,2,0,0,459918208805,ORD250801-0042,8809595040758
+ORD250801-0042,2025-8-1,11:53:25,김보혜,010-2358-3239,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),12,0,0,459918208805,ORD250801-0042,8809595040628
+ORD250801-0042,2025-8-1,11:53:25,김보혜,010-2358-3239,K001-0133,C/T 택배박스(560*400*420),1,0,0,459918208805,ORD250801-0042,K001-0133
+ORD250801-0042,2025-8-1,11:53:25,김보혜,010-2358-3239,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),12,0,0,459918208805,ORD250801-0042,8809595040635
+ORD250801-0042,2025-8-1,11:53:25,김보혜,010-2358-3239,L001-0030,뷰티루틴 쇼핑백,12,0,0,459918208805,ORD250801-0042,L001-0030
+ORD250801-0051,2025-8-1,11:56:47,박경난,010-5651-0719,JGIFT-0024,EMS Belt_Mint,1,0,0,459918208820,ORD250801-0051,8809595040758
+ORD250801-0051,2025-8-1,11:56:47,박경난,010-5651-0719,L001-0030,뷰티루틴 쇼핑백,6,0,0,459918208820,ORD250801-0051,L001-0030
+ORD250801-0051,2025-8-1,11:56:47,박경난,010-5651-0719,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),12,0,0,459918208820,ORD250801-0051,8809595040635
+ORD250801-0051,2025-8-1,11:56:47,박경난,010-5651-0719,K001-0133,C/T 택배박스(560*400*420),1,0,0,459918208820,ORD250801-0051,K001-0133
+ORD250801-0052,2025-8-1,11:59:46,서일환,010-3700-1134,L001-0030,뷰티루틴 쇼핑백,6,0,0,459918208831,ORD250801-0052,L001-0030
+ORD250801-0052,2025-8-1,11:59:46,서일환,010-3700-1134,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),12,0,0,459918208831,ORD250801-0052,8809595040635
+ORD250801-0052,2025-8-1,11:59:46,서일환,010-3700-1134,K001-0133,C/T 택배박스(560*400*420),1,0,0,459918208831,ORD250801-0052,K001-0133
+ORD250801-0052,2025-8-1,11:59:46,서일환,010-3700-1134,JGIFT-0024,EMS Belt_Mint,1,0,0,459918208831,ORD250801-0052,8809595040758
+ORD250801-0053,2025-8-1,12:54:4,정다윤,010-5154-8458,K001-0133,C/T 택배박스(560*400*420),1,0,0,459918208842,ORD250801-0053,K001-0133
+ORD250801-0053,2025-8-1,12:54:4,정다윤,010-5154-8458,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),12,0,0,459918208842,ORD250801-0053,8809595040635
+ORD250801-0053,2025-8-1,12:54:4,정다윤,010-5154-8458,JGIFT-0024,EMS Belt_Mint,1,0,0,459918208842,ORD250801-0053,8809595040758
+ORD250801-0053,2025-8-1,12:54:4,정다윤,010-5154-8458,L001-0030,뷰티루틴 쇼핑백,6,0,0,459918208842,ORD250801-0053,L001-0030
+ORD250801-0049,2025-8-1,12:57:5,박예본,0502-5234-6798,L001-0030,뷰티루틴 쇼핑백,1,0,0,459918246244,ORD250801-0049,L001-0030
+ORD250801-0049,2025-8-1,12:57:5,박예본,0502-5234-6798,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459918246244,ORD250801-0049,8809595040635
+ORD250801-0049,2025-8-1,12:57:5,박예본,0502-5234-6798,K001-0022,택배박스_2호_270*180*170,1,0,0,459918246244,ORD250801-0049,K001-0022
+ORD250801-0063,2025-8-1,15:7:43,이*연,050716133106,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692897478360,ORD250801-0063,L001-0032
+ORD250801-0063,2025-8-1,15:7:43,이*연,050716133106,JGIFT-0026,EMS Belt_Purple,1,0,0,692897478360,ORD250801-0063,8809595040741
+ORD250801-0063,2025-8-1,15:7:43,이*연,050716133106,K001-0008,택배박스_6호_410x265x360,1,0,0,692897478360,ORD250801-0063,K001-0008
+ORD250801-0064,2025-8-1,15:10:52,이민선,0504-2103-0819,L001-0030,뷰티루틴 쇼핑백,1,0,0,692897478371,502507380100,L001-0030
+ORD250801-0064,2025-8-1,15:10:52,이민선,0504-2103-0819,K001-0007,택배박스_5호_400*250*300,1,0,0,692897478371,502507380100,K001-0007
+ORD250801-0064,2025-8-1,15:10:52,이민선,0504-2103-0819,PF001-001C,[BR] DAY SHOT (14 BOTTLES),1,0,0,692897478371,502507380100,8809595040642
+ORD250801-0064,2025-8-1,15:10:52,이민선,0504-2103-0819,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692897478371,502507380100,502507380100
+ORD250801-0064,2025-8-1,15:10:52,이민선,0504-2103-0819,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,692897478371,502507380100,8809595040017
+ORD250801-0065,2025-8-1,15:15:29,최윤주,0504-2347-2681,P001-0154,가죽케이스 피치,1,0,0,692897478382,502507328100,8809595040505
+ORD250801-0065,2025-8-1,15:15:29,최윤주,0504-2347-2681,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692897478382,502507328100,8809595040017
+ORD250801-0065,2025-8-1,15:15:29,최윤주,0504-2347-2681,PF001-001C,[BR] DAY SHOT (14 BOTTLES),1,0,0,692897478382,502507328100,8809595040642
+ORD250801-0065,2025-8-1,15:15:29,최윤주,0504-2347-2681,L001-0030,뷰티루틴 쇼핑백,2,0,0,692897478382,502507328100,L001-0030
+ORD250801-0065,2025-8-1,15:15:29,최윤주,0504-2347-2681,K001-0008,택배박스_6호_410x265x360,1,0,0,692897478382,502507328100,K001-0008
+ORD250801-0065,2025-8-1,15:15:29,최윤주,0504-2347-2681,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692897478382,502507328100,502507328100
+ORD250801-0065,2025-8-1,15:15:29,최윤주,0504-2347-2681,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),1,0,0,692897478382,502507328100,602503715120
+ORD250801-0065,2025-8-1,15:15:29,최윤주,0504-2347-2681,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,692897478382,502507328100,8809595040635
+ORD250801-0066,2025-8-1,15:19:45,석지혜,0504-2107-9523,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,692897478393,602503219130,8809595040017
+ORD250801-0066,2025-8-1,15:19:45,석지혜,0504-2107-9523,L001-0030,뷰티루틴 쇼핑백,1,0,0,692897478393,602503219130,L001-0030
+ORD250801-0066,2025-8-1,15:19:45,석지혜,0504-2107-9523,K001-0007,택배박스_5호_400*250*300,1,0,0,692897478393,602503219130,K001-0007
+ORD250801-0066,2025-8-1,15:19:45,석지혜,0504-2107-9523,PF001-001C,[BR] DAY SHOT (14 BOTTLES),1,0,0,692897478393,602503219130,8809595040642
+ORD250801-0066,2025-8-1,15:19:45,석지혜,0504-2107-9523,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,692897478393,602503219130,602503219130
+ORD250801-0060,2025-8-1,16:7:34,K2508015419660,080-3832-0021,K001-0022,택배박스_2호_270*180*170,1,0,0,459919491732,ORD250801-0060,K001-0022
+ORD250801-0060,2025-8-1,16:7:34,K2508015419660,080-3832-0021,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459919491732,ORD250801-0060,8809595040628
+ORD250801-0060,2025-8-1,16:7:34,K2508015419660,080-3832-0021,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459919491732,ORD250801-0060,8809595040635
+ORD250801-0059,2025-8-1,16:9:32,K2508015419659,080-9608-9610,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,459919491721,ORD250801-0059,8809595040628
+ORD250801-0059,2025-8-1,16:9:32,K2508015419659,080-9608-9610,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,459919491721,ORD250801-0059,8809595040635
+ORD250801-0059,2025-8-1,16:9:32,K2508015419659,080-9608-9610,K001-0022,택배박스_2호_270*180*170,1,0,0,459919491721,ORD250801-0059,K001-0022
+ORD250801-0070,2025-8-1,16:12:42,최*광,050716133748,JGIFT-0024,EMS Belt_Mint,1,0,0,692899338525,ORD250801-0070,8809595040758
+ORD250801-0070,2025-8-1,16:12:42,최*광,050716133748,K001-0008,택배박스_6호_410x265x360,1,0,0,692899338525,ORD250801-0070,K001-0008
+ORD250801-0070,2025-8-1,16:12:42,최*광,050716133748,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,692899338525,ORD250801-0070,L001-0032
+ORD250801-0071,2025-8-1,16:14:43,김경현,010-4628-3526,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,692899338536,ORD250801-0071,L004-0023
+ORD250801-0071,2025-8-1,16:14:43,김경현,010-4628-3526,K001-0010,택배박스_1호_250*150*100,1,0,0,692899338536,ORD250801-0071,K001-0010
+ORD250801-0072,2025-8-1,16:18:6,조민성,0502-2826-3393,K001-0007,택배박스_5호_400*250*300,1,0,0,692899758514,502507181100,K001-0007
+ORD250801-0072,2025-8-1,16:18:6,조민성,0502-2826-3393,L001-0030,뷰티루틴 쇼핑백,1,0,0,692899758514,502507181100,L001-0030
+ORD250801-0072,2025-8-1,16:18:6,조민성,0502-2826-3393,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692899758514,502507181100,502507181100
+ORD250801-0072,2025-8-1,16:18:6,조민성,0502-2826-3393,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692899758514,502507181100,8809595040017
+ORD250801-0072,2025-8-1,16:18:6,조민성,0502-2826-3393,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692899758514,502507181100,JGIFT-0010
+ORD250801-0073,2025-8-1,16:22:6,김주옥,010-3005-0040,K001-0008,택배박스_6호_410x265x360,1,0,0,692899758525,502507003100,K001-0008
+ORD250801-0073,2025-8-1,16:22:6,김주옥,010-3005-0040,P001-0152,원형케이스 퍼플,1,0,0,692899758525,502507003100,8809595040512
+ORD250801-0073,2025-8-1,16:22:6,김주옥,010-3005-0040,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,692899758525,502507003100,602503590111
+ORD250801-0073,2025-8-1,16:22:6,김주옥,010-3005-0040,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,692899758525,502507003100,502507003100
+ORD250801-0073,2025-8-1,16:22:6,김주옥,010-3005-0040,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,692899758525,502507003100,8809595040017
+ORD250801-0073,2025-8-1,16:22:6,김주옥,010-3005-0040,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692899758525,502507003100,JGIFT-0010
+ORD250801-0073,2025-8-1,16:22:6,김주옥,010-3005-0040,L001-0030,뷰티루틴 쇼핑백,2,0,0,692899758525,502507003100,L001-0030
+ORD250801-0074,2025-8-1,16:26:8,한경아,010-4659-5914,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,692899758536,312506692100,8809595040017
+ORD250801-0074,2025-8-1,16:26:8,한경아,010-4659-5914,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692899758536,312506692100,JGIFT-0010
+ORD250801-0074,2025-8-1,16:26:8,한경아,010-4659-5914,K001-0007,택배박스_5호_400*250*300,1,0,0,692899758536,312506692100,K001-0007
+ORD250801-0074,2025-8-1,16:26:8,한경아,010-4659-5914,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,692899758536,312506692100,312506692100
+ORD250801-0074,2025-8-1,16:26:8,한경아,010-4659-5914,L001-0030,뷰티루틴 쇼핑백,1,0,0,692899758536,312506692100,L001-0030
+ORD250801-0058,2025-8-1,16:28:26,K2508015419658,090-7168-0227,K001-0007,택배박스_5호_400*250*300,1,0,0,K2508015419658,ORD250801-0058,K001-0007
+ORD250801-0058,2025-8-1,16:28:26,K2508015419658,090-7168-0227,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),3,0,0,K2508015419658,ORD250801-0058,8809595040635
+ORD250801-0058,2025-8-1,16:28:26,K2508015419658,090-7168-0227,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,K2508015419658,ORD250801-0058,8809595040628
+ORD250801-0057,2025-8-1,16:32:9,K2508015419657,090-6521-5373,L004-0033,Elixir Lifting Collagen Cream(엘릭시르 콜라겐 크림) 50ML,1,0,0,459919491706,ORD250801-0057,8809527486593
+ORD250801-0057,2025-8-1,16:32:9,K2508015419657,090-6521-5373,K001-0010,택배박스_1호_250*150*100,1,0,0,459919491706,ORD250801-0057,K001-0010
+ORD250801-0057,2025-8-1,16:32:9,K2508015419657,090-6521-5373,L004-0032,Elixir Lifting Collagen Ampoule(엘릭시르 콜라겐 앰플) 35ML,1,0,0,459919491706,ORD250801-0057,8809527486586
+ORD250801-0069,2025-8-1,16:35:41,김인선,010-2054-8807,P001-0152,원형케이스 퍼플,1,0,0,692899338514,602503071131,8809595040512
+ORD250801-0069,2025-8-1,16:35:41,김인선,010-2054-8807,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,692899338514,602503071131,8809595040628
+ORD250801-0069,2025-8-1,16:35:41,김인선,010-2054-8807,K001-0008,택배박스_6호_410x265x360,1,0,0,692899338514,602503071131,K001-0008
+ORD250801-0069,2025-8-1,16:35:41,김인선,010-2054-8807,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,692899338514,602503071131,602503071131
+ORD250801-0069,2025-8-1,16:35:41,김인선,010-2054-8807,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,692899338514,602503071131,L004-0023
+ORD250801-0069,2025-8-1,16:35:41,김인선,010-2054-8807,L001-0030,뷰티루틴 쇼핑백,1,0,0,692899338514,602503071131,L001-0030
+ORD250801-0067,2025-8-1,16:43:11,김율리아 차장님 요청건,,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),1,0,0,L004-0020,602507969130,8809595040635
+ORD250801-0067,2025-8-1,16:43:11,김율리아 차장님 요청건,,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,L004-0020,602507969130,8809595040017
+ORD250801-0067,2025-8-1,16:43:11,김율리아 차장님 요청건,,P001-0152,원형케이스 퍼플,1,0,0,L004-0020,602507969130,8809595040512
+ORD250801-0067,2025-8-1,16:43:11,김율리아 차장님 요청건,,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,L004-0020,602507969130,8809595040628
+ORD250801-0067,2025-8-1,16:43:11,김율리아 차장님 요청건,,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,L004-0020,602507969130,602507969130
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-8-4.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-8-4.csv
new file mode 100644
index 0000000..219219d
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-8-4.csv
@@ -0,0 +1,228 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250804-0019,2025-8-4,10:17:15,장세희사원,.,PF001-002,[BR] GUMMY JELLY (10 BAGS),1,0,0,8809595040376,ORD250804-0019,8809595040666
+ORD250804-0019,2025-8-4,10:17:15,장세희사원,.,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),5,0,0,8809595040376,ORD250804-0019,8809595040635
+ORD250804-0019,2025-8-4,10:17:15,장세희사원,.,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),4,0,0,8809595040376,ORD250804-0019,8809595040628
+ORD250804-0019,2025-8-4,10:17:15,장세희사원,.,PF001-003,[BR] STICK JELLY (14 BAGS),1,0,0,8809595040376,ORD250804-0019,8809595040659
+ORD250804-0014,2025-8-4,10:59:47,쿠팡 인천14,070-7824-4674,K001-0041,택배박스_3호_305*255*185,1,0,0,692899412353,602503723120,K001-0041
+ORD250804-0014,2025-8-4,10:59:47,쿠팡 인천14,070-7824-4674,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,692899412353,602503723120,L004-0023
+ORD250804-0014,2025-8-4,10:59:47,쿠팡 인천14,070-7824-4674,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),1,0,0,692899412353,602503723120,602503723120
+ORD250804-0015,2025-8-4,11:8:51,쿠팡 전라광주4_1,070-4735-8079,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,692899412364,ORD250804-0015,8809595040017
+ORD250804-0017,2025-8-4,11:13:4,쿠팡 전라광주4_3,070-4735-8079,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,692899412386,ORD250804-0017,8809595040017
+ORD250804-0007,2025-8-4,11:19:9,쿠팡 창원4_6,070-5167-2371,K001-0041,택배박스_3호_305*255*185,1,0,0,692881443283,602503849110,K001-0041
+ORD250804-0007,2025-8-4,11:19:9,쿠팡 창원4_6,070-5167-2371,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,692881443283,602503849110,602503849110
+ORD250804-0007,2025-8-4,11:19:9,쿠팡 창원4_6,070-5167-2371,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,692881443283,602503849110,L004-0023
+ORD250804-0097,2025-8-4,13:7:15,임지혜,0504-2139-4109,K001-0022,택배박스_2호_270*180*170,1,0,0,460010725882,ORD250804-0097,K001-0022
+ORD250804-0097,2025-8-4,13:7:15,임지혜,0504-2139-4109,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,460010725882,ORD250804-0097,L004-0023
+ORD250804-0098,2025-8-4,13:9:16,박은미,0504-2347-4265,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,460010725893,ORD250804-0098,L004-0023
+ORD250804-0098,2025-8-4,13:9:16,박은미,0504-2347-4265,K001-0022,택배박스_2호_270*180*170,1,0,0,460010725893,ORD250804-0098,K001-0022
+ORD250804-0099,2025-8-4,13:11:14,이정수,0504-2391-5364,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,460010725904,ORD250804-0099,L004-0023
+ORD250804-0099,2025-8-4,13:11:14,이정수,0504-2391-5364,K001-0022,택배박스_2호_270*180*170,1,0,0,460010725904,ORD250804-0099,K001-0022
+ORD250804-0100,2025-8-4,13:12:52,박상희,0504-1649-0141,K001-0022,택배박스_2호_270*180*170,1,0,0,460010725915,ORD250804-0100,K001-0022
+ORD250804-0100,2025-8-4,13:12:52,박상희,0504-1649-0141,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,460010725915,ORD250804-0100,L004-0023
+ORD250804-0101,2025-8-4,13:14:18,정정미,010-2044-7494,K001-0010,택배박스_1호_250*150*100,1,0,0,460010725926,ORD250804-0101,K001-0010
+ORD250804-0101,2025-8-4,13:14:18,정정미,010-2044-7494,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,460010725926,ORD250804-0101,L004-0023
+ORD250804-0102,2025-8-4,13:15:36,배선민,010-3087-3926,K001-0010,택배박스_1호_250*150*100,1,0,0,460010725930,ORD250804-0102,K001-0010
+ORD250804-0102,2025-8-4,13:15:36,배선민,010-3087-3926,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),2,0,0,460010725930,ORD250804-0102,L004-0023
+ORD250804-0103,2025-8-4,13:18:26,조승미,0504-2199-5408,JGIFT-0026,EMS Belt_Purple,1,0,0,460010725941,ORD250804-0103,8809595040741
+ORD250804-0103,2025-8-4,13:18:26,조승미,0504-2199-5408,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,460010725941,ORD250804-0103,L001-0032
+ORD250804-0103,2025-8-4,13:18:26,조승미,0504-2199-5408,K001-0008,택배박스_6호_410x265x360,1,0,0,460010725941,ORD250804-0103,K001-0008
+ORD250804-0104,2025-8-4,13:20:27,김수진,010-4563-3121,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,460010725952,ORD250804-0104,L001-0032
+ORD250804-0104,2025-8-4,13:20:27,김수진,010-4563-3121,K001-0008,택배박스_6호_410x265x360,1,0,0,460010725952,ORD250804-0104,K001-0008
+ORD250804-0104,2025-8-4,13:20:27,김수진,010-4563-3121,JGIFT-0026,EMS Belt_Purple,1,0,0,460010725952,ORD250804-0104,8809595040741
+ORD250804-0105,2025-8-4,13:22:25,이*정,0502-6310-2468,K001-0022,택배박스_2호_270*180*170,1,0,0,460010725963,ORD250804-0105,K001-0022
+ORD250804-0105,2025-8-4,13:22:25,이*정,0502-6310-2468,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,460010725963,ORD250804-0105,8809595040017
+ORD250804-0106,2025-8-4,13:23:33,배경*,0503-6366-2525,K001-0010,택배박스_1호_250*150*100,1,0,0,460010725974,ORD250804-0106,K001-0010
+ORD250804-0106,2025-8-4,13:23:33,배경*,0503-6366-2525,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,460010725974,ORD250804-0106,8809595040017
+ORD250804-0107,2025-8-4,13:24:53,이경*,0503-6354-6996,L004-0001,DUALSONIC Blooming Moisture Gel,2,0,0,460010725985,ORD250804-0107,8809595040017
+ORD250804-0107,2025-8-4,13:24:53,이경*,0503-6354-6996,K001-0010,택배박스_1호_250*150*100,1,0,0,460010725985,ORD250804-0107,K001-0010
+ORD250804-0108,2025-8-4,13:26:54,강은주,01089927167,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,460010725996,602503328130,602503328130
+ORD250804-0108,2025-8-4,13:26:54,강은주,01089927167,L001-0030,뷰티루틴 쇼핑백,1,0,0,460010725996,602503328130,L001-0030
+ORD250804-0108,2025-8-4,13:26:54,강은주,01089927167,K001-0041,택배박스_3호_305*255*185,1,0,0,460010725996,602503328130,K001-0041
+ORD250804-0109,2025-8-4,13:28:52,김세영,01064505833,K001-0041,택배박스_3호_305*255*185,1,0,0,460010726000,602503807110,K001-0041
+ORD250804-0109,2025-8-4,13:28:52,김세영,01064505833,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,460010726000,602503807110,602503807110
+ORD250804-0109,2025-8-4,13:28:52,김세영,01064505833,L001-0030,뷰티루틴 쇼핑백,1,0,0,460010726000,602503807110,L001-0030
+ORD250804-0110,2025-8-4,13:32:35,이*윤,0502-6350-9333,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,460010726011,602503183130,602503183130
+ORD250804-0110,2025-8-4,13:32:35,이*윤,0502-6350-9333,K001-0008,택배박스_6호_410x265x360,1,0,0,460010726011,602503183130,K001-0008
+ORD250804-0110,2025-8-4,13:32:35,이*윤,0502-6350-9333,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,460010726011,602503183130,8809595040017
+ORD250804-0110,2025-8-4,13:32:35,이*윤,0502-6350-9333,PF001-001C,[BR] DAY SHOT (14 BOTTLES),1,0,0,460010726011,602503183130,8809595040642
+ORD250804-0110,2025-8-4,13:32:35,이*윤,0502-6350-9333,L001-0030,뷰티루틴 쇼핑백,1,0,0,460010726011,602503183130,L001-0030
+ORD250804-0110,2025-8-4,13:32:35,이*윤,0502-6350-9333,P001-0152,원형케이스 퍼플,1,0,0,460010726011,602503183130,8809595040512
+ORD250804-0111,2025-8-4,13:34:37,박*연,0502-6231-7933,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,460010726022,ORD250804-0111,L004-0023
+ORD250804-0111,2025-8-4,13:34:37,박*연,0502-6231-7933,K001-0022,택배박스_2호_270*180*170,1,0,0,460010726022,ORD250804-0111,K001-0022
+ORD250804-0112,2025-8-4,13:36:56,황*연,0502-6330-3679,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,460010726033,ORD250804-0112,L004-0023
+ORD250804-0112,2025-8-4,13:36:56,황*연,0502-6330-3679,K001-0022,택배박스_2호_270*180*170,1,0,0,460010726033,ORD250804-0112,K001-0022
+ORD250804-0113,2025-8-4,13:39:5,길*숙,0502-6250-7110,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,460010726044,ORD250804-0113,L004-0023
+ORD250804-0113,2025-8-4,13:39:5,길*숙,0502-6250-7110,K001-0022,택배박스_2호_270*180*170,1,0,0,460010726044,ORD250804-0113,K001-0022
+ORD250804-0114,2025-8-4,13:46:22,임가을,010-8009-1585,L001-0030,뷰티루틴 쇼핑백,1,0,0,460010959251,312505393180,L001-0030
+ORD250804-0114,2025-8-4,13:46:22,임가을,010-8009-1585,K001-0020,택배박스_4호_400*250*220,1,0,0,460010959251,312505393180,K001-0020
+ORD250804-0114,2025-8-4,13:46:22,임가을,010-8009-1585,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),1,0,0,460010959251,312505393180,312505393180
+ORD250804-0114,2025-8-4,13:46:22,임가을,010-8009-1585,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,460010959251,312505393180,8809595040017
+ORD250804-0114,2025-8-4,13:46:22,임가을,010-8009-1585,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,460010959251,312505393180,JGIFT-0010
+ORD250804-0115,2025-8-4,13:51:33,반경진,010-8619-8426,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,460010959262,312506972100,8809595040017
+ORD250804-0115,2025-8-4,13:51:33,반경진,010-8619-8426,L001-0030,뷰티루틴 쇼핑백,1,0,0,460010959262,312506972100,L001-0030
+ORD250804-0115,2025-8-4,13:51:33,반경진,010-8619-8426,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,460010959262,312506972100,312506972100
+ORD250804-0115,2025-8-4,13:51:33,반경진,010-8619-8426,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,460010959262,312506972100,JGIFT-0010
+ORD250804-0115,2025-8-4,13:51:33,반경진,010-8619-8426,K001-0020,택배박스_4호_400*250*220,1,0,0,460010959262,312506972100,K001-0020
+ORD250804-0139,2025-8-4,13:56:26,김동율,0502-2748-0348,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,460010959505,502507355100,602503208130
+ORD250804-0139,2025-8-4,13:56:26,김동율,0502-2748-0348,P001-0152,원형케이스 퍼플,1,0,0,460010959505,502507355100,8809595040512
+ORD250804-0139,2025-8-4,13:56:26,김동율,0502-2748-0348,K001-0008,택배박스_6호_410x265x360,1,0,0,460010959505,502507355100,K001-0008
+ORD250804-0139,2025-8-4,13:56:26,김동율,0502-2748-0348,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,460010959505,502507355100,502507355100
+ORD250804-0139,2025-8-4,13:56:26,김동율,0502-2748-0348,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,460010959505,502507355100,JGIFT-0010
+ORD250804-0139,2025-8-4,13:56:26,김동율,0502-2748-0348,L001-0030,뷰티루틴 쇼핑백,2,0,0,460010959505,502507355100,L001-0030
+ORD250804-0139,2025-8-4,13:56:26,김동율,0502-2748-0348,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,460010959505,502507355100,8809595040017
+ORD250804-0150,2025-8-4,13:58:1,신경민,010-6485-2042,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,460010959612,ORD250804-0150,8809595040017
+ORD250804-0150,2025-8-4,13:58:1,신경민,010-6485-2042,K001-0010,택배박스_1호_250*150*100,1,0,0,460010959612,ORD250804-0150,K001-0010
+ORD250804-0149,2025-8-4,13:59:37,김영선,010-7110-0285,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,460010959601,ORD250804-0149,8809595040017
+ORD250804-0149,2025-8-4,13:59:37,김영선,010-7110-0285,K001-0010,택배박스_1호_250*150*100,1,0,0,460010959601,ORD250804-0149,K001-0010
+ORD250804-0148,2025-8-4,14:1:45,이미영,010-2561-8912,P001-DS007A,DUALSONIC Pro Face CARTRIDGE 1Set,1,6000,0,460010959590,112506184000,112506184000
+ORD250804-0148,2025-8-4,14:1:45,이미영,010-2561-8912,K001-0010,택배박스_1호_250*150*100,1,0,0,460010959590,112506184000,K001-0010
+ORD250804-0145,2025-8-4,14:6:15,고요한,010-9413-1029,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,460010959564,ORD250804-0145,8809595040017
+ORD250804-0145,2025-8-4,14:6:15,고요한,010-9413-1029,K001-0010,택배박스_1호_250*150*100,1,0,0,460010959564,ORD250804-0145,K001-0010
+ORD250804-0146,2025-8-4,14:7:33,김한나,010-9787-1055,K001-0010,택배박스_1호_250*150*100,1,0,0,460010959575,ORD250804-0146,K001-0010
+ORD250804-0146,2025-8-4,14:7:33,김한나,010-9787-1055,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,460010959575,ORD250804-0146,L004-0023
+ORD250804-0141,2025-8-4,14:14:40,박은지,010-5797-7990,P001-0152,원형케이스 퍼플,1,0,0,460010959520,502507207100,8809595040512
+ORD250804-0141,2025-8-4,14:14:40,박은지,010-5797-7990,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,460010959520,502507207100,502507207100
+ORD250804-0141,2025-8-4,14:14:40,박은지,010-5797-7990,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,460010959520,502507207100,8809595040017
+ORD250804-0141,2025-8-4,14:14:40,박은지,010-5797-7990,L001-0030,뷰티루틴 쇼핑백,2,0,0,460010959520,502507207100,L001-0030
+ORD250804-0141,2025-8-4,14:14:40,박은지,010-5797-7990,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,460010959520,502507207100,JGIFT-0010
+ORD250804-0141,2025-8-4,14:14:40,박은지,010-5797-7990,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,460010959520,502507207100,602503229130
+ORD250804-0141,2025-8-4,14:14:40,박은지,010-5797-7990,K001-0008,택배박스_6호_410x265x360,1,0,0,460010959520,502507207100,K001-0008
+ORD250804-0144,2025-8-4,14:24:10,강연우,010-3202-8883,L001-0030,뷰티루틴 쇼핑백,2,0,0,460010959553,402505027100,L001-0030
+ORD250804-0144,2025-8-4,14:24:10,강연우,010-3202-8883,P001-0156,우디케이스,1,0,0,460010959553,402505027100,8809595040598
+ORD250804-0144,2025-8-4,14:24:10,강연우,010-3202-8883,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,460010959553,402505027100,JGIFT-0010
+ORD250804-0144,2025-8-4,14:24:10,강연우,010-3202-8883,P001-DSA005,DUALSONIC Pro ALPHA 1Set[Face 20,000, EYE 200,000],1,20000,200000,460010959553,402505027100,402505027100
+ORD250804-0144,2025-8-4,14:24:10,강연우,010-3202-8883,K001-0008,택배박스_6호_410x265x360,1,0,0,460010959553,402505027100,K001-0008
+ORD250804-0144,2025-8-4,14:24:10,강연우,010-3202-8883,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,460010959553,402505027100,L004-0023
+ORD250804-0144,2025-8-4,14:24:10,강연우,010-3202-8883,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,460010959553,402505027100,502507236100
+ORD250804-0144,2025-8-4,14:24:10,강연우,010-3202-8883,L004-0001,DUALSONIC Blooming Moisture Gel,8,0,0,460010959553,402505027100,8809595040017
+ORD250804-0072,2025-8-4,14:28:10,서현,010-9307-2322,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,460010725635,ORD250804-0072,L001-0032
+ORD250804-0072,2025-8-4,14:28:10,서현,010-9307-2322,K001-0008,택배박스_6호_410x265x360,1,0,0,460010725635,ORD250804-0072,K001-0008
+ORD250804-0072,2025-8-4,14:28:10,서현,010-9307-2322,JGIFT-0025,EMS Belt_Peach,1,0,0,460010725635,ORD250804-0072,8809595040734
+ORD250804-0075,2025-8-4,14:30:36,김미경,0504-2437-8776,P001-0154,가죽케이스 피치,1,0,0,460010725661,312506363100,8809595040505
+ORD250804-0075,2025-8-4,14:30:36,김미경,0504-2437-8776,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,460010725661,312506363100,8809595040635
+ORD250804-0075,2025-8-4,14:30:36,김미경,0504-2437-8776,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,460010725661,312506363100,8809595040017
+ORD250804-0075,2025-8-4,14:30:36,김미경,0504-2437-8776,L001-0030,뷰티루틴 쇼핑백,1,0,0,460010725661,312506363100,L001-0030
+ORD250804-0075,2025-8-4,14:30:36,김미경,0504-2437-8776,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,460010725661,312506363100,312506363100
+ORD250804-0075,2025-8-4,14:30:36,김미경,0504-2437-8776,K001-0008,택배박스_6호_410x265x360,1,0,0,460010725661,312506363100,K001-0008
+ORD250804-0073,2025-8-4,14:33:42,홍지*,0502-2598-3507,K001-0010,택배박스_1호_250*150*100,1,0,0,460010725646,112506170000,K001-0010
+ORD250804-0073,2025-8-4,14:33:42,홍지*,0502-2598-3507,P001-DS007A,DUALSONIC Pro Face CARTRIDGE 1Set,1,6000,0,460010725646,112506170000,112506170000
+ORD250804-0153,2025-8-4,14:42:54,김연호 ,010-4005-6401,K001-0041,택배박스_3호_305*255*185,1,0,0,460010959645,312505779180,K001-0041
+ORD250804-0153,2025-8-4,14:42:54,김연호 ,010-4005-6401,P001-MM001G,[MAXIMUM_V2_PURPLE] FULL PACK (KR),1,0,0,460010959645,312505779180,312505779180
+ORD250804-0153,2025-8-4,14:42:54,김연호 ,010-4005-6401,L001-0030,뷰티루틴 쇼핑백,1,0,0,460010959645,312505779180,L001-0030
+ORD250804-0021,2025-8-4,14:48:24,조정연,0508-6834-8011,K001-0008,택배박스_6호_410x265x360,1,0,0,460010725123,ORD250804-0021,K001-0008
+ORD250804-0021,2025-8-4,14:48:24,조정연,0508-6834-8011,JGIFT-0024,EMS Belt_Mint,1,0,0,460010725123,ORD250804-0021,8809595040758
+ORD250804-0021,2025-8-4,14:48:24,조정연,0508-6834-8011,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,460010725123,ORD250804-0021,L001-0032
+ORD250804-0022,2025-8-4,14:55:54,조선영,0508-6825-0311,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,460010725134,ORD250804-0022,L001-0032
+ORD250804-0022,2025-8-4,14:55:54,조선영,0508-6825-0311,K001-0008,택배박스_6호_410x265x360,1,0,0,460010725134,ORD250804-0022,K001-0008
+ORD250804-0022,2025-8-4,14:55:54,조선영,0508-6825-0311,JGIFT-0024,EMS Belt_Mint,1,0,0,460010725134,ORD250804-0022,8809595040758
+ORD250804-0023,2025-8-4,15:13:30,임희라,010-8971-3402,K001-0008,택배박스_6호_410x265x360,1,0,0,460010725145,ORD250804-0023,K001-0008
+ORD250804-0023,2025-8-4,15:13:30,임희라,010-8971-3402,JGIFT-0026,EMS Belt_Purple,1,0,0,460010725145,ORD250804-0023,8809595040741
+ORD250804-0023,2025-8-4,15:13:30,임희라,010-8971-3402,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,460010725145,ORD250804-0023,L001-0032
+ORD250804-0024,2025-8-4,15:15:1,이선영,01066849388,JGIFT-0026,EMS Belt_Purple,1,0,0,460010725156,ORD250804-0024,8809595040741
+ORD250804-0024,2025-8-4,15:15:1,이선영,01066849388,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,460010725156,ORD250804-0024,L001-0032
+ORD250804-0024,2025-8-4,15:15:1,이선영,01066849388,K001-0008,택배박스_6호_410x265x360,1,0,0,460010725156,ORD250804-0024,K001-0008
+ORD250804-0025,2025-8-4,15:17:5,오인숙,010-3236-5802,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,460010725160,ORD250804-0025,8809595040017
+ORD250804-0025,2025-8-4,15:17:5,오인숙,010-3236-5802,K001-0010,택배박스_1호_250*150*100,1,0,0,460010725160,ORD250804-0025,K001-0010
+ORD250804-0026,2025-8-4,15:18:38,정상*,0503-6368-9378,K001-0010,택배박스_1호_250*150*100,1,0,0,460010725171,ORD250804-0026,K001-0010
+ORD250804-0026,2025-8-4,15:18:38,정상*,0503-6368-9378,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,460010725171,ORD250804-0026,8809595040017
+ORD250804-0143,2025-8-4,15:33:29,최성림,010-7349-9204,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,460010959542,502506004100,502506004100
+ORD250804-0143,2025-8-4,15:33:29,최성림,010-7349-9204,K001-0008,택배박스_6호_410x265x360,1,0,0,460010959542,502506004100,K001-0008
+ORD250804-0143,2025-8-4,15:33:29,최성림,010-7349-9204,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,460010959542,502506004100,8809595040017
+ORD250804-0143,2025-8-4,15:33:29,최성림,010-7349-9204,P001-0152,원형케이스 퍼플,1,0,0,460010959542,502506004100,8809595040512
+ORD250804-0143,2025-8-4,15:33:29,최성림,010-7349-9204,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,460010959542,502506004100,602503808110
+ORD250804-0143,2025-8-4,15:33:29,최성림,010-7349-9204,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,460010959542,502506004100,JGIFT-0010
+ORD250804-0143,2025-8-4,15:33:29,최성림,010-7349-9204,L001-0030,뷰티루틴 쇼핑백,2,0,0,460010959542,502506004100,L001-0030
+ORD250804-0043,2025-8-4,15:52:4,김지은,010-5514-9852,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,460010725344,602507975130,8809595040628
+ORD250804-0043,2025-8-4,15:52:4,김지은,010-5514-9852,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,460010725344,602507975130,L004-0023
+ORD250804-0043,2025-8-4,15:52:4,김지은,010-5514-9852,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,460010725344,602507975130,602507975130
+ORD250804-0043,2025-8-4,15:52:4,김지은,010-5514-9852,P001-0152,원형케이스 퍼플,1,0,0,460010725344,602507975130,8809595040512
+ORD250804-0043,2025-8-4,15:52:4,김지은,010-5514-9852,K001-0008,택배박스_6호_410x265x360,1,0,0,460010725344,602507975130,K001-0008
+ORD250804-0043,2025-8-4,15:52:4,김지은,010-5514-9852,L001-0030,뷰티루틴 쇼핑백,1,0,0,460010725344,602507975130,L001-0030
+ORD250804-0044,2025-8-4,15:57:50,장희선,0502-2747-8383,P001-0152,원형케이스 퍼플,1,0,0,460010725355,602503035130,8809595040512
+ORD250804-0044,2025-8-4,15:57:50,장희선,0502-2747-8383,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,460010725355,602503035130,L004-0023
+ORD250804-0044,2025-8-4,15:57:50,장희선,0502-2747-8383,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,460010725355,602503035130,8809595040628
+ORD250804-0044,2025-8-4,15:57:50,장희선,0502-2747-8383,K001-0008,택배박스_6호_410x265x360,1,0,0,460010725355,602503035130,K001-0008
+ORD250804-0044,2025-8-4,15:57:50,장희선,0502-2747-8383,L001-0030,뷰티루틴 쇼핑백,1,0,0,460010725355,602503035130,L001-0030
+ORD250804-0044,2025-8-4,15:57:50,장희선,0502-2747-8383,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,460010725355,602503035130,602503035130
+ORD250804-0142,2025-8-4,16:5:25,홍승범,0502-2827-8463,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,460010959531,502507196100,502507196100
+ORD250804-0142,2025-8-4,16:5:25,홍승범,0502-2827-8463,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,460010959531,502507196100,JGIFT-0010
+ORD250804-0142,2025-8-4,16:5:25,홍승범,0502-2827-8463,K001-0008,택배박스_6호_410x265x360,1,0,0,460010959531,502507196100,K001-0008
+ORD250804-0142,2025-8-4,16:5:25,홍승범,0502-2827-8463,P001-0152,원형케이스 퍼플,1,0,0,460010959531,502507196100,8809595040512
+ORD250804-0142,2025-8-4,16:5:25,홍승범,0502-2827-8463,L001-0030,뷰티루틴 쇼핑백,2,0,0,460010959531,502507196100,L001-0030
+ORD250804-0142,2025-8-4,16:5:25,홍승범,0502-2827-8463,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,460010959531,502507196100,8809595040017
+ORD250804-0142,2025-8-4,16:5:25,홍승범,0502-2827-8463,P001-EFS001,[EFFECT_V2_WHITE_GRAY_SKY] FULL PACK (KR),1,0,0,460010959531,502507196100,602503679120
+ORD250804-0140,2025-8-4,16:10:39,안세이,010-6305-3099,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,460010959516,502507360100,8809595040017
+ORD250804-0140,2025-8-4,16:10:39,안세이,010-6305-3099,L001-0030,뷰티루틴 쇼핑백,2,0,0,460010959516,502507360100,L001-0030
+ORD250804-0140,2025-8-4,16:10:39,안세이,010-6305-3099,K001-0008,택배박스_6호_410x265x360,1,0,0,460010959516,502507360100,K001-0008
+ORD250804-0140,2025-8-4,16:10:39,안세이,010-6305-3099,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,460010959516,502507360100,JGIFT-0010
+ORD250804-0140,2025-8-4,16:10:39,안세이,010-6305-3099,P001-0152,원형케이스 퍼플,1,0,0,460010959516,502507360100,8809595040512
+ORD250804-0140,2025-8-4,16:10:39,안세이,010-6305-3099,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,460010959516,502507360100,602507763130
+ORD250804-0140,2025-8-4,16:10:39,안세이,010-6305-3099,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,460010959516,502507360100,502507360100
+ORD250804-0061,2025-8-4,16:17:57,최미*,0502-2572-9634,K001-0022,택배박스_2호_270*180*170,1,0,0,460010725521,ORD250804-0061,K001-0022
+ORD250804-0061,2025-8-4,16:17:57,최미*,0502-2572-9634,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,460010725521,ORD250804-0061,L004-0023
+ORD250804-0062,2025-8-4,16:21:9,양영*,0502-2576-1638,K001-0022,택배박스_2호_270*180*170,1,0,0,460010725532,ORD250804-0062,K001-0022
+ORD250804-0062,2025-8-4,16:21:9,양영*,0502-2576-1638,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,460010725532,ORD250804-0062,L004-0023
+ORD250804-0063,2025-8-4,16:23:14,양진*(안경자),0502-2576-1701,K001-0022,택배박스_2호_270*180*170,1,0,0,460010725543,ORD250804-0063,K001-0022
+ORD250804-0063,2025-8-4,16:23:14,양진*(안경자),0502-2576-1701,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,460010725543,ORD250804-0063,L004-0023
+ORD250804-0064,2025-8-4,16:24:45,양영*,0502-2580-7595,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,460010725554,ORD250804-0064,L004-0023
+ORD250804-0064,2025-8-4,16:24:45,양영*,0502-2580-7595,K001-0022,택배박스_2호_270*180*170,1,0,0,460010725554,ORD250804-0064,K001-0022
+ORD250804-0065,2025-8-4,16:26:56,양진*,0502-2572-9733,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),10,0,0,460010725565,ORD250804-0065,L004-0023
+ORD250804-0065,2025-8-4,16:26:56,양진*,0502-2572-9733,K001-0022,택배박스_2호_270*180*170,1,0,0,460010725565,ORD250804-0065,K001-0022
+ORD250804-0070,2025-8-4,16:27:57,강나이,01029730878,K001-0008,택배박스_6호_410x265x360,1,0,0,460010725613,ORD250804-0070,K001-0008
+ORD250804-0070,2025-8-4,16:27:57,강나이,01029730878,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,460010725613,ORD250804-0070,L001-0032
+ORD250804-0070,2025-8-4,16:27:57,강나이,01029730878,JGIFT-0024,EMS Belt_Mint,1,0,0,460010725613,ORD250804-0070,8809595040758
+ORD250804-0045,2025-8-4,16:34:32,이송이,010-4856-3772,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,460010725366,602503595110,602503595110
+ORD250804-0045,2025-8-4,16:34:32,이송이,010-4856-3772,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,460010725366,602503595110,8809595040628
+ORD250804-0045,2025-8-4,16:34:32,이송이,010-4856-3772,P001-0152,원형케이스 퍼플,1,0,0,460010725366,602503595110,8809595040512
+ORD250804-0045,2025-8-4,16:34:32,이송이,010-4856-3772,L001-0030,뷰티루틴 쇼핑백,1,0,0,460010725366,602503595110,L001-0030
+ORD250804-0045,2025-8-4,16:34:32,이송이,010-4856-3772,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,460010725366,602503595110,L004-0023
+ORD250804-0045,2025-8-4,16:34:32,이송이,010-4856-3772,K001-0008,택배박스_6호_410x265x360,1,0,0,460010725366,602503595110,K001-0008
+ORD250804-0046,2025-8-4,16:41:37,이주미,0502-3628-5861,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,460010725370,602503236130,8809595040628
+ORD250804-0046,2025-8-4,16:41:37,이주미,0502-3628-5861,K001-0008,택배박스_6호_410x265x360,1,0,0,460010725370,602503236130,K001-0008
+ORD250804-0046,2025-8-4,16:41:37,이주미,0502-3628-5861,L001-0030,뷰티루틴 쇼핑백,1,0,0,460010725370,602503236130,L001-0030
+ORD250804-0046,2025-8-4,16:41:37,이주미,0502-3628-5861,P001-0152,원형케이스 퍼플,1,0,0,460010725370,602503236130,8809595040512
+ORD250804-0046,2025-8-4,16:41:37,이주미,0502-3628-5861,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,460010725370,602503236130,L004-0023
+ORD250804-0046,2025-8-4,16:41:37,이주미,0502-3628-5861,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,460010725370,602503236130,602503236130
+ORD250804-0047,2025-8-4,16:44:36,강유진,010-5320-3260,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,460010725381,602503058130,8809595040628
+ORD250804-0047,2025-8-4,16:44:36,강유진,010-5320-3260,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,460010725381,602503058130,L004-0023
+ORD250804-0047,2025-8-4,16:44:36,강유진,010-5320-3260,L001-0030,뷰티루틴 쇼핑백,1,0,0,460010725381,602503058130,L001-0030
+ORD250804-0047,2025-8-4,16:44:36,강유진,010-5320-3260,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,460010725381,602503058130,602503058130
+ORD250804-0047,2025-8-4,16:44:36,강유진,010-5320-3260,K001-0008,택배박스_6호_410x265x360,1,0,0,460010725381,602503058130,K001-0008
+ORD250804-0047,2025-8-4,16:44:36,강유진,010-5320-3260,P001-0152,원형케이스 퍼플,1,0,0,460010725381,602503058130,8809595040512
+ORD250804-0048,2025-8-4,16:47:10,이희윤,010-8431-5432,L001-0030,뷰티루틴 쇼핑백,1,0,0,460010725392,602503143130,L001-0030
+ORD250804-0048,2025-8-4,16:47:10,이희윤,010-8431-5432,P001-0152,원형케이스 퍼플,1,0,0,460010725392,602503143130,8809595040512
+ORD250804-0048,2025-8-4,16:47:10,이희윤,010-8431-5432,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,460010725392,602503143130,602503143130
+ORD250804-0048,2025-8-4,16:47:10,이희윤,010-8431-5432,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,460010725392,602503143130,8809595040628
+ORD250804-0048,2025-8-4,16:47:10,이희윤,010-8431-5432,K001-0008,택배박스_6호_410x265x360,1,0,0,460010725392,602503143130,K001-0008
+ORD250804-0048,2025-8-4,16:47:10,이희윤,010-8431-5432,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,460010725392,602503143130,L004-0023
+ORD250804-0055,2025-8-4,16:55:42,김경진,010-9061-2668,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,460010725462,602503156130,L004-0023
+ORD250804-0055,2025-8-4,16:55:42,김경진,010-9061-2668,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,460010725462,602503156130,8809595040628
+ORD250804-0055,2025-8-4,16:55:42,김경진,010-9061-2668,L001-0030,뷰티루틴 쇼핑백,1,0,0,460010725462,602503156130,L001-0030
+ORD250804-0055,2025-8-4,16:55:42,김경진,010-9061-2668,P001-0152,원형케이스 퍼플,1,0,0,460010725462,602503156130,8809595040512
+ORD250804-0055,2025-8-4,16:55:42,김경진,010-9061-2668,K001-0008,택배박스_6호_410x265x360,1,0,0,460010725462,602503156130,K001-0008
+ORD250804-0055,2025-8-4,16:55:42,김경진,010-9061-2668,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,460010725462,602503156130,602503156130
+ORD250804-0056,2025-8-4,16:58:6,최보람,010-5597-6415,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,460010725473,602503275130,L004-0023
+ORD250804-0056,2025-8-4,16:58:6,최보람,010-5597-6415,L001-0030,뷰티루틴 쇼핑백,1,0,0,460010725473,602503275130,L001-0030
+ORD250804-0056,2025-8-4,16:58:6,최보람,010-5597-6415,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,460010725473,602503275130,602503275130
+ORD250804-0056,2025-8-4,16:58:6,최보람,010-5597-6415,K001-0008,택배박스_6호_410x265x360,1,0,0,460010725473,602503275130,K001-0008
+ORD250804-0056,2025-8-4,16:58:6,최보람,010-5597-6415,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),1,0,0,460010725473,602503275130,8809595040628
+ORD250804-0056,2025-8-4,16:58:6,최보람,010-5597-6415,P001-0152,원형케이스 퍼플,1,0,0,460010725473,602503275130,8809595040512
+ORD250804-0319,2025-8-4,17:4:26,김나경,0502-3629-3484,L004-0001,DUALSONIC Blooming Moisture Gel,1,0,0,692940052813,ORD250804-0319,8809595040017
+ORD250804-0319,2025-8-4,17:4:26,김나경,0502-3629-3484,K001-0010,택배박스_1호_250*150*100,1,0,0,692940052813,ORD250804-0319,K001-0010
+ORD250804-0321,2025-8-4,17:6:16,이상현,010-4900-3460,K001-0010,택배박스_1호_250*150*100,1,0,0,692940052835,ORD250804-0321,K001-0010
+ORD250804-0321,2025-8-4,17:6:16,이상현,010-4900-3460,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),1,0,0,692940052835,ORD250804-0321,L004-0023
+ORD250804-0322,2025-8-4,17:7:40,진평희,0502-3829-3789,P001-DS007A,DUALSONIC Pro Face CARTRIDGE 1Set,1,6000,0,692940052846,112506172000,112506172000
+ORD250804-0322,2025-8-4,17:7:40,진평희,0502-3829-3789,K001-0010,택배박스_1호_250*150*100,1,0,0,692940052846,112506172000,K001-0010
+ORD250804-0320,2025-8-4,17:12:9,허명제,010-9142-5268,L001-0030,뷰티루틴 쇼핑백,2,0,0,692940052824,602503574111,L001-0030
+ORD250804-0320,2025-8-4,17:12:9,허명제,010-9142-5268,K001-0007,택배박스_5호_400*250*300,1,0,0,692940052824,602503574111,K001-0007
+ORD250804-0320,2025-8-4,17:12:9,허명제,010-9142-5268,L004-0001,DUALSONIC Blooming Moisture Gel,3,0,0,692940052824,602503574111,8809595040017
+ORD250804-0320,2025-8-4,17:12:9,허명제,010-9142-5268,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692940052824,602503574111,JGIFT-0010
+ORD250804-0320,2025-8-4,17:12:9,허명제,010-9142-5268,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,692940052824,602503574111,8809595040635
+ORD250804-0320,2025-8-4,17:12:9,허명제,010-9142-5268,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,692940052824,602503574111,602503574111
+ORD250804-0318,2025-8-4,17:22:49,배성민,053-431-2600,P001-DS0036A,DUALSONIC Pro 1Set 완제품 (KR)[Face 12,000샷, Eye 120,000 샷],1,12000,120000,692940052802,102505125100,102505125100
+ORD250804-0318,2025-8-4,17:22:49,배성민,053-431-2600,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,692940052802,102505125100,L004-0023
+ORD250804-0318,2025-8-4,17:22:49,배성민,053-431-2600,K001-0008,택배박스_6호_410x265x360,1,0,0,692940052802,102505125100,K001-0008
+ORD250804-0318,2025-8-4,17:22:49,배성민,053-431-2600,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,692940052802,102505125100,JGIFT-0010
+ORD250804-0318,2025-8-4,17:22:49,배성민,053-431-2600,P001-0156,우디케이스,1,0,0,692940052802,102505125100,8809595040598
+ORD250804-0318,2025-8-4,17:22:49,배성민,053-431-2600,L004-0001,DUALSONIC Blooming Moisture Gel,5,0,0,692940052802,102505125100,8809595040017
+ORD250804-0318,2025-8-4,17:22:49,배성민,053-431-2600,L001-0030,뷰티루틴 쇼핑백,1,0,0,692940052802,102505125100,L001-0030
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-8-5.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-8-5.csv
new file mode 100644
index 0000000..3793d1b
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataOrder/2025-8-5.csv
@@ -0,0 +1,74 @@
+Order_Code,PackingDate,PackingTime,Orderer_Name,Phone_Number,Item_Code,Item_Name,Item_Count,Apply_Face,Apply_Eye,Invoice_Number,Packing_Code,Serial_Number
+ORD250805-0033,2025-8-5,10:5:42,신세계면세점 (듀얼소닉),032-744-0866,L004-0001,DUALSONIC Blooming Moisture Gel,30,0,0,460019310623,ORD250805-0033,8809595040017
+ORD250805-0035,2025-8-5,10:10:48,신세계면세점 (듀얼소닉),032-744-0866,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),50,0,0,460019310645,ORD250805-0035,L004-0023
+ORD250805-0036,2025-8-5,10:14:22,남인례,0504-1527-4358,K001-0022,택배박스_2호_270*180*170,1,0,0,460019747644,ORD250805-0036,K001-0022
+ORD250805-0036,2025-8-5,10:14:22,남인례,0504-1527-4358,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,460019747644,ORD250805-0036,8809595040635
+ORD250805-0034,2025-8-5,10:16:44,신세계면세점 (듀얼소닉),032-744-0866,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),50,0,0,460019310634,ORD250805-0034,L004-0023
+ORD250805-0030,2025-8-5,10:26:20,김채람 매니저,010-3761-8428,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),50,0,0,k001-0133,ORD250805-0030,L004-0023
+ORD250805-0001,2025-8-5,10:34:45,쿠팡 인천32_1,070-4747-2982,K001-0041,택배박스_3호_305*255*185,1,0,0,8809595040376,402505025100,K001-0041
+ORD250805-0001,2025-8-5,10:34:45,쿠팡 인천32_1,070-4747-2982,P001-DSA005,DUALSONIC Pro ALPHA 1Set[Face 20,000, EYE 200,000],1,20000,200000,8809595040376,402505025100,402505025100
+ORD250805-0002,2025-8-5,10:41:31,쿠팡 인천32_2,070-4747-2982,K001-0041,택배박스_3호_305*255*185,1,0,0,8809595040376,402505020100,K001-0041
+ORD250805-0002,2025-8-5,10:41:31,쿠팡 인천32_2,070-4747-2982,P001-DSA005,DUALSONIC Pro ALPHA 1Set[Face 20,000, EYE 200,000],1,20000,200000,8809595040376,402505020100,402505020100
+ORD250805-0003,2025-8-5,10:46:1,쿠팡 인천32_3,070-4747-2982,K001-0041,택배박스_3호_305*255*185,1,0,0,8809595040376,402505013100,K001-0041
+ORD250805-0003,2025-8-5,10:46:1,쿠팡 인천32_3,070-4747-2982,P001-DSA005,DUALSONIC Pro ALPHA 1Set[Face 20,000, EYE 200,000],1,20000,200000,8809595040376,402505013100,402505013100
+ORD250805-0018,2025-8-5,10:54:32,쿠팡 인천32_18,070-4747-2982,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,k001-0133,602503748110,L004-0023
+ORD250805-0018,2025-8-5,10:54:32,쿠팡 인천32_18,070-4747-2982,K001-0041,택배박스_3호_305*255*185,1,0,0,k001-0133,602503748110,K001-0041
+ORD250805-0018,2025-8-5,10:54:32,쿠팡 인천32_18,070-4747-2982,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,k001-0133,602503748110,602503748110
+ORD250805-0019,2025-8-5,10:59:27,쿠팡 인천32_19,070-4747-2982,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,k001-0133,602503898110,602503898110
+ORD250805-0019,2025-8-5,10:59:27,쿠팡 인천32_19,070-4747-2982,K001-0041,택배박스_3호_305*255*185,1,0,0,k001-0133,602503898110,K001-0041
+ORD250805-0019,2025-8-5,10:59:27,쿠팡 인천32_19,070-4747-2982,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,k001-0133,602503898110,L004-0023
+ORD250805-0006,2025-8-5,11:11:11,쿠팡 인천32_6,070-4747-2982,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,8809595040376,602503836110,L004-0023
+ORD250805-0006,2025-8-5,11:11:11,쿠팡 인천32_6,070-4747-2982,K001-0041,택배박스_3호_305*255*185,1,0,0,8809595040376,602503836110,K001-0041
+ORD250805-0006,2025-8-5,11:11:11,쿠팡 인천32_6,070-4747-2982,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,8809595040376,602503836110,602503836110
+ORD250805-0007,2025-8-5,11:15:33,쿠팡 인천32_7,070-4747-2982,K001-0041,택배박스_3호_305*255*185,1,0,0,k001-0133,602503610110,K001-0041
+ORD250805-0007,2025-8-5,11:15:33,쿠팡 인천32_7,070-4747-2982,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,k001-0133,602503610110,L004-0023
+ORD250805-0007,2025-8-5,11:15:33,쿠팡 인천32_7,070-4747-2982,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,k001-0133,602503610110,602503610110
+ORD250805-0014,2025-8-5,11:19:53,쿠팡 인천32_14,070-4747-2982,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),3,0,0,k001-0133,602503855110,L004-0023
+ORD250805-0014,2025-8-5,11:19:53,쿠팡 인천32_14,070-4747-2982,K001-0041,택배박스_3호_305*255*185,1,0,0,k001-0133,602503855110,K001-0041
+ORD250805-0014,2025-8-5,11:19:53,쿠팡 인천32_14,070-4747-2982,P001-EFP001,[EFFECT_V2_WHITE_GRAY_PINK] FULL PACK (KR),1,0,0,k001-0133,602503855110,602503855110
+ORD250805-0040,2025-8-5,11:33:25,전민아,010-9082-1442,L001-0030,뷰티루틴 쇼핑백,6,0,0,460021045573,ORD250805-0040,L001-0030
+ORD250805-0040,2025-8-5,11:33:25,전민아,010-9082-1442,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),6,0,0,460021045573,ORD250805-0040,8809595040628
+ORD250805-0040,2025-8-5,11:33:25,전민아,010-9082-1442,K001-0008,택배박스_6호_410x265x360,1,0,0,460021045573,ORD250805-0040,K001-0008
+ORD250805-0040,2025-8-5,11:33:25,전민아,010-9082-1442,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),6,0,0,460021045573,ORD250805-0040,8809595040635
+ORD250805-0041,2025-8-5,11:41:8,정은혜,010-4550-3716,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,460021045584,502507293100,502507293100
+ORD250805-0041,2025-8-5,11:41:8,정은혜,010-4550-3716,L001-0030,뷰티루틴 쇼핑백,2,0,0,460021045584,502507293100,L001-0030
+ORD250805-0041,2025-8-5,11:41:8,정은혜,010-4550-3716,P001-0152,원형케이스 퍼플,1,0,0,460021045584,502507293100,8809595040512
+ORD250805-0041,2025-8-5,11:41:8,정은혜,010-4550-3716,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,460021045584,502507293100,602507050131
+ORD250805-0041,2025-8-5,11:41:8,정은혜,010-4550-3716,K001-0008,택배박스_6호_410x265x360,1,0,0,460021045584,502507293100,K001-0008
+ORD250805-0041,2025-8-5,11:41:8,정은혜,010-4550-3716,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,460021045584,502507293100,8809595040017
+ORD250805-0041,2025-8-5,11:41:8,정은혜,010-4550-3716,JGIFT-0010,[사은품] 듀얼소닉 매쉬파우치 3종세트,1,0,0,460021045584,502507293100,JGIFT-0010
+ORD250805-0061,2025-8-5,11:48:16,김*실,0502-6368-9049,K001-0041,택배박스_3호_305*255*185,1,0,0,60021544242,ORD250805-0061,K001-0041
+ORD250805-0061,2025-8-5,11:48:16,김*실,0502-6368-9049,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,60021544242,ORD250805-0061,8809595040628
+ORD250805-0061,2025-8-5,11:48:16,김*실,0502-6368-9049,L001-0030,뷰티루틴 쇼핑백,1,0,0,60021544242,ORD250805-0061,L001-0030
+ORD250805-0065,2025-8-5,11:52:14,이상미,01087067783,JGIFT-0025,EMS Belt_Peach,1,0,0,460021544286,ORD250805-0065,8809595040734
+ORD250805-0065,2025-8-5,11:52:14,이상미,01087067783,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,460021544286,ORD250805-0065,L001-0032
+ORD250805-0065,2025-8-5,11:52:14,이상미,01087067783,K001-0008,택배박스_6호_410x265x360,1,0,0,460021544286,ORD250805-0065,K001-0008
+ORD250805-0064,2025-8-5,13:7:26,류영주,01045140777,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,460021544275,ORD250805-0064,L001-0032
+ORD250805-0064,2025-8-5,13:7:26,류영주,01045140777,K001-0008,택배박스_6호_410x265x360,1,0,0,460021544275,ORD250805-0064,K001-0008
+ORD250805-0064,2025-8-5,13:7:26,류영주,01045140777,JGIFT-0026,EMS Belt_Purple,1,0,0,460021544275,ORD250805-0064,8809595040741
+ORD250805-0063,2025-8-5,13:10:11,김수연,01020051923,JGIFT-0026,EMS Belt_Purple,1,0,0,460021544264,ORD250805-0063,8809595040741
+ORD250805-0063,2025-8-5,13:10:11,김수연,01020051923,K001-0008,택배박스_6호_410x265x360,1,0,0,460021544264,ORD250805-0063,K001-0008
+ORD250805-0063,2025-8-5,13:10:11,김수연,01020051923,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,460021544264,ORD250805-0063,L001-0032
+ORD250805-0062,2025-8-5,13:13:6,정막달,027232770,JGIFT-0024,EMS Belt_Mint,1,0,0,460021544253,ORD250805-0062,8809595040758
+ORD250805-0062,2025-8-5,13:13:6,정막달,027232770,K001-0008,택배박스_6호_410x265x360,1,0,0,460021544253,ORD250805-0062,K001-0008
+ORD250805-0062,2025-8-5,13:13:6,정막달,027232770,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,460021544253,ORD250805-0062,L001-0032
+ORD250805-0048,2025-8-5,13:15:37,한은주,010-5435-8001,K001-0008,택배박스_6호_410x265x360,1,0,0,460021544113,ORD250805-0048,K001-0008
+ORD250805-0048,2025-8-5,13:15:37,한은주,010-5435-8001,JGIFT-0025,EMS Belt_Peach,1,0,0,460021544113,ORD250805-0048,8809595040734
+ORD250805-0048,2025-8-5,13:15:37,한은주,010-5435-8001,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,460021544113,ORD250805-0048,L001-0032
+ORD250805-0049,2025-8-5,13:18:14,정재우,0508-6818-8198,K001-0008,택배박스_6호_410x265x360,1,0,0,460021544124,ORD250805-0049,K001-0008
+ORD250805-0049,2025-8-5,13:18:14,정재우,0508-6818-8198,JGIFT-0026,EMS Belt_Purple,1,0,0,460021544124,ORD250805-0049,8809595040741
+ORD250805-0049,2025-8-5,13:18:14,정재우,0508-6818-8198,L001-0032,핏업밸트 쇼핑백(150*65*460),1,0,0,460021544124,ORD250805-0049,L001-0032
+ORD250805-0066,2025-8-5,13:27:54,김현수,010-5214-2980,P001-0154,가죽케이스 피치,1,0,0,460021544290,312507325100,8809595040505
+ORD250805-0066,2025-8-5,13:27:54,김현수,010-5214-2980,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,460021544290,312507325100,8809595040628
+ORD250805-0066,2025-8-5,13:27:54,김현수,010-5214-2980,L001-0030,뷰티루틴 쇼핑백,1,0,0,460021544290,312507325100,L001-0030
+ORD250805-0066,2025-8-5,13:27:54,김현수,010-5214-2980,K001-0008,택배박스_6호_410x265x360,1,0,0,460021544290,312507325100,K001-0008
+ORD250805-0066,2025-8-5,13:27:54,김현수,010-5214-2980,L004-0001,DUALSONIC Blooming Moisture Gel,6,0,0,460021544290,312507325100,8809595040017
+ORD250805-0066,2025-8-5,13:27:54,김현수,010-5214-2980,PF001-001B,[BR] NIGHT SHOT (14 BOTTLES),2,0,0,460021544290,312507325100,8809595040635
+ORD250805-0066,2025-8-5,13:27:54,김현수,010-5214-2980,P001-MM001E,[MAXIMUM_V2_WHITE] FULL PACK (KR),1,0,0,460021544290,312507325100,312507325100
+ORD250805-0053,2025-8-5,13:36:9,김시은,010-9926-9308,L001-0030,뷰티루틴 쇼핑백,2,0,0,460021544161,502507014100,L001-0030
+ORD250805-0053,2025-8-5,13:36:9,김시은,010-9926-9308,P001-0154,가죽케이스 피치,1,0,0,460021544161,502507014100,8809595040505
+ORD250805-0053,2025-8-5,13:36:9,김시은,010-9926-9308,P001-EFB001,EFFECT_V2_WHITE_GRAY_BROWN] FULL PACK (KR),1,0,0,460021544161,502507014100,602507881130
+ORD250805-0053,2025-8-5,13:36:9,김시은,010-9926-9308,P001-AT001,[ALTO_WHITE] FULL PACK (KR),1,0,0,460021544161,502507014100,502507014100
+ORD250805-0053,2025-8-5,13:36:9,김시은,010-9926-9308,PF001-001A,[BR] MORNING SHOT (14 BOTTLES),2,0,0,460021544161,502507014100,8809595040628
+ORD250805-0053,2025-8-5,13:36:9,김시은,010-9926-9308,K001-0008,택배박스_6호_410x265x360,1,0,0,460021544161,502507014100,K001-0008
+ORD250805-0053,2025-8-5,13:36:9,김시은,010-9926-9308,L004-0023,Firming Collagen Gel(콜라겐젤 피치 Ver1.0 단품),5,0,0,460021544161,502507014100,L004-0023
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-6-26.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-6-26.csv
new file mode 100644
index 0000000..cd0f0ec
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-6-26.csv
@@ -0,0 +1,13 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+11:5:33,ORD250626-0009,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0
+11:9:18,ORD250626-0024,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:24:51,402505180100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402505180100,0,,0,,0,,1,502506348100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0
+11:28:15,402505164100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402505164100,0,,0,,0,,1,502506281100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0
+11:35:37,302505856150,1,0,,0,,0,,0,,0,,0,,0,,0,,1,302505856150,0,,0,,0,,0,,1,502506234100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0
+11:41:51,602503575130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503575130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+11:49:45,ORD250626-0025,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:34:23,ORD250626-0054,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+16:32:19,312505055180,1,0,,0,,0,,0,,0,,0,,0,,0,,8,312505303180/312505297180/312505321180/312505079180/312505279180/312505055180/312505332180/312505359180,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:53:58,ORD250626-0099,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:58:22,ORD250626-0098,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:59:48,ORD250626-0097,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-6-27.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-6-27.csv
new file mode 100644
index 0000000..0fcc6b2
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-6-27.csv
@@ -0,0 +1,24 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+13:26:8,312505702180,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312505702180,0,,0,,0,,0,,0,,0,,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+13:33:8,312506846100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506846100,0,,0,,0,,0,,0,,0,,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+13:37:52,312506821100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506821100,0,,0,,0,,0,,0,,0,,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+13:41:38,312505375180,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312505375180,0,,0,,0,,0,,0,,0,,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+13:47:46,312506764100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506764100,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0
+13:52:15,312506819100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506819100,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0
+14:0:33,602503101130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503101130,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+14:3:47,602503068130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503068130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0
+14:7:25,602503845110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503845110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0
+14:10:12,602503170130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503170130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0
+14:12:53,602503091130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503091130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0
+14:25:59,602503171130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503171130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0
+15:18:33,312506217100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506217100,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:19:51,ORD250627-0044,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:20:47,ORD250627-0041,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:23:47,ORD250627-0040,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:26:29,ORD250627-0039,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:28:18,ORD250627-0038,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0
+15:29:39,ORD250627-0037,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0
+15:32:24,312505408180,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312505408180,0,,0,,0,,0,,0,,0,,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+15:56:6,ORD250627-0083,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+15:57:8,ORD250627-0086,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0
+16:21:54,602506007130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602506007130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-6-30.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-6-30.csv
new file mode 100644
index 0000000..96c7100
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-6-30.csv
@@ -0,0 +1,78 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+10:33:14,ORD250630-0004,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:38:47,ORD250630-0005,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:50:58,ORD250630-0019,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:55:0,ORD250630-0018,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:56:30,112506033000,1,0,,0,,1,112506033000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:7:46,602503093130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503093130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+13:9:52,ORD250630-0034,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:12:10,312506741100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506741100,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+13:14:28,502506273100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506273100,1,602503059130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0
+13:16:46,502506102100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506102100,1,602501223111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0
+13:18:28,602503167130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503167130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+13:19:28,ORD250630-0043,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:20:41,ORD250630-0035,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:22:16,ORD250630-0032,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:23:29,ORD250630-0031,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:24:34,112506035000,1,0,,0,,1,112506035000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:25:47,132407042000,1,0,,0,,0,,0,,0,,0,,1,132407042000,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:26:42,112504092000,1,0,,0,,1,112504092000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:40:14,ORD250630-0109,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:41:2,ORD250630-0145,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:41:50,ORD250630-0148,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:43:10,ORD250630-0139,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:44:1,ORD250630-0149,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:44:44,ORD250630-0150,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:48:18,ORD250630-0151,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:49:34,ORD250630-0146,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:50:39,ORD250630-0147,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:52:2,ORD250630-0141,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:53:16,ORD250630-0142,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:54:13,ORD250630-0143,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:55:24,ORD250630-0131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:56:26,ORD250630-0156,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:58:1,ORD250630-0155,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:59:7,ORD250630-0154,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+14:0:10,ORD250630-0153,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+14:1:20,ORD250630-0152,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+14:6:3,ORD250630-0054,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:8:27,ORD250630-0103,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:14:52,ORD250630-0102,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:18:13,ORD250630-0055,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:19:0,ORD250630-0107,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:20:37,ORD250630-0106,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:22:23,ORD250630-0108,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:32:24,ORD250630-0121,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0
+14:35:13,ORD250630-0122,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0
+14:37:9,ORD250630-0123,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0
+14:39:35,ORD250630-0124,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0
+14:41:41,ORD250630-0125,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0
+14:43:40,ORD250630-0126,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0
+14:46:10,ORD250630-0127,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0
+14:49:43,ORD250630-0120,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0
+14:53:48,ORD250630-0128,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0
+14:56:8,ORD250630-0133,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:56:58,502506142100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506142100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+14:59:32,402502115100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402502115100,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+15:23:16,ORD250630-0101,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:25:27,ORD250630-0100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:27:1,ORD250630-0099,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:29:3,ORD250630-0098,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:31:17,ORD250630-0097,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:33:4,ORD250630-0096,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:35:7,ORD250630-0094,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:37:24,ORD250630-0095,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:39:17,ORD250630-0093,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:42:37,ORD250630-0092,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:44:21,ORD250630-0091,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:45:52,ORD250630-0090,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:48:16,ORD250630-0089,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:49:50,ORD250630-0194,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:51:33,ORD250630-0193,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:52:52,ORD250630-0191,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:59:6,ORD250630-0192,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:1:25,ORD250630-0190,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:6:33,ORD250630-0105,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:49:54,ORD250630-0213,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:53:9,602503108130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503108130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0
+17:9:35,402502123100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402502123100,0,,0,,0,,1,502506256100,0,,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-1.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-1.csv
new file mode 100644
index 0000000..f824207
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-1.csv
@@ -0,0 +1,27 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+13:14:31,ORD250701-0002,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:17:6,502506184100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506184100,1,602501037111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0
+13:19:46,312506095101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506095101,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+13:22:37,ORD250701-0087,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0
+13:26:27,ORD250701-0086,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0
+13:28:30,ORD250701-0085,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0
+13:29:46,ORD250701-0079,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+13:32:21,ORD250701-0076,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:33:54,ORD250701-0074,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:36:55,ORD250701-0073,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:38:38,ORD250701-0072,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:40:38,ORD250701-0071,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:43:1,ORD250701-0070,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:45:23,ORD250701-0069,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:47:44,ORD250701-0068,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:49:50,ORD250701-0067,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:51:53,ORD250701-0066,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:55:18,ORD250701-0065,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:56:55,602503100130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503100130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+14:58:19,ORD250701-0108,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:11:59,ORD250701-0104,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:14:19,ORD250701-0103,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:35:0,402502124100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402502124100,0,,0,,0,,1,502506230100,0,,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0
+15:55:53,ORD250701-0097,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:14:48,ORD250701-0113,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:20:9,502506125100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506125100,1,602503217130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-10.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-10.csv
new file mode 100644
index 0000000..80d33ae
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-10.csv
@@ -0,0 +1,24 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+10:30:4,602502548120,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602502548120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:45:9,ORD250710-0042,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:47:16,ORD250710-0045,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:49:26,ORD250710-0046,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:50:54,ORD250710-0058,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:54:38,ORD250710-0060,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:55:41,ORD250710-0057,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:57:57,112501003010,1,0,,0,,1,112501003010,0,,1,122507001010,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:1:20,ORD250710-0039,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:3:50,ORD250710-0037,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:11:12,312506359101,1,0,,0,,0,,0,,0,,0,,0,,0,,10,312506820100/312506751100/312506830100/312506734100/312506722100/312506862100/312506752100/312506359101/312506912100/312506926100,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:17:7,312506268101,1,0,,0,,0,,0,,0,,0,,0,,0,,10,312506268101/312506331101/312506281101/312506275101/312506273101/312506277101/312506286101/312506304101/312506384101/312506305101,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:21:2,602503053130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,10,602503053130/602503078130/602503069130/602503070130/602503323130/602503317130/602503229130/602503117130/602503398130/602503127130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:28:11,602501123131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,10,602501246131/602501990130/602501274131/602501315133/602501313131/602501192132/602501216132/602501298131/602501123131/602501576132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:32:21,502506026100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,10,502506360100/502506422100/502506275100/502506451100/502506225100/502506448100/502506026100/502506447100/502506454100/502506337100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:42:27,ORD250710-0084,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0
+15:28:47,ORD250710-0086,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:30:37,ORD250710-0090,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:32:10,412506004000,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,412506004000,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:43:45,602501149131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501149131,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:47:50,112506012000,1,0,,0,,2,112506185000/112506012000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:51:27,502506170100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506170100,1,602501419132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,3,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,2,0,0,1
+17:11:3,ORD250710-0093,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-11.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-11.csv
new file mode 100644
index 0000000..9efa0b5
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-11.csv
@@ -0,0 +1,27 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+10:53:40,212505003000,1,0,,0,,0,,1,212505003000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:55:28,112506189000,1,0,,0,,1,112506189000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:56:24,ORD250711-0005,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:59:47,602501127131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501127131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:18:16,ORD250711-0025,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:22:19,ORD250711-0026,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+11:24:54,ORD250711-0027,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+11:26:12,ORD250711-0028,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:27:20,ORD250711-0030,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:32:3,ORD250711-0015,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:34:3,ORD250711-0014,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:37:32,ORD250711-0013,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:39:11,ORD250711-0012,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:42:27,502506259100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506259100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:47:51,ORD250711-0010,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+11:58:29,ORD250711-0064,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:15:27,502507216100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,10,502507244100/502507316100/502507358100/502507240100/502507281100/502507238100/502507350100/502507216100/502507295100/502507329100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:20:25,502507233100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,10,502507233100/502507235100/502507246100/502507254100/502507256100/502507259100/502507274100/502507312100/502507237100/502507253100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:23:43,502507204100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,10,502507331100/502507220100/502507247100/502507239100/502507284100/502507357100/502507310100/502507245100/502507364100/502507204100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:28:3,602501003133,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,10,602501003133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:17:8,602503813110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503813110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:22:25,502506084100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506084100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:29:24,102502005100,1,1,102502005100,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:58:14,112506200000,1,0,,0,,1,112506200000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:1:26,502506054100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506054100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0
+17:4:59,102505048100,1,1,102505048100,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-14.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-14.csv
new file mode 100644
index 0000000..19f4577
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-14.csv
@@ -0,0 +1,49 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+11:6:21,ORD250714-0032,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+11:9:43,ORD250714-0033,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:11:21,ORD250714-0030,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+11:15:8,ORD250714-0031,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+11:15:56,ORD250714-0029,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+11:17:54,ORD250714-0034,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:26:11,312505745180,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312505745180,0,,0,,0,,0,,0,,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:32:1,312506872100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506872100,0,,0,,0,,0,,0,,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:37:33,312507269100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507269100,0,,0,,0,,0,,0,,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:44:28,312507251100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507251100,0,,0,,0,,0,,0,,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:48:7,312507288100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507288100,0,,0,,0,,0,,0,,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:10:33,502507349100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507349100,1,602502591120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:16:5,602501430120,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501430120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:19:46,312506077101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506077101,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:25:14,312506129101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506129101,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:29:49,312507284100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507284100,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:34:43,312506217101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506217101,0,,0,,0,,0,,0,,0,,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0
+13:39:38,312507293100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507293100,0,,0,,0,,0,,0,,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:42:16,312506917100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506917100,0,,0,,0,,0,,0,,0,,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:45:18,312506076101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506076101,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:49:2,312506655100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506655100,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:53:15,602501230133,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501230133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:56:27,602501211133,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501211133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:14:0,602501208133,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501208133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:44:39,502507194100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507194100,1,602503842110,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
+14:50:17,502506049100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506049100,1,602503869110,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
+14:54:44,502507222100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507222100,1,602503841110,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
+14:59:1,502507248100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507248100,1,602503878110,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
+15:13:35,502507203100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507203100,1,602503649110,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
+15:19:2,502507198100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507198100,1,602503815110,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
+15:27:37,ORD250714-0147,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:30:38,ORD250714-0146,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:32:54,ORD250714-0145,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:35:9,ORD250714-0143,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:39:55,ORD250714-0139,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:41:22,ORD250714-0138,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:43:28,ORD250714-0136,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:53:0,ORD250714-0166,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:57:37,602501326133,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501326133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:59:54,ORD250714-0169,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:1:32,ORD250714-0170,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:3:9,ORD250714-0176,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:6:17,312506374101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506374101,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:7:45,ORD250714-0178,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:13:56,112501014010,1,0,,0,,1,112501014010,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:35:10,132503022000,1,0,,0,,0,,0,,0,,0,,1,132503022000,0,,2,312507270100/312507243100,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+18:11:51,ORD250714-0180,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+18:13:32,ORD250714-0129,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-15.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-15.csv
new file mode 100644
index 0000000..507d273
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-15.csv
@@ -0,0 +1,59 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+11:24:7,ORD250715-0012,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:32:1,ORD250715-0013,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,1,0,0,1,2,0,0,0,0,0,0,0,0
+13:35:8,ORD250715-0014,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0
+13:37:39,ORD250715-0015,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:39:5,ORD250715-0016,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:51:5,502507305100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507305100,1,602503322130,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0
+13:59:37,502507307100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507307100,1,602503351130,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0
+14:14:8,502507257100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507257100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:17:16,ORD250715-0082,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:18:27,ORD250715-0077,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:20:1,112506169000,1,0,,0,,1,112506169000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:22:10,ORD250715-0041,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:23:26,ORD250715-0038,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:24:31,ORD250715-0030,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:30:25,602502894120,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602502894120,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:37:42,502507353100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507353100,1,602501172111,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:43:56,502507258100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507258100,1,602501399120,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:48:15,502507202100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507202100,1,602503332130,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:50:56,602501992132,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501992132,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:54:45,602501991130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501991130,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:12:56,602501266120,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501266120,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:14:19,112506177000,1,0,,0,,1,112506177000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:16:46,ORD250715-0095,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:19:11,ORD250715-0103,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:20:22,ORD250715-0102,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:21:12,ORD250715-0101,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:24:28,ORD250715-0094,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:27:13,602501071133,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501071133,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:28:38,ORD250715-0007,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:31:34,ORD250715-0008,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:32:43,ORD250715-0009,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:38:13,ORD250715-0096,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:39:29,ORD250715-0010,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:45:22,602503828110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503828110,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:49:8,502507352100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507352100,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:51:29,ORD250715-0100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:53:14,ORD250715-0099,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:54:42,ORD250715-0097,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:4:46,ORD250715-0114,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
+16:7:18,ORD250715-0043,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:8:55,ORD250715-0044,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:10:27,ORD250715-0068,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:12:12,ORD250715-0032,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:13:47,ORD250715-0033,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:17:14,ORD250715-0042,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:20:23,ORD250715-0051,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:23:4,ORD250715-0052,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:26:41,ORD250715-0115,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0
+16:31:8,ORD250715-0116,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:34:29,ORD250715-0117,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:36:7,ORD250715-0120,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:37:48,ORD250715-0118,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:17:25,ORD250715-0110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0
+17:20:53,ORD250715-0109,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0
+17:24:20,ORD250715-0111,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+17:27:25,ORD250715-0108,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+17:29:15,ORD250715-0107,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:31:19,ORD250715-0105,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-16.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-16.csv
new file mode 100644
index 0000000..2d9e2c0
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-16.csv
@@ -0,0 +1,25 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+13:7:29,ORD250716-0012,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:9:59,ORD250716-0024,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:18:9,ORD250716-0013,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:21:0,112506176000,1,0,,0,,1,112506176000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:22:18,ORD250716-0020,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:24:0,ORD250716-0019,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:25:14,ORD250716-0014,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:43:59,602501143120,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501143120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:44:36,ORD250716-0038,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:48:15,ORD250716-0026,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:48:40,ORD250716-0025,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:49:27,ORD250716-0023,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:51:3,112506174000,1,0,,0,,2,112506204000/112506174000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:56:30,602503824110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503824110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:58:3,ORD250716-0028,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:58:49,ORD250716-0029,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:1:25,ORD250716-0030,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+14:58:45,102505073100,1,1,102505073100,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:1:7,312507128100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507128100,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:16:25,602503174130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503174130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:12:31,ORD250716-0045,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:27:52,602507342130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602507342130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:7:6,402505149100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402505149100,0,,0,,1,432504018000,1,502506059100,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:8:1,112506181000,1,0,,0,,1,112506181000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-17.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-17.csv
new file mode 100644
index 0000000..7a2bd4e
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-17.csv
@@ -0,0 +1,12 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+10:16:54,ORD250717-0003,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+10:26:53,ORD250717-0001,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:54:19,ORD250717-0026,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:56:30,ORD250717-0025,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:59:56,ORD250717-0009,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:1:37,ORD250717-0008,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:9:50,312506612100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506612100,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:15:8,602503608110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503608110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:35:15,602502863110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602502863110,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:34:37,112501009010,1,0,,0,,1,112501009010,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:36:6,ORD250717-0038,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-18.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-18.csv
new file mode 100644
index 0000000..7e68005
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-18.csv
@@ -0,0 +1,29 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+10:49:21,ORD250718-0033,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:50:52,ORD250718-0032,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:53:44,ORD250718-0031,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+10:55:20,ORD250718-0030,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+10:56:54,ORD250718-0029,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+10:58:59,ORD250718-0028,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+11:1:45,ORD250718-0027,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+11:3:23,ORD250718-0026,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+11:5:5,ORD250718-0025,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+11:9:59,312506948100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506948100,0,,0,,0,,0,,0,,0,,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:14:31,602412517131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602412517131,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:19:45,312506394100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506394100,0,,0,,0,,0,,0,,0,,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:22:41,ORD250718-0046,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:25:6,ORD250718-0048,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:26:30,ORD250718-0042,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:32:47,602503231130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,10,602503282130/602503320130/602503402130/602503319130/602503337130/602503341130/602503292130/602503264130/602503261130/602503231130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:13:39,312506388101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506388101,0,,0,,0,,0,,0,,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:26:29,ORD250718-0008,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:32:38,ORD250718-0009,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:35:27,ORD250718-0060,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:38:30,312506397101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506397101,0,,0,,0,,0,,0,,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:46:38,ORD250718-0066,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
+16:47:6,ORD250718-0065,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
+16:47:38,ORD250718-0064,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
+16:48:55,ORD250718-0072,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:49:53,ORD250718-0073,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:50:50,ORD250718-0074,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:51:50,ORD250718-0075,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-2.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-2.csv
new file mode 100644
index 0000000..daf468e
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-2.csv
@@ -0,0 +1,17 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+11:30:38,ORD250702-0070,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:34:35,ORD250702-0069,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:44:14,ORD250702-0034,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:46:31,602503094130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503094130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+11:48:33,ORD250702-0067,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:50:51,ORD250702-0066,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:51:40,ORD250702-0063,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:54:45,602502515120,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602502515120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+13:28:56,502506012100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506012100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+13:30:50,502506032100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506032100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+13:34:5,ORD250702-0032,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:46:27,302506068150,1,0,,0,,0,,0,,0,,0,,0,,0,,1,302506068150,0,,0,,0,,0,,0,,0,,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:53:12,502506306100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506306100,1,602502640120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0
+17:39:49,ORD250702-0113,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:49:7,ORD250702-0087,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+18:13:51,ORD250702-0106,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-21.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-21.csv
new file mode 100644
index 0000000..d6b1bbe
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-21.csv
@@ -0,0 +1,45 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+10:13:30,ORD250721-0004,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:18:15,ORD250721-0006,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:21:2,ORD250721-0007,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:23:48,ORD250721-0005,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:27:18,402505058100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402505058100,0,,0,,0,,0,,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0
+11:35:4,402505147100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402505147100,0,,0,,0,,0,,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0
+11:40:55,102505093100,1,1,102505093100,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,2,2,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:42:25,ORD250721-0093,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:43:39,ORD250721-0092,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:49:2,602501228133,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501228133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:52:27,312505595180,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312505595180,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:54:34,602501117131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501117131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:57:42,602501987131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501987131,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:3:28,602501159132,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501159132,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:6:46,602501931130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501931130,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:9:47,602501171133,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501171133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:18:33,ORD250721-0099,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:19:55,ORD250721-0098,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:21:28,ORD250721-0100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:23:18,ORD250721-0117,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:24:56,ORD250721-0118,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:27:20,ORD250721-0119,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:35:40,ORD250721-0120,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:38:48,ORD250721-0133,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:41:7,ORD250721-0135,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:42:40,ORD250721-0134,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:44:39,ORD250721-0137,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:45:53,ORD250721-0136,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:51:6,502507217100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507217100,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:53:6,502507297100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507297100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:54:17,502507311100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507311100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:5:48,ORD250721-0170,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:8:4,ORD250721-0163,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:11:31,ORD250721-0171,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:13:0,ORD250721-0169,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:53:44,312506492101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506492101,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:57:55,ORD250721-0175,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:0:18,602501222132,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501222132,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:21:0,312506861100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506861100,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:24:43,ORD250721-0183,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:26:5,ORD250721-0184,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:27:6,ORD250721-0185,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:28:40,112506191000,1,0,,0,,1,112506191000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:33:30,312506828100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506828100,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-22.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-22.csv
new file mode 100644
index 0000000..498d8c9
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-22.csv
@@ -0,0 +1,26 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+11:0:44,ORD250722-0024,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
+11:8:14,ORD250722-0023,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
+11:18:32,ORD250722-0029,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,1
+11:26:30,ORD250722-0036,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:30:37,ORD250722-0033,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:34:34,ORD250722-0037,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:48:38,312505081180,1,0,,0,,0,,0,,0,,0,,0,,0,,14,312505156180/312505704180/312505909180/312505471180/312505114180/312505867180/312505081180/312505744180/312505533180/312505706180/312505087180/312505534180/312505912180/312505116180,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
+11:58:1,312505061180,1,0,,0,,0,,0,,0,,0,,0,,0,,14,312505705180/312505495180/312505061180/312505225180/312505756180/312505097180/312505093180/312505715180/312505127180/312505710180/312505923180/312505233180/312505731180/312505762180,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
+13:5:59,ORD250722-0038,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:9:51,ORD250722-0031,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0
+13:16:7,ORD250722-0047,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:25:1,112506173000,1,0,,0,,2,112506190000/112506173000,0,,0,,0,,0,,0,,0,,3,402505157100/402505114100/402505132100,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:10:57,ORD250722-0050,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
+15:36:31,ORD250722-0051,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:38:2,ORD250722-0053,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:38:38,ORD250722-0054,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:41:9,602501056111,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501056111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:42:49,602503138130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503138130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:43:54,602501404110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501404110,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:57:57,312506725100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506725100,0,,0,,0,,0,,0,,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:1:18,502507353100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507353100,1,602502483120,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:2:3,ORD250722-0061,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:5:14,312506870100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506870100,0,,0,,0,,0,,0,,0,,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:6:56,ORD250722-0063,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:9:26,ORD250722-0064,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-23.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-23.csv
new file mode 100644
index 0000000..53f58d7
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-23.csv
@@ -0,0 +1,17 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+9:57:7,202506005500,1,0,,3,202506019500/202506005500/202506013500,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:33:4,ORD250723-0004,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:38:43,502507296100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507296100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:47:46,502507174100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507174100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:53:1,ORD250723-0123,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+10:57:9,312506329101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506329101,0,,0,,0,,0,,0,,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:58:39,602503060130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503060130,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:0:3,602503157130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503157130,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:3:12,502506311100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506311100,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:5:10,602503089130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503089130,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:21:28,ORD250723-0137,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:49:10,402505092100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402505092100,0,,0,,1,432504027000,1,502506126100,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:4:11,ORD250723-0149,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:38:34,602412602120,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602412602120,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:40:49,ORD250723-0145,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:43:51,312506246101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506246101,0,,0,,0,,0,,0,,0,,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-24.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-24.csv
new file mode 100644
index 0000000..268c20e
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-24.csv
@@ -0,0 +1,23 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+10:44:7,ORD250724-0001,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,1
+11:15:54,602501296131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501296131,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:19:17,402505024100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402505024100,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:22:12,602501286133,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501286133,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:25:46,502506274100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506274100,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:30:54,502506239100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506239100,1,602501062111,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0
+11:33:52,602501224133,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501224133,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:38:0,402505072100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402505072100,0,,0,,0,,0,,0,,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0
+11:53:27,602507045130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,10,602507130130/602507249130/602507045130/602507083130/602507080130/602507286130/602507140130/602507124130/602507190130/602507213130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:19:45,202506008500,1,0,,2,202506008500/202506016500,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,5,602507267130/602507128130/602507084130/602507248130/602507058130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:36:42,302504126150,1,0,,0,,0,,0,,0,,0,,0,,0,,10,302504334150/302505909150/302505982150/302505961150/302504126150/302504536150/302504496150/302504325150/302504329150/302504341150,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
+16:0:8,602412039120,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,3,602412039120/602412172120/602412233120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
+16:7:15,ORD250724-0051,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
+16:16:44,502507292100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507292100,0,,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:23:57,602501505120,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501505120,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:27:25,602501792110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501792110,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:29:21,112506194000,1,0,,0,,1,112506194000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:7:51,ORD250724-0083,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:10:4,312506973100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506973100,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:13:58,502507214100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507214100,0,,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:16:27,ORD250724-0088,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:20:16,ORD250724-0086,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,50,100,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-25.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-25.csv
new file mode 100644
index 0000000..ecb2210
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-25.csv
@@ -0,0 +1,25 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+10:27:5,ORD250725-0135,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
+11:36:22,602501140132,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501140132,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:39:31,ORD250725-0134,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:42:12,ORD250725-0156,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:45:29,502507211100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507211100,1,602501251131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:48:35,602501337133,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501337133,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:49:59,ORD250725-0145,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:55:19,602501163133,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501163133,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:48:45,312504058160,1,0,,0,,0,,0,,0,,0,,0,,0,,16,312506014120/312506010120/312506009120/312506001120/312506017120/312506012120/312506006120/312506016120/312506005120/312506004120/312506002120/312506003120/312506015120/312506008120/312506013120/312506011120,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:14:15,ORD250725-0183,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:16:28,ORD250725-0182,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:18:29,ORD250725-0181,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:21:46,ORD250725-0180,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:24:38,ORD250725-0179,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:26:49,ORD250725-0177,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:29:21,ORD250725-0176,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:32:18,ORD250725-0175,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:34:4,ORD250725-0170,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:35:55,ORD250725-0184,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:40:43,602501932132,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501932132,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:59:26,ORD250725-0203,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:0:20,ORD250725-0202,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:1:22,ORD250725-0201,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:2:15,ORD250725-0200,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-28.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-28.csv
new file mode 100644
index 0000000..74b18e6
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-28.csv
@@ -0,0 +1,69 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+10:15:29,312505102180,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312505102180,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:22:54,312505870180,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312505870180,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:28:16,312505908180,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312505908180,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:39:53,602503545120,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602507384130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:1:42,502408049180,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,3,502408657180/502408049180/502408623180,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0
+11:51:44,ORD250728-0017,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:54:49,ORD250728-0019,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+12:0:24,ORD250728-0018,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:34:40,312506716100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506716100,0,,0,,0,,0,,1,502507344100,0,,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0
+13:38:30,312506758100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506758100,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:42:8,312506710100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506710100,0,,0,,0,,0,,0,,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:46:21,312507187101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507187101,0,,0,,0,,0,,0,,0,,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0
+13:50:47,312507344101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507344101,0,,0,,0,,0,,0,,0,,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0
+13:55:18,312507013101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507013101,0,,0,,0,,0,,0,,0,,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0
+13:59:34,312507948100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507948100,0,,0,,0,,0,,0,,0,,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0
+14:3:55,312507061101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507061101,0,,0,,0,,0,,0,,0,,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0
+14:8:13,312507115101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507115101,0,,0,,0,,0,,0,,0,,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0
+14:11:42,312507269101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507269101,0,,0,,0,,0,,0,,0,,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0
+14:15:3,312507343101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507343101,0,,0,,0,,0,,0,,0,,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0
+14:18:44,312505099180,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312505099180,0,,0,,0,,0,,0,,0,,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0
+14:24:51,602503621110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503621110,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0
+14:38:14,ORD250728-0145,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+14:39:40,ORD250728-0183,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+14:42:2,ORD250728-0182,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+14:43:48,ORD250728-0181,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+14:45:35,ORD250728-0180,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+14:46:40,ORD250728-0179,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+14:47:56,ORD250728-0178,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+14:49:19,ORD250728-0177,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+14:50:40,ORD250728-0176,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+14:52:7,ORD250728-0175,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+14:54:4,ORD250728-0174,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+14:55:58,ORD250728-0173,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+14:57:23,ORD250728-0172,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+14:59:11,ORD250728-0171,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:14:46,ORD250728-0170,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:16:34,ORD250728-0169,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:18:0,ORD250728-0168,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:19:27,ORD250728-0146,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:23:52,ORD250728-0105,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:24:58,ORD250728-0150,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:27:7,ORD250728-0149,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:28:25,ORD250728-0148,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:30:35,ORD250728-0103,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:31:58,ORD250728-0104,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:33:31,ORD250728-0147,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:48:2,ORD250728-0274,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:49:30,ORD250728-0273,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:50:55,ORD250728-0272,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:52:22,ORD250728-0271,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:53:53,ORD250728-0270,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:56:48,ORD250728-0269,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:58:13,ORD250728-0268,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:59:46,ORD250728-0267,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:1:16,ORD250728-0266,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:2:31,ORD250728-0265,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:3:53,ORD250728-0264,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:15:19,ORD250728-0315,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:19:56,ORD250728-0316,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:22:18,ORD250728-0317,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:24:28,ORD250728-0318,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:26:43,ORD250728-0319,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:30:43,ORD250728-0320,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+17:8:56,ORD250728-0338,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:10:15,ORD250728-0336,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:12:4,ORD250728-0333,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:16:26,602503763110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503763110,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:22:50,312505091180,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312505091180,0,,0,,0,,0,,0,,0,,2,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-29.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-29.csv
new file mode 100644
index 0000000..11b4284
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-29.csv
@@ -0,0 +1,26 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+11:15:47,ORD250729-0021,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:21:5,602507040131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602507040131,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
+11:23:54,602507062131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602507062131,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
+11:26:52,ORD250729-0024,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:29:51,602507776130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602507776130,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
+11:36:52,502507157100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507157100,1,602507019130,2,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0
+11:39:38,432504007000,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,432504007000,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:44:54,502507150100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507150100,1,602507853130,2,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0
+11:49:22,ORD250729-0043,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:52:41,ORD250729-0044,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:6:11,312506335101,1,0,,0,,0,,0,,0,,0,,0,,0,,10,312506443101/312506555101/312506463101/312506474101/312506521101/312506553101/312506335101/312506845100/312506757100/312506759100,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:10:55,312506050101,1,0,,0,,0,,0,,0,,0,,0,,0,,10,312506767100/312506831100/312506684100/312506768100/312506709100/312506362101/312506798100/312506977100/312506795100/312506050101,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:16:31,312506025101,1,0,,0,,0,,0,,0,,0,,0,,0,,10,312506432101/312507275101/312506776100/312506025101/312506465101/312506682100/312506818100/312506756100/312506867100/312506485101,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:54:44,602507017131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,10,602507775130/602507647130/602507751130/602507821130/602507017131/602507079131/602507042131/602507883130/602507076131/602507952130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:59:17,602507022130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,10,602507951130/602507958130/602507075131/602507917130/602507037131/602507887130/602507300130/602507793130/602507816130/602507022130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:11:14,602507020131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,10,602507636130/602507920130/602507859130/602507020131/602507760130/602507860130/602507974130/602507662130/602507711130/602507885130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:19:19,602507031131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,10,602507804130/602507720130/602507645130/602507056131/602507757130/602507622130/602507827130/602507031131/602507039131/602507708130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:56:18,ORD250729-0070,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:58:19,ORD250729-0071,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:59:56,ORD250729-0072,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:30:9,ORD250729-0002,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
+15:33:13,ORD250729-0003,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:35:53,602507671130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602507671130,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
+16:38:25,602507010131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602507010131,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
+16:41:7,312507117101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507117101,0,,0,,0,,0,,0,,0,,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-3.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-3.csv
new file mode 100644
index 0000000..477a4f5
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-3.csv
@@ -0,0 +1,9 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+14:10:5,502506103100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,10,502506214100/502506204100/502506239100/502506274100/502506105100/502506311100/502506103100/502506205100/502506307100/502506126100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:19:39,ORD250703-0057,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0
+14:30:34,312410024101,1,0,,0,,0,,0,,0,,0,,0,,0,,10,312506237101/312506306101/312410024101/312506312100/312506239101/312506329101/312506238101/312506554100/312506468100/312506246101,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:34:27,602503060130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,10,602503157130/602503185130/602503162130/602503137130/602503209130/602503092130/602503138130/602503060130/602503077130/602503089130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:40:30,312505824180,1,0,,0,,0,,0,,0,,0,,0,,0,,2,312505889180/312505824180,0,,0,,0,,0,,2,502408797180/502408642180,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0
+15:44:45,112506065000,1,0,,0,,2,112506065000/112506163000,0,,1,122506009000,0,,1,132503016000,0,,0,,0,,1,412506024000,1,422506004000,1,432504027000,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:49:54,102502002100,1,1,102502002100,0,,0,,0,,0,,0,,0,,0,,0,,1,402505157100,0,,0,,0,,0,,2,602501046111/602501062111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:15:58,ORD250703-0081,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-30.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-30.csv
new file mode 100644
index 0000000..fa69c60
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-30.csv
@@ -0,0 +1,17 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+10:4:51,ORD250730-0008,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:11:44,ORD250730-0007,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:23:1,602503627110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,6,602503755111/602503857110/602503627110/602503821110/602503692111/602503744111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:28:27,602503516120,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,6,602503516120/602503704120/602503602120/602503641120/602503591120/602503576120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:51:33,602503613110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,5,602503904110/602503861110/602503867110/602503613110/602503740110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:55:29,602507006131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,6,602507006131/602507029131/602507710130/602507748130/602507986130/602507913130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:36:9,602507045131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,10,602507882130/602507045131/602507518130/602507670130/602507769130/602507806130/602507669130/602507932130/602507061131/602507060131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:52:55,602507046131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,10,602507055131/602507046131/602507613130/602507973130/602507614130/602507943130/602507995130/602507939130/602507994130/602507447130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:3:15,602507812130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602507812130,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
+16:9:54,102502003100,1,1,102502003100,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
+16:45:15,602507989130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602507989130,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
+16:47:52,602503589111,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503589111,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
+16:50:15,ORD250730-0261,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:51:33,ORD250730-0260,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:53:20,112506171000,1,0,,0,,1,112506171000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:55:53,ORD250730-0263,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-31.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-31.csv
new file mode 100644
index 0000000..1435ac7
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-31.csv
@@ -0,0 +1,33 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+10:29:46,ORD250731-0051,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:48:6,312507232101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507232101,0,,0,,0,,0,,0,,0,,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
+10:53:43,502507103100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507103100,1,602503875110,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0
+11:19:55,ORD250731-0065,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+11:23:15,ORD250731-0077,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+11:25:12,ORD250731-0078,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+11:27:36,602507005131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602507005131,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
+11:30:11,602503629110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503629110,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0
+13:19:12,502507242100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507242100,1,602503702120,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0
+16:3:44,ORD250731-0126,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:6:43,ORD250731-0125,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:12:33,ORD250731-0124,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
+16:14:26,ORD250731-0110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:18:42,ORD250731-0063,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0
+17:26:49,212507008000,1,0,,0,,0,,1,212507008000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+18:6:10,ORD250731-0279,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+18:7:40,ORD250731-0283,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+18:12:24,312506729100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506729100,0,,0,,0,,0,,0,,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+18:14:11,602503840110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503840110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+18:16:5,502507376100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507376100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+18:16:52,602503651111,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503651111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+18:18:28,ORD250731-0093,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+18:23:30,ORD250731-0134,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,0,0,0,0,0,0,0,1
+18:34:33,ORD250731-0135,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,1
+18:43:31,ORD250731-0154,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,1
+18:45:54,502507304100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507304100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+18:49:59,ORD250731-0161,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,1
+18:57:58,ORD250731-0162,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,12,0,0,0,2,0,0,0,0,0,0,0,0,1
+19:3:39,602503117130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503117130,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+19:7:49,ORD250731-0167,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,1
+19:15:25,312507191101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507191101,0,,0,,0,,0,,0,,0,,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+19:22:52,ORD250731-0136,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,1
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-4.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-4.csv
new file mode 100644
index 0000000..b619c00
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-4.csv
@@ -0,0 +1,10 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+14:22:4,ORD250704-0029,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+14:26:55,ORD250704-0020,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+14:33:22,ORD250704-0041,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:36:17,ORD250704-0039,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:4:30,ORD250704-0057,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+16:5:20,ORD250704-0078,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+16:8:11,ORD250704-0054,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:10:5,ORD250704-0053,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:13:5,ORD250704-0055,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-7.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-7.csv
new file mode 100644
index 0000000..9b8f7ed
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-7.csv
@@ -0,0 +1,80 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+11:30:47,ORD250707-0129,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:31:58,ORD250707-0126,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:35:36,ORD250707-0125,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:36:27,ORD250707-0124,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:37:14,ORD250707-0123,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:38:3,ORD250707-0122,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:39:41,ORD250707-0335,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:42:32,ORD250707-0131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:43:14,ORD250707-0130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:45:3,ORD250707-0114,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+11:45:43,ORD250707-0113,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+11:50:1,ORD250707-0108,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:2:34,ORD250707-0454,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0
+13:9:55,ORD250707-0483,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0
+13:11:17,ORD250707-0484,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0
+13:15:1,ORD250707-0485,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0
+13:16:49,ORD250707-0486,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0
+13:19:13,ORD250707-0487,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0
+13:24:2,ORD250707-0488,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0
+13:27:5,402505021100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402505021100,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+13:36:50,402502125100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402502125100,0,,0,,0,,1,502506007100,0,,2,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0
+13:43:53,ORD250707-0449,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:45:35,ORD250707-0450,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:46:40,ORD250707-0451,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:47:38,ORD250707-0452,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:49:18,ORD250707-0453,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:50:18,ORD250707-0498,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:51:16,ORD250707-0499,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+13:53:4,ORD250707-0276,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:53:43,ORD250707-0277,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:0:25,ORD250707-0308,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:2:29,ORD250707-0309,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:4:26,ORD250707-0310,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:6:27,ORD250707-0311,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:8:10,ORD250707-0312,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:14:58,ORD250707-0313,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:17:25,ORD250707-0314,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:19:19,ORD250707-0315,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:21:14,ORD250707-0316,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:25:0,ORD250707-0317,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:26:37,ORD250707-0500,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:29:13,ORD250707-0318,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:31:21,ORD250707-0319,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:33:47,ORD250707-0320,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:36:34,ORD250707-0321,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:38:33,ORD250707-0322,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:42:11,ORD250707-0323,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:43:54,ORD250707-0324,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:46:15,ORD250707-0325,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:50:41,ORD250707-0326,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:52:48,ORD250707-0327,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:55:26,ORD250707-0328,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:58:52,ORD250707-0329,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:2:35,ORD250707-0330,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:3:53,ORD250707-0331,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:15:22,ORD250707-0332,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:17:38,ORD250707-0446,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:18:21,ORD250707-0447,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:20:18,ORD250707-0282,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0
+15:23:23,ORD250707-0283,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,1,0,0,0
+15:24:49,ORD250707-0504,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:34:6,402502148100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402502148100,0,,0,,0,,1,502506027100,0,,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0
+15:48:50,402503009100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402503009100,0,,0,,0,,1,502506057100,0,,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0
+15:55:34,502506043100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506043100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+15:58:59,502506062100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506062100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+16:0:47,502506095100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506095100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+16:2:15,502506039100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506039100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+16:3:38,502506081100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506081100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+16:15:36,402502164100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402502164100,0,,0,,0,,1,502506099100,0,,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0
+16:19:28,402502188100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402502188100,0,,0,,0,,1,502506030100,0,,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0
+16:22:11,402502122100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402502122100,0,,0,,0,,1,502506025100,0,,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0
+16:25:15,402502147100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402502147100,0,,0,,0,,1,502506067100,0,,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0
+16:29:47,502506048100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506048100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0
+16:32:17,ORD250707-0506,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+16:33:28,ORD250707-0507,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+16:35:0,ORD250707-0508,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:46:57,ORD250707-0136,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:23:52,602507003110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602507003110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:25:7,502506412100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506412100,1,602507002110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-8.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-8.csv
new file mode 100644
index 0000000..247e981
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-8.csv
@@ -0,0 +1,11 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+10:44:21,602501933110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501933110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+10:47:57,602503220130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503220130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+10:51:38,602503054130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503054130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+10:54:31,602503049130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503049130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+10:58:59,602503047130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503047130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+11:6:4,502506045100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506045100,0,,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0
+11:12:53,602501173110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602501173110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0
+15:15:39,102502074100,1,1,102502074100,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0
+15:17:42,ORD250708-0046,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0
+16:34:1,ORD250708-0023,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-9.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-9.csv
new file mode 100644
index 0000000..09aaaa2
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-7-9.csv
@@ -0,0 +1,8 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+10:24:13,302506046150,1,0,,0,,0,,0,,0,,0,,0,,0,,1,302506046150,0,,0,,0,,0,,0,,0,,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:31:56,502506046100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506046100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:35:6,502506033100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506033100,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:50:35,ORD250709-0043,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:53:47,ORD250709-0044,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:12:16,312505015180,1,0,,0,,0,,0,,0,,0,,0,,0,,10,312505701180/312505409180/312505410180/312505582180/312505280180/312505015180/312505513180/312505371180/312505210180/312505365180,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:17:10,312505008180,1,0,,0,,0,,0,,0,,0,,0,,0,,10,312505008180/312505404180/312505372180/312505698180/312505822180/312505885180/312505828180/312505298180/312505814180/312505036180,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-8-1.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-8-1.csv
new file mode 100644
index 0000000..ae2fff2
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-8-1.csv
@@ -0,0 +1,30 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+10:30:10,ORD250801-0023,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:32:25,312507341101,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507341101,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:35:14,ORD250801-0025,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:41:15,602503923130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503923130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:47:24,312505656180,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312505656180,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:29:11,ORD250801-0039,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,1
+11:34:20,ORD250801-0040,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,1
+11:41:37,ORD250801-0041,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,12,0,0,0,0,0,0,0,0,9,0,0,0,1,0,0,0,0,0,0,0,0,1
+11:45:39,ORD250801-0050,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:53:26,ORD250801-0042,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,12,0,0,0,2,0,0,0,0,0,0,0,0,1
+11:56:47,ORD250801-0051,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,1
+11:59:46,ORD250801-0052,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,1
+12:54:4,ORD250801-0053,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,1
+12:57:5,ORD250801-0049,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:7:43,ORD250801-0063,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:10:52,502507380100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507380100,0,,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:15:29,502507328100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507328100,1,602503715120,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:19:45,602503219130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503219130,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:7:34,ORD250801-0060,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:9:32,ORD250801-0059,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:12:43,ORD250801-0070,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:14:43,ORD250801-0071,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:18:6,502507181100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507181100,0,,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:22:7,502507003100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507003100,1,602503590111,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:26:8,312506692100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506692100,0,,0,,0,,0,,0,,0,,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:28:26,ORD250801-0058,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:32:9,ORD250801-0057,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:35:41,602503071131,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503071131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:43:11,602507969130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602507969130,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-8-4.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-8-4.csv
new file mode 100644
index 0000000..e6d0123
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-8-4.csv
@@ -0,0 +1,65 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+10:17:15,ORD250804-0019,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0
+10:59:47,602503723120,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503723120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:8:51,ORD250804-0015,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:13:4,ORD250804-0017,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:19:9,602503849110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503849110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:7:15,ORD250804-0097,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:9:16,ORD250804-0098,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:11:14,ORD250804-0099,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:12:52,ORD250804-0100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:14:18,ORD250804-0101,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:15:36,ORD250804-0102,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:18:26,ORD250804-0103,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:20:27,ORD250804-0104,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:22:25,ORD250804-0105,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:23:33,ORD250804-0106,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:24:53,ORD250804-0107,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:26:54,602503328130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503328130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:28:52,602503807110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503807110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:32:36,602503183130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503183130,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:34:37,ORD250804-0111,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:36:56,ORD250804-0112,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:39:5,ORD250804-0113,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:46:22,312505393180,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312505393180,0,,0,,0,,0,,0,,0,,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:51:34,312506972100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506972100,0,,0,,0,,0,,0,,0,,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:56:26,502507355100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507355100,1,602503208130,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:58:1,ORD250804-0150,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:59:37,ORD250804-0149,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:1:46,112506184000,1,0,,0,,1,112506184000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:6:15,ORD250804-0145,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:7:33,ORD250804-0146,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:14:40,502507207100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507207100,1,602503229130,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:24:10,402505027100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402505027100,0,,0,,0,,1,502507236100,0,,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:28:10,ORD250804-0072,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+14:30:37,312506363100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312506363100,0,,0,,0,,0,,0,,0,,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:33:42,112506170000,1,0,,0,,1,112506170000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:42:54,312505779180,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312505779180,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+14:48:25,ORD250804-0021,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+14:55:54,ORD250804-0022,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:13:30,ORD250804-0023,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:15:1,ORD250804-0024,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+15:17:5,ORD250804-0025,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:18:38,ORD250804-0026,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:33:30,502506004100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502506004100,1,602503808110,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:52:5,602507975130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602507975130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+15:57:50,602503035130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503035130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:5:26,502507196100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507196100,1,602503679120,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:10:39,502507360100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507360100,1,602507763130,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:17:57,ORD250804-0061,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:21:9,ORD250804-0062,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:23:14,ORD250804-0063,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:24:45,ORD250804-0064,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:26:56,ORD250804-0065,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:27:57,ORD250804-0070,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+16:34:32,602503595110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503595110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:41:37,602503236130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503236130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:44:36,602503058130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503058130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:47:11,602503143130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503143130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:55:42,602503156130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503156130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+16:58:6,602503275130,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503275130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:4:26,ORD250804-0319,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:6:16,ORD250804-0321,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:7:40,112506172000,1,0,,0,,1,112506172000,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:12:10,602503574111,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503574111,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+17:22:50,102505125100,1,1,102505125100,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-8-5.csv b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-8-5.csv
new file mode 100644
index 0000000..b8c1aa9
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/LogDataPack/2025-8-5.csv
@@ -0,0 +1,25 @@
+PackingTime,PackingCode,Packing_Count,PRO_SET,PRO_SET_Serial,LUX_SET,LUX_SET_Serial,PRO_FACE,PRO_FACE_Serial,LUX_FACE,LUX_FACE_Serial,PRO_EYE,PRO_EYE_Serial,LUX_EYE,LUX_EYE_Serial,PRO_BODY,PRO_BODY_Serial,LUX_BODY,LUX_BODY_Serial,MAXIMUM,MAXIMUM_Serial,ALPHA_SET_Cnt,ALPHA_SET_Serial,ALPHA_FACE_Cnt,ALPHA_FACE_Serial,ALPHA_EYE_Cnt,ALPHA_EYE_Serial,ALPHA_Body_Cnt,ALPHA_Body_Serial,ALTO_Cnt,ALTO_Serial,Effect_Cnt,Effect_Serial,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,충전_케이블,토너,가죽케이스(P_Black),가죽케이스(P_Beige),가죽케이스(P_Red),가죽케이스(P_Pink),가죽케이스(M_Black),가죽케이스(M_Apr),가죽케이스(M_Mint),가죽케이스(M_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(M_Purple),가죽케이스(P_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,모닝샷,나이트샷,우디,신년쇼핑백,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+10:5:42,ORD250805-0033,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:10:48,ORD250805-0035,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:14:23,ORD250805-0036,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:16:44,ORD250805-0034,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:26:20,ORD250805-0030,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:34:45,402505025100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402505025100,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:41:32,402505020100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402505020100,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:46:1,402505013100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,402505013100,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:54:33,602503748110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503748110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+10:59:27,602503898110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503898110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:11:12,602503836110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503836110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:15:34,602503610110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503610110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:19:53,602503855110,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,602503855110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:33:25,ORD250805-0040,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:41:10,502507293100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507293100,1,602507050131,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:48:16,ORD250805-0061,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+11:52:14,ORD250805-0065,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:7:26,ORD250805-0064,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:10:11,ORD250805-0063,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:13:6,ORD250805-0062,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:15:37,ORD250805-0048,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:18:14,ORD250805-0049,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0
+13:27:56,312507325100,1,0,,0,,0,,0,,0,,0,,0,,0,,1,312507325100,0,,0,,0,,0,,0,,0,,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0
+13:36:10,502507014100,1,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,0,,1,502507014100,1,602507881130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Bcl.AsyncInterfaces.dll b/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Bcl.AsyncInterfaces.dll
new file mode 100644
index 0000000..6031ba1
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Bcl.AsyncInterfaces.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Bcl.AsyncInterfaces.xml b/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Bcl.AsyncInterfaces.xml
new file mode 100644
index 0000000..e75808a
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Bcl.AsyncInterfaces.xml
@@ -0,0 +1,417 @@
+
+
+
+ Microsoft.Bcl.AsyncInterfaces
+
+
+
+ Provides the core logic for implementing a manual-reset or .
+
+
+
+
+ The callback to invoke when the operation completes if was called before the operation completed,
+ or if the operation completed before a callback was supplied,
+ or null if a callback hasn't yet been provided and the operation hasn't yet completed.
+
+
+
+ State to pass to .
+
+
+ to flow to the callback, or null if no flowing is required.
+
+
+
+ A "captured" or with which to invoke the callback,
+ or null if no special context is required.
+
+
+
+ Whether the current operation has completed.
+
+
+ The result with which the operation succeeded, or the default value if it hasn't yet completed or failed.
+
+
+ The exception with which the operation failed, or null if it hasn't yet completed or completed successfully.
+
+
+ The current version of this value, used to help prevent misuse.
+
+
+ Gets or sets whether to force continuations to run asynchronously.
+ Continuations may run asynchronously if this is false, but they'll never run synchronously if this is true.
+
+
+ Resets to prepare for the next operation.
+
+
+ Completes with a successful result.
+ The result.
+
+
+ Complets with an error.
+
+
+
+ Gets the operation version.
+
+
+ Gets the status of the operation.
+ Opaque value that was provided to the 's constructor.
+
+
+ Gets the result of the operation.
+ Opaque value that was provided to the 's constructor.
+
+
+ Schedules the continuation action for this operation.
+ The continuation to invoke when the operation has completed.
+ The state object to pass to when it's invoked.
+ Opaque value that was provided to the 's constructor.
+ The flags describing the behavior of the continuation.
+
+
+ Ensures that the specified token matches the current version.
+ The token supplied by .
+
+
+ Signals that the operation has completed. Invoked after the result or error has been set.
+
+
+
+ Invokes the continuation with the appropriate captured context / scheduler.
+ This assumes that if is not null we're already
+ running within that .
+
+
+
+ Provides a set of static methods for configuring -related behaviors on asynchronous enumerables and disposables.
+
+
+ Configures how awaits on the tasks returned from an async disposable will be performed.
+ The source async disposable.
+ Whether to capture and marshal back to the current context.
+ The configured async disposable.
+
+
+ Configures how awaits on the tasks returned from an async iteration will be performed.
+ The type of the objects being iterated.
+ The source enumerable being iterated.
+ Whether to capture and marshal back to the current context.
+ The configured enumerable.
+
+
+ Sets the to be passed to when iterating.
+ The type of the objects being iterated.
+ The source enumerable being iterated.
+ The to use.
+ The configured enumerable.
+
+
+ Represents a builder for asynchronous iterators.
+
+
+ Creates an instance of the struct.
+ The initialized instance.
+
+
+ Invokes on the state machine while guarding the .
+ The type of the state machine.
+ The state machine instance, passed by reference.
+
+
+ Schedules the state machine to proceed to the next action when the specified awaiter completes.
+ The type of the awaiter.
+ The type of the state machine.
+ The awaiter.
+ The state machine.
+
+
+ Schedules the state machine to proceed to the next action when the specified awaiter completes.
+ The type of the awaiter.
+ The type of the state machine.
+ The awaiter.
+ The state machine.
+
+
+ Marks iteration as being completed, whether successfully or otherwise.
+
+
+ Gets an object that may be used to uniquely identify this builder to the debugger.
+
+
+ Indicates whether a method is an asynchronous iterator.
+
+
+ Initializes a new instance of the class.
+ The type object for the underlying state machine type that's used to implement a state machine method.
+
+
+ Provides a type that can be used to configure how awaits on an are performed.
+
+
+ Asynchronously releases the unmanaged resources used by the .
+ A task that represents the asynchronous dispose operation.
+
+
+ Provides an awaitable async enumerable that enables cancelable iteration and configured awaits.
+
+
+ Configures how awaits on the tasks returned from an async iteration will be performed.
+ Whether to capture and marshal back to the current context.
+ The configured enumerable.
+ This will replace any previous value set by for this iteration.
+
+
+ Sets the to be passed to when iterating.
+ The to use.
+ The configured enumerable.
+ This will replace any previous set by for this iteration.
+
+
+ Returns an enumerator that iterates asynchronously through collections that enables cancelable iteration and configured awaits.
+ An enumerator for the class.
+
+
+ Provides an awaitable async enumerator that enables cancelable iteration and configured awaits.
+
+
+ Advances the enumerator asynchronously to the next element of the collection.
+
+ A that will complete with a result of true
+ if the enumerator was successfully advanced to the next element, or false if the enumerator has
+ passed the end of the collection.
+
+
+
+ Gets the element in the collection at the current position of the enumerator.
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or
+ resetting unmanaged resources asynchronously.
+
+
+
+ Allows users of async-enumerable methods to mark the parameter that should receive the cancellation token value from .
+
+
+ Initializes a new instance of the class.
+
+
+
+ Attribute used to indicate a source generator should create a function for marshalling
+ arguments instead of relying on the runtime to generate an equivalent marshalling function at run-time.
+
+
+ This attribute is meaningless if the source generator associated with it is not enabled.
+ The current built-in source generator only supports C# and only supplies an implementation when
+ applied to static, partial, non-generic methods.
+
+
+
+
+ Initializes a new instance of the .
+
+ Name of the library containing the import.
+
+
+
+ Gets the name of the library containing the import.
+
+
+
+
+ Gets or sets the name of the entry point to be called.
+
+
+
+
+ Gets or sets how to marshal string arguments to the method.
+
+
+ If this field is set to a value other than ,
+ must not be specified.
+
+
+
+
+ Gets or sets the used to control how string arguments to the method are marshalled.
+
+
+ If this field is specified, must not be specified
+ or must be set to .
+
+
+
+
+ Gets or sets whether the callee sets an error (SetLastError on Windows or errno
+ on other platforms) before returning from the attributed method.
+
+
+
+
+ Specifies how strings should be marshalled for generated p/invokes
+
+
+
+
+ Indicates the user is suppling a specific marshaller in .
+
+
+
+
+ Use the platform-provided UTF-8 marshaller.
+
+
+
+
+ Use the platform-provided UTF-16 marshaller.
+
+
+
+ Exposes an enumerator that provides asynchronous iteration over values of a specified type.
+ The type of values to enumerate.
+
+
+ Returns an enumerator that iterates asynchronously through the collection.
+ A that may be used to cancel the asynchronous iteration.
+ An enumerator that can be used to iterate asynchronously through the collection.
+
+
+ Supports a simple asynchronous iteration over a generic collection.
+ The type of objects to enumerate.
+
+
+ Advances the enumerator asynchronously to the next element of the collection.
+
+ A that will complete with a result of true if the enumerator
+ was successfully advanced to the next element, or false if the enumerator has passed the end
+ of the collection.
+
+
+
+ Gets the element in the collection at the current position of the enumerator.
+
+
+ Provides a mechanism for releasing unmanaged resources asynchronously.
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or
+ resetting unmanaged resources asynchronously.
+
+
+
+ Specifies that null is allowed as an input even if the corresponding type disallows it.
+
+
+ Specifies that null is disallowed as an input even if the corresponding type allows it.
+
+
+ Specifies that an output may be null even if the corresponding type disallows it.
+
+
+ Specifies that an output will not be null even if the corresponding type allows it. Specifies that an input argument was not null when the call returns.
+
+
+ Specifies that when a method returns , the parameter may be null even if the corresponding type disallows it.
+
+
+ Initializes the attribute with the specified return value condition.
+
+ The return value condition. If the method returns this value, the associated parameter may be null.
+
+
+
+ Gets the return value condition.
+
+
+ Specifies that when a method returns , the parameter will not be null even if the corresponding type allows it.
+
+
+ Initializes the attribute with the specified return value condition.
+
+ The return value condition. If the method returns this value, the associated parameter will not be null.
+
+
+
+ Gets the return value condition.
+
+
+ Specifies that the output will be non-null if the named parameter is non-null.
+
+
+ Initializes the attribute with the associated parameter name.
+
+ The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null.
+
+
+
+ Gets the associated parameter name.
+
+
+ Applied to a method that will never return under any circumstance.
+
+
+ Specifies that the method will not return if the associated Boolean parameter is passed the specified value.
+
+
+ Initializes the attribute with the specified parameter value.
+
+ The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to
+ the associated parameter matches this value.
+
+
+
+ Gets the condition parameter value.
+
+
+ Specifies that the method or property will ensure that the listed field and property members have not-null values.
+
+
+ Initializes the attribute with a field or property member.
+
+ The field or property member that is promised to be not-null.
+
+
+
+ Initializes the attribute with the list of field and property members.
+
+ The list of field and property members that are promised to be not-null.
+
+
+
+ Gets field or property member names.
+
+
+ Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition.
+
+
+ Initializes the attribute with the specified return value condition and a field or property member.
+
+ The return value condition. If the method returns this value, the associated parameter will not be null.
+
+
+ The field or property member that is promised to be not-null.
+
+
+
+ Initializes the attribute with the specified return value condition and list of field and property members.
+
+ The return value condition. If the method returns this value, the associated parameter will not be null.
+
+
+ The list of field and property members that are promised to be not-null.
+
+
+
+ Gets the return value condition.
+
+
+ Gets field or property member names.
+
+
+
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Bcl.HashCode.dll b/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Bcl.HashCode.dll
new file mode 100644
index 0000000..3f97f6e
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Bcl.HashCode.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Bcl.HashCode.xml b/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Bcl.HashCode.xml
new file mode 100644
index 0000000..d5c6c3d
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Bcl.HashCode.xml
@@ -0,0 +1,34 @@
+
+
+
+ Microsoft.Bcl.HashCode
+
+
+
+
+ Rotates the specified value left by the specified number of bits.
+ Similar in behavior to the x86 instruction ROL.
+
+ The value to rotate.
+ The number of bits to rotate by.
+ Any value outside the range [0..31] is treated as congruent mod 32.
+ The rotated value.
+
+
+
+ Rotates the specified value left by the specified number of bits.
+ Similar in behavior to the x86 instruction ROL.
+
+ The value to rotate.
+ The number of bits to rotate by.
+ Any value outside the range [0..63] is treated as congruent mod 64.
+ The rotated value.
+
+
+ HashCode is a mutable struct and should not be compared with other HashCodes.
+
+
+ HashCode is a mutable struct and should not be compared with other HashCodes. Use ToHashCode to retrieve the computed hash code.
+
+
+
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Extensions.DependencyInjection.Abstractions.dll
new file mode 100644
index 0000000..3298f8d
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Extensions.DependencyInjection.Abstractions.xml b/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Extensions.DependencyInjection.Abstractions.xml
new file mode 100644
index 0000000..ca535c8
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Extensions.DependencyInjection.Abstractions.xml
@@ -0,0 +1,2515 @@
+
+
+
+ Microsoft.Extensions.DependencyInjection.Abstractions
+
+
+
+
+ Helper code for the various activator services.
+
+
+
+
+ Instantiate a type with constructor arguments provided directly and/or from an .
+
+ The service provider used to resolve dependencies
+ The type to activate
+ Constructor arguments not provided by the .
+ An activated object of type instanceType
+
+
+
+ Create a delegate that will instantiate a type with constructor arguments provided directly
+ and/or from an .
+
+ The type to activate
+
+ The types of objects, in order, that will be passed to the returned function as its second parameter
+
+
+ A factory that will instantiate instanceType using an
+ and an argument array containing objects matching the types defined in argumentTypes
+
+
+
+
+ Create a delegate that will instantiate a type with constructor arguments provided directly
+ and/or from an .
+
+ The type to activate
+
+ The types of objects, in order, that will be passed to the returned function as its second parameter
+
+
+ A factory that will instantiate type T using an
+ and an argument array containing objects matching the types defined in argumentTypes
+
+
+
+
+ Instantiate a type with constructor arguments provided directly and/or from an .
+
+ The type to activate
+ The service provider used to resolve dependencies
+ Constructor arguments not provided by the .
+ An activated object of type T
+
+
+
+ Retrieve an instance of the given type from the service provider. If one is not found then instantiate it directly.
+
+ The type of the service
+ The service provider used to resolve dependencies
+ The resolved service or created instance
+
+
+
+ Retrieve an instance of the given type from the service provider. If one is not found then instantiate it directly.
+
+ The service provider
+ The type of the service
+ The resolved service or created instance
+
+
+
+ Marks the constructor to be used when activating type using .
+
+
+
+
+ An implementation that implements .
+
+
+
+
+ Initializes a new instance of the struct.
+ Wraps an instance of .
+
+ The instance to wrap.
+
+
+
+
+
+
+
+
+
+
+
+
+ Extension methods for adding and removing services to an .
+
+
+
+
+ Adds the specified to the .
+
+ The .
+ The to add.
+ A reference to the current instance of .
+
+
+
+ Adds a sequence of to the .
+
+ The .
+ The s to add.
+ A reference to the current instance of .
+
+
+
+ Adds the specified to the if the
+ service type hasn't already been registered.
+
+ The .
+ The to add.
+
+
+
+ Adds the specified to the if the
+ service type hasn't already been registered.
+
+ The .
+ The s to add.
+
+
+
+ Adds the specified as a service
+ to the if the service type hasn't already been registered.
+
+ The .
+ The type of the service to register.
+
+
+
+ Adds the specified as a service
+ with the implementation
+ to the if the service type hasn't already been registered.
+
+ The .
+ The type of the service to register.
+ The implementation type of the service.
+
+
+
+ Adds the specified as a service
+ using the factory specified in
+ to the if the service type hasn't already been registered.
+
+ The .
+ The type of the service to register.
+ The factory that creates the service.
+
+
+
+ Adds the specified as a service
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The .
+
+
+
+ Adds the specified as a service
+ implementation type specified in
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The type of the implementation to use.
+ The .
+
+
+
+ Adds the specified as a service
+ using the factory specified in
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The .
+ The factory that creates the service.
+
+
+
+ Adds the specified as a service
+ to the if the service type hasn't already been registered.
+
+ The .
+ The type of the service to register.
+
+
+
+ Adds the specified as a service
+ with the implementation
+ to the if the service type hasn't already been registered.
+
+ The .
+ The type of the service to register.
+ The implementation type of the service.
+
+
+
+ Adds the specified as a service
+ using the factory specified in
+ to the if the service type hasn't already been registered.
+
+ The .
+ The type of the service to register.
+ The factory that creates the service.
+
+
+
+ Adds the specified as a service
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The .
+
+
+
+ Adds the specified as a service
+ implementation type specified in
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The type of the implementation to use.
+ The .
+
+
+
+ Adds the specified as a service
+ using the factory specified in
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The .
+ The factory that creates the service.
+
+
+
+ Adds the specified as a service
+ to the if the service type hasn't already been registered.
+
+ The .
+ The type of the service to register.
+
+
+
+ Adds the specified as a service
+ with the implementation
+ to the if the service type hasn't already been registered.
+
+ The .
+ The type of the service to register.
+ The implementation type of the service.
+
+
+
+ Adds the specified as a service
+ using the factory specified in
+ to the if the service type hasn't already been registered.
+
+ The .
+ The type of the service to register.
+ The factory that creates the service.
+
+
+
+ Adds the specified as a service
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The .
+
+
+
+ Adds the specified as a service
+ implementation type specified in
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The type of the implementation to use.
+ The .
+
+
+
+ Adds the specified as a service
+ with an instance specified in
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The .
+ The instance of the service to add.
+
+
+
+ Adds the specified as a service
+ using the factory specified in
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The .
+ The factory that creates the service.
+
+
+
+ Adds a if an existing descriptor with the same
+ and an implementation that does not already exist
+ in .
+
+ The .
+ The .
+
+ Use when registering a service implementation of a
+ service type that
+ supports multiple registrations of the same service type. Using
+ is not idempotent and can add
+ duplicate
+ instances if called twice. Using
+ will prevent registration
+ of multiple implementation types.
+
+
+
+
+ Adds the specified s if an existing descriptor with the same
+ and an implementation that does not already exist
+ in .
+
+ The .
+ The s.
+
+ Use when registering a service
+ implementation of a service type that
+ supports multiple registrations of the same service type. Using
+ is not idempotent and can add
+ duplicate
+ instances if called twice. Using
+ will prevent registration
+ of multiple implementation types.
+
+
+
+
+ Removes the first service in with the same service type
+ as and adds to the collection.
+
+ The .
+ The to replace with.
+ The for chaining.
+
+
+
+ Removes all services of type in .
+
+ The .
+ The for chaining.
+
+
+
+ Removes all services of type in .
+
+ The .
+ The service type to remove.
+ The for chaining.
+
+
+
+ Adds the specified as a service
+ to the if the service type hasn't already been registered.
+
+ The .
+ The type of the service to register.
+ The service key.
+
+
+
+ Adds the specified as a service
+ with the implementation
+ to the if the service type hasn't already been registered.
+
+ The .
+ The type of the service to register.
+ The service key.
+ The implementation type of the service.
+
+
+
+ Adds the specified as a service
+ using the factory specified in
+ to the if the service type hasn't already been registered.
+
+ The .
+ The type of the service to register.
+ The service key.
+ The factory that creates the service.
+
+
+
+ Adds the specified as a service
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The .
+ The service key.
+
+
+
+ Adds the specified as a service
+ implementation type specified in
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The type of the implementation to use.
+ The .
+ The service key.
+
+
+
+ Adds the specified as a service
+ using the factory specified in
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The .
+ The service key.
+ The factory that creates the service.
+
+
+
+ Adds the specified as a service
+ to the if the service type hasn't already been registered.
+
+ The .
+ The type of the service to register.
+ The service key.
+
+
+
+ Adds the specified as a service
+ with the implementation
+ to the if the service type hasn't already been registered.
+
+ The .
+ The type of the service to register.
+ The service key.
+ The implementation type of the service.
+
+
+
+ Adds the specified as a service
+ using the factory specified in
+ to the if the service type hasn't already been registered.
+
+ The .
+ The type of the service to register.
+ The service key.
+ The factory that creates the service.
+
+
+
+ Adds the specified as a service
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The .
+ The service key.
+
+
+
+ Adds the specified as a service
+ implementation type specified in
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The type of the implementation to use.
+ The .
+ The service key.
+
+
+
+ Adds the specified as a service
+ using the factory specified in
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The .
+ The factory that creates the service.
+ The service key.
+
+
+
+ Adds the specified as a service
+ to the if the service type hasn't already been registered.
+
+ The .
+ The type of the service to register.
+ The service key.
+
+
+
+ Adds the specified as a service
+ with the implementation
+ to the if the service type hasn't already been registered.
+
+ The .
+ The type of the service to register.
+ The service key.
+ The implementation type of the service.
+
+
+
+ Adds the specified as a service
+ using the factory specified in
+ to the if the service type hasn't already been registered.
+
+ The .
+ The type of the service to register.
+ The service key.
+ The factory that creates the service.
+
+
+
+ Adds the specified as a service
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The .
+ The service key.
+
+
+
+ Adds the specified as a service
+ implementation type specified in
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The type of the implementation to use.
+ The .
+ The service key.
+
+
+
+ Adds the specified as a service
+ with an instance specified in
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The .
+ The service key.
+ The instance of the service to add.
+
+
+
+ Adds the specified as a service
+ using the factory specified in
+ to the if the service type hasn't already been registered.
+
+ The type of the service to add.
+ The .
+ The service key.
+ The factory that creates the service.
+
+
+
+ Removes all services of type in .
+
+ The .
+ The service key.
+ The for chaining.
+
+
+
+ Removes all services of type in .
+
+ The .
+ The service type to remove.
+ The service key.
+ The for chaining.
+
+
+
+ Indicates that the parameter should be bound using the keyed service registered with the specified key.
+
+
+
+
+ Creates a new instance.
+
+ The key of the keyed service to bind to.
+
+
+
+ The key of the keyed service to bind to.
+
+
+
+
+ IKeyedServiceProvider is a service provider that can be used to retrieve services using a key in addition
+ to a type.
+
+
+
+
+ Gets the service object of the specified type.
+
+ An object that specifies the type of service object to get.
+ An object that specifies the key of service object to get.
+ A service object of type serviceType. -or- null if there is no service object of type serviceType.
+
+
+
+ Gets service of type from the implementing
+ this interface.
+
+ An object that specifies the type of service object to get.
+ The of the service.
+ A service object of type .
+ Throws an exception if the cannot create the object.
+
+
+
+ Statics for use with .
+
+
+
+
+ Represents a key that matches any key.
+
+
+
+
+ Specifies the contract for a collection of service descriptors.
+
+
+
+
+ Provides an extension point for creating a container specific builder and an .
+
+
+
+
+ Creates a container builder from an .
+
+ The collection of services
+ A container builder that can be used to create an .
+
+
+
+ Creates an from the container builder.
+
+ The container builder
+ An
+
+
+
+ Optional service used to determine if the specified type with the specified service key is available
+ from the .
+
+
+
+
+ Determines if the specified service type with the specified service key is available from the
+ .
+
+ An object that specifies the type of service object to test.
+ The of the service.
+ true if the specified service is a available, false if it is not.
+
+
+
+ Optional service used to determine if the specified type is available from the .
+
+
+
+
+ Determines if the specified service type is available from the .
+
+ An object that specifies the type of service object to test.
+ true if the specified service is a available, false if it is not.
+
+
+
+ The method ends the scope lifetime. Once Dispose
+ is called, any scoped services that have been resolved from
+ will be
+ disposed.
+
+
+
+
+ The used to resolve dependencies from the scope.
+
+
+
+
+ A factory for creating instances of , which is used to create
+ services within a scope.
+
+
+
+
+ Create an which
+ contains an used to resolve dependencies from a
+ newly created scope.
+
+
+ An controlling the
+ lifetime of the scope. Once this is disposed, any scoped services that have been resolved
+ from the
+ will also be disposed.
+
+
+
+
+ Optional contract used by
+ to resolve services if supported by .
+
+
+
+
+ Gets service of type from the implementing
+ this interface.
+
+ An object that specifies the type of service object to get.
+ A service object of type .
+ Throws an exception if the cannot create the object.
+
+
+
+ The result of .
+
+ The to get service arguments from.
+ Additional constructor arguments.
+ The instantiated type.
+
+
+
+ The result of . A delegate to specify a factory method to call to instantiate an instance of type `T`
+
+ The type of the instance being returned
+ The to get service arguments from.
+ Additional constructor arguments.
+ An instance of T
+
+
+
+ Default implementation of .
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Makes this collection read-only.
+
+
+ After the collection is marked as read-only, any further attempt to modify it throws an .
+
+
+
+
+ Extension methods for adding services to an .
+
+
+ Extension methods for adding services to an .
+
+
+
+
+ Adds a transient service of the type specified in with an
+ implementation of the type specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register.
+ The implementation type of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a transient service of the type specified in with a
+ factory specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register.
+ The factory that creates the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a transient service of the type specified in with an
+ implementation type specified in to the
+ specified .
+
+ The type of the service to add.
+ The type of the implementation to use.
+ The to add the service to.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a transient service of the type specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register and the implementation to use.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a transient service of the type specified in to the
+ specified .
+
+ The type of the service to add.
+ The to add the service to.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a transient service of the type specified in with a
+ factory specified in to the
+ specified .
+
+ The type of the service to add.
+ The to add the service to.
+ The factory that creates the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a transient service of the type specified in with an
+ implementation type specified in using the
+ factory specified in to the
+ specified .
+
+ The type of the service to add.
+ The type of the implementation to use.
+ The to add the service to.
+ The factory that creates the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a scoped service of the type specified in with an
+ implementation of the type specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register.
+ The implementation type of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a scoped service of the type specified in with a
+ factory specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register.
+ The factory that creates the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a scoped service of the type specified in with an
+ implementation type specified in to the
+ specified .
+
+ The type of the service to add.
+ The type of the implementation to use.
+ The to add the service to.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a scoped service of the type specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register and the implementation to use.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a scoped service of the type specified in to the
+ specified .
+
+ The type of the service to add.
+ The to add the service to.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a scoped service of the type specified in with a
+ factory specified in to the
+ specified .
+
+ The type of the service to add.
+ The to add the service to.
+ The factory that creates the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a scoped service of the type specified in with an
+ implementation type specified in using the
+ factory specified in to the
+ specified .
+
+ The type of the service to add.
+ The type of the implementation to use.
+ The to add the service to.
+ The factory that creates the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a singleton service of the type specified in with an
+ implementation of the type specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register.
+ The implementation type of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a singleton service of the type specified in with a
+ factory specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register.
+ The factory that creates the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a singleton service of the type specified in with an
+ implementation type specified in to the
+ specified .
+
+ The type of the service to add.
+ The type of the implementation to use.
+ The to add the service to.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a singleton service of the type specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register and the implementation to use.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a singleton service of the type specified in to the
+ specified .
+
+ The type of the service to add.
+ The to add the service to.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a singleton service of the type specified in with a
+ factory specified in to the
+ specified .
+
+ The type of the service to add.
+ The to add the service to.
+ The factory that creates the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a singleton service of the type specified in with an
+ implementation type specified in using the
+ factory specified in to the
+ specified .
+
+ The type of the service to add.
+ The type of the implementation to use.
+ The to add the service to.
+ The factory that creates the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a singleton service of the type specified in with an
+ instance specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register.
+ The instance of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a singleton service of the type specified in with an
+ instance specified in to the
+ specified .
+
+ The to add the service to.
+ The instance of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a transient service of the type specified in with an
+ implementation of the type specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register.
+ The of the service.
+ The implementation type of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a transient service of the type specified in with a
+ factory specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register.
+ The of the service.
+ The factory that creates the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a transient service of the type specified in with an
+ implementation type specified in to the
+ specified .
+
+ The type of the service to add.
+ The type of the implementation to use.
+ The to add the service to.
+ The of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a transient service of the type specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register and the implementation to use.
+ The of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a transient service of the type specified in to the
+ specified .
+
+ The type of the service to add.
+ The to add the service to.
+ The of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a transient service of the type specified in with a
+ factory specified in to the
+ specified .
+
+ The type of the service to add.
+ The to add the service to.
+ The of the service.
+ The factory that creates the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a transient service of the type specified in with an
+ implementation type specified in using the
+ factory specified in to the
+ specified .
+
+ The type of the service to add.
+ The type of the implementation to use.
+ The to add the service to.
+ The of the service.
+ The factory that creates the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a scoped service of the type specified in with an
+ implementation of the type specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register.
+ The of the service.
+ The implementation type of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a scoped service of the type specified in with a
+ factory specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register.
+ The of the service.
+ The factory that creates the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a scoped service of the type specified in with an
+ implementation type specified in to the
+ specified .
+
+ The type of the service to add.
+ The type of the implementation to use.
+ The to add the service to.
+ The of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a scoped service of the type specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register and the implementation to use.
+ The of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a scoped service of the type specified in to the
+ specified .
+
+ The type of the service to add.
+ The to add the service to.
+ The of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a scoped service of the type specified in with a
+ factory specified in to the
+ specified .
+
+ The type of the service to add.
+ The to add the service to.
+ The of the service.
+ The factory that creates the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a scoped service of the type specified in with an
+ implementation type specified in using the
+ factory specified in to the
+ specified .
+
+ The type of the service to add.
+ The type of the implementation to use.
+ The to add the service to.
+ The of the service.
+ The factory that creates the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a singleton service of the type specified in with an
+ implementation of the type specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register.
+ The of the service.
+ The implementation type of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a singleton service of the type specified in with a
+ factory specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register.
+ The of the service.
+ The factory that creates the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a singleton service of the type specified in with an
+ implementation type specified in to the
+ specified .
+
+ The type of the service to add.
+ The type of the implementation to use.
+ The to add the service to.
+ The of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a singleton service of the type specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register and the implementation to use.
+ The of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a singleton service of the type specified in to the
+ specified .
+
+ The type of the service to add.
+ The to add the service to.
+ The of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a singleton service of the type specified in with a
+ factory specified in to the
+ specified .
+
+ The type of the service to add.
+ The to add the service to.
+ The of the service.
+ The factory that creates the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a singleton service of the type specified in with an
+ implementation type specified in using the
+ factory specified in to the
+ specified .
+
+ The type of the service to add.
+ The type of the implementation to use.
+ The to add the service to.
+ The of the service.
+ The factory that creates the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a singleton service of the type specified in with an
+ instance specified in to the
+ specified .
+
+ The to add the service to.
+ The type of the service to register.
+ The of the service.
+ The instance of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Adds a singleton service of the type specified in with an
+ instance specified in to the
+ specified .
+
+ The to add the service to.
+ The of the service.
+ The instance of the service.
+ A reference to this instance after the operation has completed.
+
+
+
+
+ Describes a service with its service type, implementation, and lifetime.
+
+
+
+
+ Initializes a new instance of with the specified .
+
+ The of the service.
+ The implementing the service.
+ The of the service.
+
+
+
+ Initializes a new instance of with the specified .
+
+ The of the service.
+ The of the service.
+ The implementing the service.
+ The of the service.
+
+
+
+ Initializes a new instance of with the specified
+ as a .
+
+ The of the service.
+ The instance implementing the service.
+
+
+
+ Initializes a new instance of with the specified
+ as a .
+
+ The of the service.
+ The of the service.
+ The instance implementing the service.
+
+
+
+ Initializes a new instance of with the specified .
+
+ The of the service.
+ A factory used for creating service instances.
+ The of the service.
+
+
+
+ Initializes a new instance of with the specified .
+
+ The of the service.
+ The of the service.
+ A factory used for creating service instances.
+ The of the service.
+
+
+
+ Gets the of the service.
+
+
+
+
+ Get the key of the service, if applicable.
+
+
+
+
+ Gets the of the service.
+
+
+
+
+ Gets the that implements the service.
+
+
+
+
+ Gets the that implements the service.
+
+
+
+
+ Gets the instance that implements the service.
+
+
+
+
+ Gets the instance that implements the service.
+
+
+
+
+ Gets the factory used for creating service instances.
+
+
+
+
+ Gets the factory used for creating Keyed service instances.
+
+
+
+
+ Indicates whether the service is a keyed service.
+
+
+
+
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ The type of the implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ The type of the implementation.
+ The of the service.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ and
+ and the lifetime.
+
+ The type of the service.
+ The type of the implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ and
+ and the lifetime.
+
+ The type of the service.
+ The of the service.
+ The type of the implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ ,
+ and the lifetime.
+
+ The type of the service.
+ The type of the implementation.
+ A factory to create new instances of the service implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ ,
+ and the lifetime.
+
+ The type of the service.
+ The type of the implementation.
+ The of the service.
+ A factory to create new instances of the service implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ A factory to create new instances of the service implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ The of the service.
+ A factory to create new instances of the service implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ A factory to create new instances of the service implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ The of the service.
+ A factory to create new instances of the service implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ The type of the implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ The type of the implementation.
+ The of the service.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ and
+ and the lifetime.
+
+ The type of the service.
+ The type of the implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ and
+ and the lifetime.
+
+ The type of the service.
+ The of the service.
+ The type of the implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ ,
+ and the lifetime.
+
+ The type of the service.
+ The type of the implementation.
+ A factory to create new instances of the service implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ ,
+ and the lifetime.
+
+ The type of the service.
+ The type of the implementation.
+ The of the service.
+ A factory to create new instances of the service implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ A factory to create new instances of the service implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ The of the service.
+ A factory to create new instances of the service implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ A factory to create new instances of the service implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ The of the service.
+ A factory to create new instances of the service implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ The type of the implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ The type of the implementation.
+ The of the service.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ and
+ and the lifetime.
+
+ The type of the service.
+ The type of the implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ and
+ and the lifetime.
+
+ The type of the service.
+ The of the service.
+ The type of the implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ ,
+ and the lifetime.
+
+ The type of the service.
+ The type of the implementation.
+ A factory to create new instances of the service implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ ,
+ and the lifetime.
+
+ The type of the service.
+ The type of the implementation.
+ The of the service.
+ A factory to create new instances of the service implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ A factory to create new instances of the service implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ The of the service.
+ A factory to create new instances of the service implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ A factory to create new instances of the service implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ The of the service.
+ A factory to create new instances of the service implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ The instance of the implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ The of the service.
+ The instance of the implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ The instance of the implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and the lifetime.
+
+ The type of the service.
+ The of the service.
+ The instance of the implementation.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and .
+
+ The type of the service.
+ The type of the implementation.
+ The lifetime of the service.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and .
+
+ The type of the service.
+ The of the service.
+ The type of the implementation.
+ The lifetime of the service.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and .
+
+ The type of the service.
+ A factory to create new instances of the service implementation.
+ The lifetime of the service.
+ A new instance of .
+
+
+
+ Creates an instance of with the specified
+ , ,
+ and .
+
+ The type of the service.
+ The of the service.
+ A factory to create new instances of the service implementation.
+ The lifetime of the service.
+ A new instance of .
+
+
+
+ ServiceKeyAttribute can be specified on a parameter to inject the key that was used for
+ registration/resolution.
+
+
+
+
+ Specifies the lifetime of a service in an .
+
+
+
+
+ Specifies that a single instance of the service will be created.
+
+
+
+
+ Specifies that a new instance of the service will be created for each scope.
+
+
+ In ASP.NET Core applications a scope is created around each server request.
+
+
+
+
+ Specifies that a new instance of the service will be created every time it is requested.
+
+
+
+
+ Extension methods for getting services from an .
+
+
+
+
+ Get service of type from the .
+
+ The type of service object to get.
+ The to retrieve the service object from.
+ An object that specifies the key of service object to get.
+ A service object of type or null if there is no such service.
+
+
+
+ Get service of type from the .
+
+ The to retrieve the service object from.
+ An object that specifies the type of service object to get.
+ An object that specifies the key of service object to get.
+ A service object of type .
+ There is no service of type .
+
+
+
+ Get service of type from the .
+
+ The type of service object to get.
+ The to retrieve the service object from.
+ An object that specifies the key of service object to get.
+ A service object of type .
+ There is no service of type .
+
+
+
+ Get an enumeration of services of type from the .
+
+ The type of service object to get.
+ The to retrieve the services from.
+ An object that specifies the key of service object to get.
+ An enumeration of services of type .
+
+
+
+ Get an enumeration of services of type from the .
+
+ The to retrieve the services from.
+ An object that specifies the type of service object to get.
+ An object that specifies the key of service object to get.
+ An enumeration of services of type .
+
+
+
+ Extension methods for getting services from an .
+
+
+
+
+ Get service of type from the .
+
+ The type of service object to get.
+ The to retrieve the service object from.
+ A service object of type or null if there is no such service.
+
+
+
+ Get service of type from the .
+
+ The to retrieve the service object from.
+ An object that specifies the type of service object to get.
+ A service object of type .
+ There is no service of type .
+
+
+
+ Get service of type from the .
+
+ The type of service object to get.
+ The to retrieve the service object from.
+ A service object of type .
+ There is no service of type .
+
+
+
+ Get an enumeration of services of type from the .
+
+ The type of service object to get.
+ The to retrieve the services from.
+ An enumeration of services of type .
+
+
+
+ Get an enumeration of services of type from the .
+
+ The to retrieve the services from.
+ An object that specifies the type of service object to get.
+ An enumeration of services of type .
+
+
+
+ Creates a new that can be used to resolve scoped services.
+
+ The to create the scope from.
+ A that can be used to resolve scoped services.
+
+
+
+ Creates a new that can be used to resolve scoped services.
+
+ The to create the scope from.
+ An that can be used to resolve scoped services.
+
+
+
+ Creates a new that can be used to resolve scoped services.
+
+ The to create the scope from.
+ An that can be used to resolve scoped services.
+
+
+ Throws an if is null.
+ The reference type argument to validate as non-null.
+ The name of the parameter with which corresponds.
+
+
+
+ Throws either an or an
+ if the specified string is or whitespace respectively.
+
+ String to be checked for or whitespace.
+ The name of the parameter being checked.
+ The original value of .
+
+
+
+ Attribute used to indicate a source generator should create a function for marshalling
+ arguments instead of relying on the runtime to generate an equivalent marshalling function at run-time.
+
+
+ This attribute is meaningless if the source generator associated with it is not enabled.
+ The current built-in source generator only supports C# and only supplies an implementation when
+ applied to static, partial, non-generic methods.
+
+
+
+
+ Initializes a new instance of the .
+
+ Name of the library containing the import.
+
+
+
+ Gets the name of the library containing the import.
+
+
+
+
+ Gets or sets the name of the entry point to be called.
+
+
+
+
+ Gets or sets how to marshal string arguments to the method.
+
+
+ If this field is set to a value other than ,
+ must not be specified.
+
+
+
+
+ Gets or sets the used to control how string arguments to the method are marshalled.
+
+
+ If this field is specified, must not be specified
+ or must be set to .
+
+
+
+
+ Gets or sets whether the callee sets an error (SetLastError on Windows or errno
+ on other platforms) before returning from the attributed method.
+
+
+
+
+ Specifies how strings should be marshalled for generated p/invokes
+
+
+
+
+ Indicates the user is suppling a specific marshaller in .
+
+
+
+
+ Use the platform-provided UTF-8 marshaller.
+
+
+
+
+ Use the platform-provided UTF-16 marshaller.
+
+
+
+
+ Indicates that certain members on a specified are accessed dynamically,
+ for example through .
+
+
+ This allows tools to understand which members are being accessed during the execution
+ of a program.
+
+ This attribute is valid on members whose type is or .
+
+ When this attribute is applied to a location of type , the assumption is
+ that the string represents a fully qualified type name.
+
+ When this attribute is applied to a class, interface, or struct, the members specified
+ can be accessed dynamically on instances returned from calling
+ on instances of that class, interface, or struct.
+
+ If the attribute is applied to a method it's treated as a special case and it implies
+ the attribute should be applied to the "this" parameter of the method. As such the attribute
+ should only be used on instance methods of types assignable to System.Type (or string, but no methods
+ will use it there).
+
+
+
+
+ Initializes a new instance of the class
+ with the specified member types.
+
+ The types of members dynamically accessed.
+
+
+
+ Gets the which specifies the type
+ of members dynamically accessed.
+
+
+
+
+ Specifies the types of members that are dynamically accessed.
+
+ This enumeration has a attribute that allows a
+ bitwise combination of its member values.
+
+
+
+
+ Specifies no members.
+
+
+
+
+ Specifies the default, parameterless public constructor.
+
+
+
+
+ Specifies all public constructors.
+
+
+
+
+ Specifies all non-public constructors.
+
+
+
+
+ Specifies all public methods.
+
+
+
+
+ Specifies all non-public methods.
+
+
+
+
+ Specifies all public fields.
+
+
+
+
+ Specifies all non-public fields.
+
+
+
+
+ Specifies all public nested types.
+
+
+
+
+ Specifies all non-public nested types.
+
+
+
+
+ Specifies all public properties.
+
+
+
+
+ Specifies all non-public properties.
+
+
+
+
+ Specifies all public events.
+
+
+
+
+ Specifies all non-public events.
+
+
+
+
+ Specifies all interfaces implemented by the type.
+
+
+
+
+ Specifies all members.
+
+
+
+
+ Suppresses reporting of a specific rule violation, allowing multiple suppressions on a
+ single code artifact.
+
+
+ is different than
+ in that it doesn't have a
+ . So it is always preserved in the compiled assembly.
+
+
+
+
+ Initializes a new instance of the
+ class, specifying the category of the tool and the identifier for an analysis rule.
+
+ The category for the attribute.
+ The identifier of the analysis rule the attribute applies to.
+
+
+
+ Gets the category identifying the classification of the attribute.
+
+
+ The property describes the tool or tool analysis category
+ for which a message suppression attribute applies.
+
+
+
+
+ Gets the identifier of the analysis tool rule to be suppressed.
+
+
+ Concatenated together, the and
+ properties form a unique check identifier.
+
+
+
+
+ Gets or sets the scope of the code that is relevant for the attribute.
+
+
+ The Scope property is an optional argument that specifies the metadata scope for which
+ the attribute is relevant.
+
+
+
+
+ Gets or sets a fully qualified path that represents the target of the attribute.
+
+
+ The property is an optional argument identifying the analysis target
+ of the attribute. An example value is "System.IO.Stream.ctor():System.Void".
+ Because it is fully qualified, it can be long, particularly for targets such as parameters.
+ The analysis tool user interface should be capable of automatically formatting the parameter.
+
+
+
+
+ Gets or sets an optional argument expanding on exclusion criteria.
+
+
+ The property is an optional argument that specifies additional
+ exclusion where the literal metadata target is not sufficiently precise. For example,
+ the cannot be applied within a method,
+ and it may be desirable to suppress a violation against a statement in the method that will
+ give a rule violation, but not against all statements in the method.
+
+
+
+
+ Gets or sets the justification for suppressing the code analysis message.
+
+
+
+
+ Indicates that the specified method requires the ability to generate new code at runtime,
+ for example through .
+
+
+ This allows tools to understand which methods are unsafe to call when compiling ahead of time.
+
+
+
+
+ Initializes a new instance of the class
+ with the specified message.
+
+
+ A message that contains information about the usage of dynamic code.
+
+
+
+
+ Gets a message that contains information about the usage of dynamic code.
+
+
+
+
+ Gets or sets an optional URL that contains more information about the method,
+ why it requires dynamic code, and what options a consumer has to deal with it.
+
+
+
+ Specifies that null is allowed as an input even if the corresponding type disallows it.
+
+
+ Specifies that null is disallowed as an input even if the corresponding type allows it.
+
+
+ Specifies that an output may be null even if the corresponding type disallows it.
+
+
+ Specifies that an output will not be null even if the corresponding type allows it. Specifies that an input argument was not null when the call returns.
+
+
+ Specifies that when a method returns , the parameter may be null even if the corresponding type disallows it.
+
+
+ Initializes the attribute with the specified return value condition.
+
+ The return value condition. If the method returns this value, the associated parameter may be null.
+
+
+
+ Gets the return value condition.
+
+
+ Specifies that when a method returns , the parameter will not be null even if the corresponding type allows it.
+
+
+ Initializes the attribute with the specified return value condition.
+
+ The return value condition. If the method returns this value, the associated parameter will not be null.
+
+
+
+ Gets the return value condition.
+
+
+ Specifies that the output will be non-null if the named parameter is non-null.
+
+
+ Initializes the attribute with the associated parameter name.
+
+ The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null.
+
+
+
+ Gets the associated parameter name.
+
+
+ Applied to a method that will never return under any circumstance.
+
+
+ Specifies that the method will not return if the associated Boolean parameter is passed the specified value.
+
+
+ Initializes the attribute with the specified parameter value.
+
+ The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to
+ the associated parameter matches this value.
+
+
+
+ Gets the condition parameter value.
+
+
+ Specifies that the method or property will ensure that the listed field and property members have not-null values.
+
+
+ Initializes the attribute with a field or property member.
+
+ The field or property member that is promised to be not-null.
+
+
+
+ Initializes the attribute with the list of field and property members.
+
+ The list of field and property members that are promised to be not-null.
+
+
+
+ Gets field or property member names.
+
+
+ Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition.
+
+
+ Initializes the attribute with the specified return value condition and a field or property member.
+
+ The return value condition. If the method returns this value, the associated parameter will not be null.
+
+
+ The field or property member that is promised to be not-null.
+
+
+
+ Initializes the attribute with the specified return value condition and list of field and property members.
+
+ The return value condition. If the method returns this value, the associated parameter will not be null.
+
+
+ The list of field and property members that are promised to be not-null.
+
+
+
+ Gets the return value condition.
+
+
+ Gets field or property member names.
+
+
+ Multiple constructors accepting all given argument types have been found in type '{0}'. There should only be one applicable constructor.
+
+
+ Unable to resolve service for type '{0}' while attempting to activate '{1}'.
+
+
+ A suitable constructor for type '{0}' could not be located. Ensure the type is concrete and services are registered for all parameters of a public constructor.
+
+
+ No service for type '{0}' has been registered.
+
+
+ The service collection cannot be modified because it is read-only.
+
+
+ Implementation type cannot be '{0}' because it is indistinguishable from other services registered for '{1}'.
+
+
+ Multiple constructors were marked with {0}.
+
+
+ Constructor marked with {0} does not accept all given argument types.
+
+
+ Instances of abstract classes cannot be created.
+
+
+ Multiple constructors for type '{0}' were found with length {1}.
+
+
+ Unable to resolve service for type '{0}' while attempting to activate '{1}'.
+
+
+ A suitable constructor for type '{0}' could not be located. Ensure the type is concrete and all parameters of a public constructor are either registered as services or passed as arguments. Also ensure no extraneous arguments are provided.
+
+
+ Multiple constructors accepting all given argument types have been found in type '{0}'. There should only be one applicable constructor.
+
+
+ This service provider doesn't support keyed services.
+
+
+ This service descriptor is keyed. Your service provider may not support keyed services.
+
+
+ This service descriptor is not keyed.
+
+
+
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Extensions.Logging.Abstractions.dll b/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Extensions.Logging.Abstractions.dll
new file mode 100644
index 0000000..b8dd652
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Extensions.Logging.Abstractions.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Extensions.Logging.Abstractions.xml b/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Extensions.Logging.Abstractions.xml
new file mode 100644
index 0000000..105e4d8
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/Microsoft.Extensions.Logging.Abstractions.xml
@@ -0,0 +1,1350 @@
+
+
+
+ Microsoft.Extensions.Logging.Abstractions
+
+
+
+
+ Identifies a logging event. The primary identifier is the "Id" property, with the "Name" property providing a short description of this type of event.
+
+
+
+
+ Implicitly creates an EventId from the given .
+
+ The to convert to an EventId.
+
+
+
+ Checks if two specified instances have the same value. They are equal if they have the same Id.
+
+ The first .
+ The second .
+ if the objects are equal.
+
+
+
+ Checks if two specified instances have different values.
+
+ The first .
+ The second .
+ if the objects are not equal.
+
+
+
+ Initializes an instance of the struct.
+
+ The numeric identifier for this event.
+ The name of this event.
+
+
+
+ Gets the numeric identifier for this event.
+
+
+
+
+ Gets the name of this event.
+
+
+
+
+
+
+
+ Indicates whether the current object is equal to another object of the same type. Two events are equal if they have the same id.
+
+ An object to compare with this object.
+ if the current object is equal to the other parameter; otherwise, .
+
+
+
+
+
+
+
+
+
+ LogValues to enable formatting options supported by .
+ This also enables using {NamedformatItem} in the format string.
+
+
+
+
+ Represents a storage of common scope data.
+
+
+
+
+ Executes callback for each currently active scope objects in order of creation.
+ All callbacks are guaranteed to be called inline from this method.
+
+ The callback to be executed for every scope object
+ The state object to be passed into the callback
+ The type of state to accept.
+
+
+
+ Adds scope object to the list
+
+ The scope object
+ The token that removes scope on dispose.
+
+
+
+ Represents a type used to perform logging.
+
+ Aggregates most logging patterns to a single method.
+
+
+
+ Writes a log entry.
+
+ Entry will be written on this level.
+ Id of the event.
+ The entry to be written. Can be also an object.
+ The exception related to this entry.
+ Function to create a message of the and .
+ The type of the object to be written.
+
+
+
+ Checks if the given is enabled.
+
+ Level to be checked.
+ true if enabled.
+
+
+
+ Begins a logical operation scope.
+
+ The identifier for the scope.
+ The type of the state to begin scope for.
+ An that ends the logical operation scope on dispose.
+
+
+
+ Represents a type used to configure the logging system and create instances of from
+ the registered s.
+
+
+
+
+ Creates a new instance.
+
+ The category name for messages produced by the logger.
+ The .
+
+
+
+ Adds an to the logging system.
+
+ The .
+
+
+
+ Represents a type that can create instances of .
+
+
+
+
+ Creates a new instance.
+
+ The category name for messages produced by the logger.
+ The instance of that was created.
+
+
+
+ A generic interface for logging where the category name is derived from the specified
+ type name.
+ Generally used to enable activation of a named from dependency injection.
+
+ The type whose name is used for the logger category name.
+
+
+
+ An interface for configuring logging providers.
+
+
+
+
+ Gets the where Logging services are configured.
+
+
+
+
+ Represents a that is able to consume external scope information.
+
+
+
+
+ Sets external scope information source for logger provider.
+
+ The provider of scope data.
+
+
+
+ Options for and its overloads
+
+
+
+
+ Gets or sets the flag to skip IsEnabled check for the logging method.
+
+
+
+
+ Holds the information for a single log entry.
+
+
+
+
+ Initializes an instance of the LogEntry struct.
+
+ The log level.
+ The category name for the log.
+ The log event Id.
+ The state for which log is being written.
+ The log exception.
+ The formatter.
+
+
+
+ Gets the LogLevel
+
+
+
+
+ Gets the log category
+
+
+
+
+ Gets the log EventId
+
+
+
+
+ Gets the TState
+
+
+
+
+ Gets the log exception
+
+
+
+
+ Gets the formatter
+
+
+
+
+ Minimalistic logger that does nothing.
+
+
+
+
+ Returns the shared instance of .
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An used to create instance of
+ that logs nothing.
+
+
+
+
+ Creates a new instance.
+
+
+
+
+ Returns the shared instance of .
+
+
+
+
+
+ This returns a instance which logs nothing.
+
+
+
+
+
+ This method ignores the parameter and does nothing.
+
+
+
+
+
+
+
+ Provider for the .
+
+
+
+
+ Returns an instance of .
+
+
+
+
+
+
+
+
+
+
+ Minimalistic logger that does nothing.
+
+
+
+
+ Returns an instance of .
+
+ An instance of .
+
+
+
+
+
+
+
+ This method ignores the parameters and does nothing.
+
+
+
+
+
+
+
+ ILogger extension methods for common scenarios.
+
+
+
+
+ Formats and writes a debug log message.
+
+ The to write to.
+ The event id associated with the log.
+ The exception to log.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogDebug(0, exception, "Error while processing request from {Address}", address)
+
+
+
+ Formats and writes a debug log message.
+
+ The to write to.
+ The event id associated with the log.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogDebug(0, "Processing request from {Address}", address)
+
+
+
+ Formats and writes a debug log message.
+
+ The to write to.
+ The exception to log.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogDebug(exception, "Error while processing request from {Address}", address)
+
+
+
+ Formats and writes a debug log message.
+
+ The to write to.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogDebug("Processing request from {Address}", address)
+
+
+
+ Formats and writes a trace log message.
+
+ The to write to.
+ The event id associated with the log.
+ The exception to log.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogTrace(0, exception, "Error while processing request from {Address}", address)
+
+
+
+ Formats and writes a trace log message.
+
+ The to write to.
+ The event id associated with the log.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogTrace(0, "Processing request from {Address}", address)
+
+
+
+ Formats and writes a trace log message.
+
+ The to write to.
+ The exception to log.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogTrace(exception, "Error while processing request from {Address}", address)
+
+
+
+ Formats and writes a trace log message.
+
+ The to write to.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogTrace("Processing request from {Address}", address)
+
+
+
+ Formats and writes an informational log message.
+
+ The to write to.
+ The event id associated with the log.
+ The exception to log.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogInformation(0, exception, "Error while processing request from {Address}", address)
+
+
+
+ Formats and writes an informational log message.
+
+ The to write to.
+ The event id associated with the log.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogInformation(0, "Processing request from {Address}", address)
+
+
+
+ Formats and writes an informational log message.
+
+ The to write to.
+ The exception to log.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogInformation(exception, "Error while processing request from {Address}", address)
+
+
+
+ Formats and writes an informational log message.
+
+ The to write to.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogInformation("Processing request from {Address}", address)
+
+
+
+ Formats and writes a warning log message.
+
+ The to write to.
+ The event id associated with the log.
+ The exception to log.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogWarning(0, exception, "Error while processing request from {Address}", address)
+
+
+
+ Formats and writes a warning log message.
+
+ The to write to.
+ The event id associated with the log.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogWarning(0, "Processing request from {Address}", address)
+
+
+
+ Formats and writes a warning log message.
+
+ The to write to.
+ The exception to log.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogWarning(exception, "Error while processing request from {Address}", address)
+
+
+
+ Formats and writes a warning log message.
+
+ The to write to.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogWarning("Processing request from {Address}", address)
+
+
+
+ Formats and writes an error log message.
+
+ The to write to.
+ The event id associated with the log.
+ The exception to log.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogError(0, exception, "Error while processing request from {Address}", address)
+
+
+
+ Formats and writes an error log message.
+
+ The to write to.
+ The event id associated with the log.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogError(0, "Processing request from {Address}", address)
+
+
+
+ Formats and writes an error log message.
+
+ The to write to.
+ The exception to log.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogError(exception, "Error while processing request from {Address}", address)
+
+
+
+ Formats and writes an error log message.
+
+ The to write to.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogError("Processing request from {Address}", address)
+
+
+
+ Formats and writes a critical log message.
+
+ The to write to.
+ The event id associated with the log.
+ The exception to log.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogCritical(0, exception, "Error while processing request from {Address}", address)
+
+
+
+ Formats and writes a critical log message.
+
+ The to write to.
+ The event id associated with the log.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogCritical(0, "Processing request from {Address}", address)
+
+
+
+ Formats and writes a critical log message.
+
+ The to write to.
+ The exception to log.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogCritical(exception, "Error while processing request from {Address}", address)
+
+
+
+ Formats and writes a critical log message.
+
+ The to write to.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ logger.LogCritical("Processing request from {Address}", address)
+
+
+
+ Formats and writes a log message at the specified log level.
+
+ The to write to.
+ Entry will be written on this level.
+ Format string of the log message.
+ An object array that contains zero or more objects to format.
+
+
+
+ Formats and writes a log message at the specified log level.
+
+ The to write to.
+ Entry will be written on this level.
+ The event id associated with the log.
+ Format string of the log message.
+ An object array that contains zero or more objects to format.
+
+
+
+ Formats and writes a log message at the specified log level.
+
+ The to write to.
+ Entry will be written on this level.
+ The exception to log.
+ Format string of the log message.
+ An object array that contains zero or more objects to format.
+
+
+
+ Formats and writes a log message at the specified log level.
+
+ The to write to.
+ Entry will be written on this level.
+ The event id associated with the log.
+ The exception to log.
+ Format string of the log message.
+ An object array that contains zero or more objects to format.
+
+
+
+ Formats the message and creates a scope.
+
+ The to create the scope in.
+ Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
+ An object array that contains zero or more objects to format.
+ A disposable scope object. Can be null.
+
+ using(logger.BeginScope("Processing request from {Address}", address))
+ {
+ }
+
+
+
+
+ Default implementation of
+
+
+
+
+ Creates a new .
+
+
+
+
+
+
+
+
+
+
+ ILoggerFactory extension methods for common scenarios.
+
+
+
+
+ Creates a new instance using the full name of the given type.
+
+ The factory.
+ The type.
+ The that was created.
+
+
+
+ Creates a new instance using the full name of the given .
+
+ The factory.
+ The type.
+ The that was created.
+
+
+
+ Creates delegates which can be later cached to log messages in a performant way.
+
+
+
+
+ Creates a delegate which can be invoked to create a log scope.
+
+ The named format string
+ A delegate which when invoked creates a log scope.
+
+
+
+ Creates a delegate which can be invoked to create a log scope.
+
+ The type of the first parameter passed to the named format string.
+ The named format string
+ A delegate which when invoked creates a log scope.
+
+
+
+ Creates a delegate which can be invoked to create a log scope.
+
+ The type of the first parameter passed to the named format string.
+ The type of the second parameter passed to the named format string.
+ The named format string
+ A delegate which when invoked creates a log scope.
+
+
+
+ Creates a delegate which can be invoked to create a log scope.
+
+ The type of the first parameter passed to the named format string.
+ The type of the second parameter passed to the named format string.
+ The type of the third parameter passed to the named format string.
+ The named format string
+ A delegate which when invoked creates a log scope.
+
+
+
+ Creates a delegate which can be invoked to create a log scope.
+
+ The type of the first parameter passed to the named format string.
+ The type of the second parameter passed to the named format string.
+ The type of the third parameter passed to the named format string.
+ The type of the fourth parameter passed to the named format string.
+ The named format string
+ A delegate which when invoked creates a log scope.
+
+
+
+ Creates a delegate which can be invoked to create a log scope.
+
+ The type of the first parameter passed to the named format string.
+ The type of the second parameter passed to the named format string.
+ The type of the third parameter passed to the named format string.
+ The type of the fourth parameter passed to the named format string.
+ The type of the fifth parameter passed to the named format string.
+ The named format string
+ A delegate which when invoked creates a log scope.
+
+
+
+ Creates a delegate which can be invoked to create a log scope.
+
+ The type of the first parameter passed to the named format string.
+ The type of the second parameter passed to the named format string.
+ The type of the third parameter passed to the named format string.
+ The type of the fourth parameter passed to the named format string.
+ The type of the fifth parameter passed to the named format string.
+ The type of the sixth parameter passed to the named format string.
+ The named format string
+ A delegate which when invoked creates a log scope.
+
+
+
+ Creates a delegate which can be invoked for logging a message.
+
+ The
+ The event id
+ The named format string
+ A delegate which when invoked creates a log message.
+
+
+
+ Creates a delegate which can be invoked for logging a message.
+
+ The
+ The event id
+ The named format string
+ The
+ A delegate which when invoked creates a log message.
+
+
+
+ Creates a delegate which can be invoked for logging a message.
+
+ The type of the first parameter passed to the named format string.
+ The
+ The event id
+ The named format string
+ A delegate which when invoked creates a log message.
+
+
+
+ Creates a delegate which can be invoked for logging a message.
+
+ The type of the first parameter passed to the named format string.
+ The
+ The event id
+ The named format string
+ The
+ A delegate which when invoked creates a log message.
+
+
+
+ Creates a delegate which can be invoked for logging a message.
+
+ The type of the first parameter passed to the named format string.
+ The type of the second parameter passed to the named format string.
+ The
+ The event id
+ The named format string
+ A delegate which when invoked creates a log message.
+
+
+
+ Creates a delegate which can be invoked for logging a message.
+
+ The type of the first parameter passed to the named format string.
+ The type of the second parameter passed to the named format string.
+ The
+ The event id
+ The named format string
+ The
+ A delegate which when invoked creates a log message.
+
+
+
+ Creates a delegate which can be invoked for logging a message.
+
+ The type of the first parameter passed to the named format string.
+ The type of the second parameter passed to the named format string.
+ The type of the third parameter passed to the named format string.
+ The
+ The event id
+ The named format string
+ A delegate which when invoked creates a log message.
+
+
+
+ Creates a delegate which can be invoked for logging a message.
+
+ The type of the first parameter passed to the named format string.
+ The type of the second parameter passed to the named format string.
+ The type of the third parameter passed to the named format string.
+ The
+ The event id
+ The named format string
+ The
+ A delegate which when invoked creates a log message.
+
+
+
+ Creates a delegate which can be invoked for logging a message.
+
+ The type of the first parameter passed to the named format string.
+ The type of the second parameter passed to the named format string.
+ The type of the third parameter passed to the named format string.
+ The type of the fourth parameter passed to the named format string.
+ The
+ The event id
+ The named format string
+ A delegate which when invoked creates a log message.
+
+
+
+ Creates a delegate which can be invoked for logging a message.
+
+ The type of the first parameter passed to the named format string.
+ The type of the second parameter passed to the named format string.
+ The type of the third parameter passed to the named format string.
+ The type of the fourth parameter passed to the named format string.
+ The
+ The event id
+ The named format string
+ The
+ A delegate which when invoked creates a log message.
+
+
+
+ Creates a delegate which can be invoked for logging a message.
+
+ The type of the first parameter passed to the named format string.
+ The type of the second parameter passed to the named format string.
+ The type of the third parameter passed to the named format string.
+ The type of the fourth parameter passed to the named format string.
+ The type of the fifth parameter passed to the named format string.
+ The
+ The event id
+ The named format string
+ A delegate which when invoked creates a log message.
+
+
+
+ Creates a delegate which can be invoked for logging a message.
+
+ The type of the first parameter passed to the named format string.
+ The type of the second parameter passed to the named format string.
+ The type of the third parameter passed to the named format string.
+ The type of the fourth parameter passed to the named format string.
+ The type of the fifth parameter passed to the named format string.
+ The
+ The event id
+ The named format string
+ The
+ A delegate which when invoked creates a log message.
+
+
+
+ Creates a delegate which can be invoked for logging a message.
+
+ The type of the first parameter passed to the named format string.
+ The type of the second parameter passed to the named format string.
+ The type of the third parameter passed to the named format string.
+ The type of the fourth parameter passed to the named format string.
+ The type of the fifth parameter passed to the named format string.
+ The type of the sixth parameter passed to the named format string.
+ The
+ The event id
+ The named format string
+ A delegate which when invoked creates a log message.
+
+
+
+ Creates a delegate which can be invoked for logging a message.
+
+ The type of the first parameter passed to the named format string.
+ The type of the second parameter passed to the named format string.
+ The type of the third parameter passed to the named format string.
+ The type of the fourth parameter passed to the named format string.
+ The type of the fifth parameter passed to the named format string.
+ The type of the sixth parameter passed to the named format string.
+ The
+ The event id
+ The named format string
+ The
+ A delegate which when invoked creates a log message.
+
+
+
+ Provides information to guide the production of a strongly-typed logging method.
+
+
+ The method this attribute is applied to:
+ - Must be a partial method.
+ - Must return void.
+ - Must not be generic.
+ - Must have an as one of its parameters.
+ - Must have a as one of its parameters.
+ - None of the parameters can be generic.
+
+
+
+
+
+
+
+ Initializes a new instance of the class
+ which is used to guide the production of a strongly-typed logging method.
+
+
+
+
+ Initializes a new instance of the class
+ which is used to guide the production of a strongly-typed logging method.
+
+ The log event Id.
+ The log level.
+ Format string of the log message.
+
+
+
+ Initializes a new instance of the class
+ which is used to guide the production of a strongly-typed logging method.
+
+ The log level.
+ Format string of the log message.
+
+
+
+ Initializes a new instance of the class
+ which is used to guide the production of a strongly-typed logging method.
+
+ The log level.
+
+
+
+ Initializes a new instance of the class
+ which is used to guide the production of a strongly-typed logging method.
+
+ Format string of the log message.
+
+
+
+ Gets the logging event id for the logging method.
+
+
+
+
+ Gets or sets the logging event name for the logging method.
+
+
+ This will equal the method name if not specified.
+
+
+
+
+ Gets the logging level for the logging method.
+
+
+
+
+ Gets the message text for the logging method.
+
+
+
+
+ Gets the flag to skip IsEnabled check for the logging method.
+
+
+
+
+ Delegates to a new instance using the full name of the given type, created by the
+ provided .
+
+ The type.
+
+
+
+ Creates a new .
+
+ The factory.
+
+
+
+
+
+
+
+
+
+
+
+
+ Defines logging severity levels.
+
+
+
+
+ Logs that contain the most detailed messages. These messages may contain sensitive application data.
+ These messages are disabled by default and should never be enabled in a production environment.
+
+
+
+
+ Logs that are used for interactive investigation during development. These logs should primarily contain
+ information useful for debugging and have no long-term value.
+
+
+
+
+ Logs that track the general flow of the application. These logs should have long-term value.
+
+
+
+
+ Logs that highlight an abnormal or unexpected event in the application flow, but do not otherwise cause the
+ application execution to stop.
+
+
+
+
+ Logs that highlight when the current flow of execution is stopped due to a failure. These should indicate a
+ failure in the current activity, not an application-wide failure.
+
+
+
+
+ Logs that describe an unrecoverable application or system crash, or a catastrophic failure that requires
+ immediate attention.
+
+
+
+
+ Not used for writing log messages. Specifies that a logging category should not write any messages.
+
+
+
+
+ Formatter to convert the named format items like {NamedformatItem} to format.
+
+
+
+
+ Scope provider that does nothing.
+
+
+
+
+ Returns a cached instance of .
+
+
+
+
+
+
+
+
+
+
+ An empty scope without any logic
+
+
+
+
+
+
+
+ Pretty print a type name.
+
+ The .
+ true to print a fully qualified name.
+ true to include generic parameter names.
+ true to include generic parameters.
+ Character to use as a delimiter in nested type names
+ The pretty printed type name.
+
+
+
+ Get a pinnable reference to the builder.
+ Does not ensure there is a null char after
+ This overload is pattern matched in the C# 7.3+ compiler so you can omit
+ the explicit method call, and write eg "fixed (char* c = builder)"
+
+
+
+
+ Get a pinnable reference to the builder.
+
+ Ensures that the builder has a null char after
+
+
+ Returns the underlying storage of the builder.
+
+
+
+ Returns a span around the contents of the builder.
+
+ Ensures that the builder has a null char after
+
+
+
+ Resize the internal buffer either by doubling current buffer size or
+ by adding to
+ whichever is greater.
+
+
+ Number of chars requested beyond current position.
+
+
+
+ Throws an if is null.
+ The reference type argument to validate as non-null.
+ The name of the parameter with which corresponds.
+
+
+
+ Throws either an or an
+ if the specified string is or whitespace respectively.
+
+ String to be checked for or whitespace.
+ The name of the parameter being checked.
+ The original value of .
+
+
+
+ Attribute used to indicate a source generator should create a function for marshalling
+ arguments instead of relying on the runtime to generate an equivalent marshalling function at run-time.
+
+
+ This attribute is meaningless if the source generator associated with it is not enabled.
+ The current built-in source generator only supports C# and only supplies an implementation when
+ applied to static, partial, non-generic methods.
+
+
+
+
+ Initializes a new instance of the .
+
+ Name of the library containing the import.
+
+
+
+ Gets the name of the library containing the import.
+
+
+
+
+ Gets or sets the name of the entry point to be called.
+
+
+
+
+ Gets or sets how to marshal string arguments to the method.
+
+
+ If this field is set to a value other than ,
+ must not be specified.
+
+
+
+
+ Gets or sets the used to control how string arguments to the method are marshalled.
+
+
+ If this field is specified, must not be specified
+ or must be set to .
+
+
+
+
+ Gets or sets whether the callee sets an error (SetLastError on Windows or errno
+ on other platforms) before returning from the attributed method.
+
+
+
+
+ Specifies how strings should be marshalled for generated p/invokes
+
+
+
+
+ Indicates the user is suppling a specific marshaller in .
+
+
+
+
+ Use the platform-provided UTF-8 marshaller.
+
+
+
+
+ Use the platform-provided UTF-16 marshaller.
+
+
+
+ The format string '{0}' does not have the expected number of named parameters. Expected {1} parameter(s) but found {2} parameter(s).
+
+
+ Specifies that null is allowed as an input even if the corresponding type disallows it.
+
+
+ Specifies that null is disallowed as an input even if the corresponding type allows it.
+
+
+ Specifies that an output may be null even if the corresponding type disallows it.
+
+
+ Specifies that an output will not be null even if the corresponding type allows it. Specifies that an input argument was not null when the call returns.
+
+
+ Specifies that when a method returns , the parameter may be null even if the corresponding type disallows it.
+
+
+ Initializes the attribute with the specified return value condition.
+
+ The return value condition. If the method returns this value, the associated parameter may be null.
+
+
+
+ Gets the return value condition.
+
+
+ Specifies that when a method returns , the parameter will not be null even if the corresponding type allows it.
+
+
+ Initializes the attribute with the specified return value condition.
+
+ The return value condition. If the method returns this value, the associated parameter will not be null.
+
+
+
+ Gets the return value condition.
+
+
+ Specifies that the output will be non-null if the named parameter is non-null.
+
+
+ Initializes the attribute with the associated parameter name.
+
+ The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null.
+
+
+
+ Gets the associated parameter name.
+
+
+ Applied to a method that will never return under any circumstance.
+
+
+ Specifies that the method will not return if the associated Boolean parameter is passed the specified value.
+
+
+ Initializes the attribute with the specified parameter value.
+
+ The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to
+ the associated parameter matches this value.
+
+
+
+ Gets the condition parameter value.
+
+
+ Specifies that the method or property will ensure that the listed field and property members have not-null values.
+
+
+ Initializes the attribute with a field or property member.
+
+ The field or property member that is promised to be not-null.
+
+
+
+ Initializes the attribute with the list of field and property members.
+
+ The list of field and property members that are promised to be not-null.
+
+
+
+ Gets field or property member names.
+
+
+ Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition.
+
+
+ Initializes the attribute with the specified return value condition and a field or property member.
+
+ The return value condition. If the method returns this value, the associated parameter will not be null.
+
+
+ The field or property member that is promised to be not-null.
+
+
+
+ Initializes the attribute with the specified return value condition and list of field and property members.
+
+ The return value condition. If the method returns this value, the associated parameter will not be null.
+
+
+ The list of field and property members that are promised to be not-null.
+
+
+
+ Gets the return value condition.
+
+
+ Gets field or property member names.
+
+
+
diff --git a/SalesPacking_MES_API_Project/bin/Debug/MySql.Data.dll b/SalesPacking_MES_API_Project/bin/Debug/MySql.Data.dll
new file mode 100644
index 0000000..362c9b8
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/MySql.Data.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/MySql.Data.xml b/SalesPacking_MES_API_Project/bin/Debug/MySql.Data.xml
new file mode 100644
index 0000000..ccd2628
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/MySql.Data.xml
@@ -0,0 +1,17757 @@
+
+
+
+ MySql.Data
+
+
+
+
+ The implementation of the caching_sha2_password authentication plugin.
+
+
+
+
+ Generates a byte array set with the password of the user in the expected format based on the
+ SSL settings of the current connection.
+
+ A byte array that contains the password of the user in the expected format.
+
+
+
+ Defines the stage of the authentication.
+
+
+
+
+ Defines the default behavior for an authentication plugin.
+
+
+
+
+ Gets or sets the authentication data returned by the server.
+
+
+
+
+ This is a factory method that is used only internally. It creates an auth plugin based on the method type
+
+
+
+
+
+
+
+
+ Gets the connection option settings.
+
+
+
+
+ Gets the server version associated with this authentication plugin.
+
+
+
+
+ Gets the encoding assigned to the native driver.
+
+
+
+
+ Sets the authentication data required to encode, encrypt, or convert the password of the user.
+
+ A byte array containing the authentication data provided by the server.
+ This method may be overriden based on the requirements by the implementing authentication plugin.
+
+
+
+ Defines the behavior when checking for constraints.
+
+ This method is intended to be overriden.
+
+
+
+ Throws a that encapsulates the original exception.
+
+ The exception to encapsulate.
+
+
+
+ Defines the behavior when authentication is successful.
+
+ This method is intended to be overriden.
+
+
+
+ Defines the behavior when more data is required from the server.
+
+ The data returned by the server.
+ The data to return to the server.
+ This method is intended to be overriden.
+
+
+
+ Gets the plugin name based on the authentication plugin type defined during the creation of this object.
+
+
+
+
+ Gets the user name associated to the connection settings.
+
+ The user name associated to the connection settings.
+
+
+
+ Gets the encoded, encrypted, or converted password based on the authentication plugin type defined during the creation of this object.
+ This method is intended to be overriden.
+
+ An object containing the encoded, encrypted, or converted password.
+
+
+
+ Allows connections to a user account set with the mysql_native_password authentication plugin.
+
+
+
+
+ Returns a byte array containing the proper encryption of the
+ given password/seed according to the new 4.1.1 authentication scheme.
+
+
+
+
+
+
+
+ The implementation of the sha256_password authentication plugin.
+
+
+
+
+ The byte array representation of the public key provided by the server.
+
+
+
+
+ Applies XOR to the byte arrays provided as input.
+
+ A byte array that contains the results of the XOR operation.
+
+
+
+
+
+
+
+
+ Defines the type of the security buffer.
+
+
+
+
+ Defines a security handle.
+
+
+
+
+ Describes a buffer allocated by a transport to pass to a security package.
+
+
+
+
+ Specifies the size, in bytes, of the buffer.
+
+
+
+
+ Bit flags that indicate the type of the buffer.
+
+
+
+
+ Pointer to a buffer.
+
+
+
+
+ Hold a numeric value used in defining other data types.
+
+
+
+
+ Least significant digits.
+
+
+
+
+ Most significant digits.
+
+
+
+
+ Holds a pointer used to define a security handle.
+
+
+
+
+ Least significant digits.
+
+
+
+
+ Most significant digits.
+
+
+
+
+ Indicates the sizes of important structures used in the message support functions.
+
+
+
+
+ Specifies the maximum size of the security token used in the authentication changes.
+
+
+
+
+ Specifies the maximum size of the signature created by the MakeSignature function.
+ This member must be zero if integrity services are not requested or available.
+
+
+
+
+ Specifies the preferred integral size of the messages.
+
+
+
+
+ Size of the security trailer to be appended to messages.
+ This member should be zero if the relevant services are not requested or available.
+
+
+
+
+ Allows importing large amounts of data into a database with bulk loading.
+
+
+
+
+ Gets or sets the connection.
+
+ The connection.
+
+
+
+ Gets or sets the field terminator.
+
+ The field terminator.
+
+
+
+ Gets or sets the line terminator.
+
+ The line terminator.
+
+
+
+ Gets or sets the name of the table.
+
+ The name of the table.
+
+
+
+ Gets or sets the character set.
+
+ The character set.
+
+
+
+ Gets or sets the name of the file.
+
+ The name of the file.
+
+
+
+ Gets or sets the timeout.
+
+ The timeout.
+
+
+
+ Gets or sets a value indicating whether the file name that is to be loaded
+ is local to the client or not. The default value is false.
+
+ true if local; otherwise, false.
+
+
+
+ Gets or sets the number of lines to skip.
+
+ The number of lines to skip.
+
+
+
+ Gets or sets the line prefix.
+
+ The line prefix.
+
+
+
+ Gets or sets the field quotation character.
+
+ The field quotation character.
+
+
+
+ Gets or sets a value indicating whether [field quotation optional].
+
+
+ true if [field quotation optional]; otherwise, false.
+
+
+
+
+ Gets or sets the escape character.
+
+ The escape character.
+
+
+
+ Gets or sets the conflict option.
+
+ The conflict option.
+
+
+
+ Gets or sets the priority.
+
+ The priority.
+
+
+
+ Gets the columns.
+
+ The columns.
+
+
+
+ Gets the expressions.
+
+ The expressions.
+
+
+
+ Executes the load operation.
+
+ The number of rows inserted.
+
+
+
+ Asynchronous version of the load operation.
+
+ The number of rows inserted.
+
+
+
+ Executes the load operation asynchronously while the cancellation isn't requested.
+
+ The cancellation token.
+ The number of rows inserted.
+
+
+
+ Represents the priority set for bulk loading operations.
+
+
+
+
+ This is the default and indicates normal priority
+
+
+
+
+ Low priority will cause the load operation to wait until all readers of the table
+ have finished. This only affects storage engines that use only table-level locking
+ such as MyISAM, Memory, and Merge.
+
+
+
+
+ Concurrent priority is only relevant for MyISAM tables and signals that if the table
+ has no free blocks in the middle that other readers can retrieve data from the table
+ while the load operation is happening.
+
+
+
+
+ Represents the behavior when conflicts arise during bulk loading operations.
+
+
+
+
+ This is the default and indicates normal operation. In the event of a LOCAL load, this
+ is the same as ignore. When the data file is on the server, then a key conflict will
+ cause an error to be thrown and the rest of the data file ignored.
+
+
+
+
+ Replace column values when a key conflict occurs.
+
+
+
+
+ Ignore any rows where the primary key conflicts.
+
+
+
+
+ Summary description for CharSetMap.
+
+
+
+
+ Returns the text encoding for a given MySQL character set name
+
+ Version of the connection requesting the encoding
+ Name of the character set to get the encoding for
+ Encoding object for the given character set name
+
+
+
+ Initializes the mapping.
+
+
+
+ Represents a SQL statement to execute against a MySQL database. This class cannot be inherited.
+ MySqlCommand features the following methods for executing commands at a MySQL database:
+
+
+ Item
+ Description
+
+ -
+
+ ExecuteReader
+
+ Executes commands that return rows.
+
+ -
+
+ ExecuteNonQuery
+
+ Executes commands such as SQL INSERT, DELETE, and UPDATE statements.
+
+ -
+
+ ExecuteScalar
+
+ Retrieves a single value (for example, an aggregate value) from a database.
+
+
+
+ You can reset the CommandText property and reuse the MySqlCommand
+ object. However, you must close the MySqlDataReader
+ before you can execute a new or previous command.
+
+ If a MySqlException is
+ generated by the method executing a MySqlCommand, the MySqlConnection
+ remains open. It is the responsibility of the programmer to close the connection.
+
+
+ Using the '@' symbol for paramters is now the preferred approach although the old pattern of using
+ '?' is still supported. Please be aware though that using '@' can cause conflicts when user variables
+ are also used. To help with this situation please see the documentation on the 'allow user variables'
+ connection string option. The 'old syntax' connection string option has now been deprecated.
+
+
+ The following example creates a MySqlCommand and
+ a MySqlConnection. The MySqlConnection is opened and set as the Connection
+ for the MySqlCommand. The example then calls ExecuteNonQuery,
+ and closes the connection. To accomplish this, the ExecuteNonQuery is
+ passed a connection string and a query string that is a SQL INSERT
+ statement.
+
+ Public Sub InsertRow(myConnectionString As String)
+ " If the connection string is null, use a default.
+ If myConnectionString = "" Then
+ myConnectionString = "Database=Test;Data Source=localhost;User Id=username;Password=pass"
+ End If
+ Dim myConnection As New MySqlConnection(myConnectionString)
+ Dim myInsertQuery As String = "INSERT INTO Orders (id, customerId, amount) Values(1001, 23, 30.66)"
+ Dim myCommand As New MySqlCommand(myInsertQuery)
+ myCommand.Connection = myConnection
+ myConnection.Open()
+ myCommand.ExecuteNonQuery()
+ myCommand.Connection.Close()
+ End Sub
+
+
+ public void InsertRow(string myConnectionString)
+ {
+ // If the connection string is null, use a default.
+ if(myConnectionString == "")
+ {
+ myConnectionString = "Database=Test;Data Source=localhost;User Id=username;Password=pass";
+ }
+ MySqlConnection myConnection = new MySqlConnection(myConnectionString);
+ string myInsertQuery = "INSERT INTO Orders (id, customerId, amount) Values(1001, 23, 30.66)";
+ MySqlCommand myCommand = new MySqlCommand(myInsertQuery);
+ myCommand.Connection = myConnection;
+ myConnection.Open();
+ myCommand.ExecuteNonQuery();
+ myCommand.Connection.Close();
+ }
+
+
+
+
+
+
+ Initializes a new instance of the MySqlCommand class.
+
+
+ The following example creates a MySqlCommand and sets some of its properties.
+
+
+ This example shows how to use one of the overloaded
+ versions of the MySqlCommand constructor. For other examples that might be available,
+ see the individual overload topics.
+
+
+
+ Public Sub CreateMySqlCommand()
+ Dim myConnection As New MySqlConnection _
+ ("Persist Security Info=False;database=test;server=myServer")
+ myConnection.Open()
+ Dim myTrans As MySqlTransaction = myConnection.BeginTransaction()
+ Dim mySelectQuery As String = "SELECT * FROM MyTable"
+ Dim myCommand As New MySqlCommand(mySelectQuery, myConnection, myTrans)
+ myCommand.CommandTimeout = 20
+ End Sub
+
+
+ public void CreateMySqlCommand()
+ {
+ MySqlConnection myConnection = new MySqlConnection("Persist Security Info=False;
+ database=test;server=myServer");
+ myConnection.Open();
+ MySqlTransaction myTrans = myConnection.BeginTransaction();
+ string mySelectQuery = "SELECT * FROM myTable";
+ MySqlCommand myCommand = new MySqlCommand(mySelectQuery, myConnection,myTrans);
+ myCommand.CommandTimeout = 20;
+ }
+
+
+ public:
+ void CreateMySqlCommand()
+ {
+ MySqlConnection* myConnection = new MySqlConnection(S"Persist Security Info=False;
+ database=test;server=myServer");
+ myConnection->Open();
+ MySqlTransaction* myTrans = myConnection->BeginTransaction();
+ String* mySelectQuery = S"SELECT * FROM myTable";
+ MySqlCommand* myCommand = new MySqlCommand(mySelectQuery, myConnection, myTrans);
+ myCommand->CommandTimeout = 20;
+ };
+
+
+
+ Initializes a new instance of the MySqlCommand class.
+
+ The base constructor initializes all fields to their default values. The
+ following table shows initial property values for an instance of .
+
+
+ Properties
+ Initial Value
+
+ -
+
+
+
+ empty string ("")
+
+ -
+
+
+
+ 0
+
+ -
+
+
+
+ CommandType.Text
+
+ -
+
+
+
+ Null
+
+
+
+ You can change the value for any of these properties through a separate call to
+ the property.
+
+
+ The following example creates a and
+ sets some of its properties.
+
+
+ Public Sub CreateMySqlCommand()
+ Dim myCommand As New MySqlCommand()
+ myCommand.CommandType = CommandType.Text
+ End Sub
+
+
+ public void CreateMySqlCommand()
+ {
+ MySqlCommand myCommand = new MySqlCommand();
+ myCommand.CommandType = CommandType.Text;
+ }
+
+
+
+
+
+ Initializes a new instance of the class with the text of the query.
+ The text of the query.
+ When an instance of is created,
+ the following read/write properties are set to initial values.
+
+
+
+ Properties
+ Initial Value
+
+ -
+
+
+
+
+ cmdText
+
+
+ -
+
+
+
+ 0
+
+ -
+
+
+
+ CommandType.Text
+
+ -
+
+
+
+ Null
+
+
+
+ You can change the value for any of these properties through a separate call to
+ the property.
+
+
+ The following example creates a and
+ sets some of its properties.
+
+
+ Public Sub CreateMySqlCommand()
+ Dim sql as String = "SELECT * FROM mytable"
+ Dim myCommand As New MySqlCommand(sql)
+ myCommand.CommandType = CommandType.Text
+ End Sub
+
+
+ public void CreateMySqlCommand()
+ {
+ string sql = "SELECT * FROM mytable";
+ MySqlCommand myCommand = new MySqlCommand(sql);
+ myCommand.CommandType = CommandType.Text;
+ }
+
+
+
+
+
+ Initializes a new instance of the class
+ with the text of the query and a .
+ The text of the query.
+ A that represents the
+ connection to an instance of SQL Server.
+
+ When an instance of is created,
+ the following read/write properties are set to initial values.
+
+
+
+ Properties
+ Initial Value
+
+ -
+
+
+
+
+ cmdText
+
+
+ -
+
+
+
+ 0
+
+ -
+
+
+
+ CommandType.Text
+
+ -
+
+
+
+
+ connection
+
+
+
+
+ You can change the value for any of these properties through a separate call to
+ the property.
+
+
+ The following example creates a and
+ sets some of its properties.
+
+
+ Public Sub CreateMySqlCommand()
+ Dim conn as new MySqlConnection("server=myServer")
+ Dim sql as String = "SELECT * FROM mytable"
+ Dim myCommand As New MySqlCommand(sql, conn)
+ myCommand.CommandType = CommandType.Text
+ End Sub
+
+
+ public void CreateMySqlCommand()
+ {
+ MySqlConnection conn = new MySqlConnection("server=myserver")
+ string sql = "SELECT * FROM mytable";
+ MySqlCommand myCommand = new MySqlCommand(sql, conn);
+ myCommand.CommandType = CommandType.Text;
+ }
+
+
+
+
+
+ Initializes a new instance of the class
+ with the text of the query, a , and the
+ .
+ The text of the query.
+ A that represents the
+ connection to an instance of SQL Server.
+
+ The in which the executes.
+
+ When an instance of is created,
+ the following read/write properties are set to initial values.
+
+
+
+ Properties
+ Initial Value
+
+ -
+
+
+
+
+ cmdText
+
+
+ -
+
+
+
+ 0
+
+ -
+
+
+
+ CommandType.Text
+
+ -
+
+
+
+
+ connection
+
+
+
+
+ You can change the value for any of these properties through a separate call to
+ the property.
+
+
+ The following example creates a and
+ sets some of its properties.
+
+
+ Public Sub CreateMySqlCommand()
+ Dim conn as new MySqlConnection("server=myServer")
+ conn.Open();
+ Dim txn as MySqlTransaction = conn.BeginTransaction()
+ Dim sql as String = "SELECT * FROM mytable"
+ Dim myCommand As New MySqlCommand(sql, conn, txn)
+ myCommand.CommandType = CommandType.Text
+ End Sub
+
+
+ public void CreateMySqlCommand()
+ {
+ MySqlConnection conn = new MySqlConnection("server=myserver")
+ conn.Open();
+ MySqlTransaction txn = conn.BeginTransaction();
+ string sql = "SELECT * FROM mytable";
+ MySqlCommand myCommand = new MySqlCommand(sql, conn, txn);
+ myCommand.CommandType = CommandType.Text;
+ }
+
+
+
+
+
+ Gets the last inserted id.
+
+
+
+
+
+ Gets or sets the SQL statement to execute at the data source.
+
+ The SQL statement or stored procedure to execute. The default is an empty string.
+
+
+ When the property is set to StoredProcedure,
+ the CommandText property should be set to the name of the stored procedure.
+ The user may be required to use escape character syntax if the stored procedure name
+ contains any special characters. The command executes this stored procedure when
+ you call one of the Execute methods. Starting with Connector/NET 5.0, having both a stored function
+ and stored procedure with the same name in the same database is not supported. It is
+ suggested that you provide unqiue names for your stored routines.
+
+
+ The following example creates a and sets some of its properties.
+
+ Public Sub CreateMySqlCommand()
+ Dim myCommand As New MySqlCommand()
+ myCommand.CommandText = "SELECT * FROM Mytable ORDER BY id"
+ myCommand.CommandType = CommandType.Text
+ End Sub
+
+
+ public void CreateMySqlCommand()
+ {
+ MySqlCommand myCommand = new MySqlCommand();
+ myCommand.CommandText = "SELECT * FROM mytable ORDER BY id";
+ myCommand.CommandType = CommandType.Text;
+ }
+
+
+
+
+
+ Gets or sets the wait time before terminating the attempt to execute a command
+ and generating an error.
+
+ The time (in seconds) to wait for the command to execute. The default is 30
+ seconds.
+
+ CommandTimeout is dependent on the ability of MySQL to cancel an executing query.
+ Because of this, CommandTimeout is only supported when connected to MySQL
+ version 5.0.0 or higher.
+
+
+
+
+ Gets or sets a value indicating how the property is to be interpreted.
+
+ One of the values. The default is Text.
+
+
+ When you set the CommandType property to StoredProcedure, you
+ should set the property to the name of the stored
+ procedure. The command executes this stored procedure when you call one of the
+ Execute methods.
+
+
+ The following example creates a and sets some of its properties.
+
+ Public Sub CreateMySqlCommand()
+ Dim myCommand As New MySqlCommand()
+ myCommand.CommandType = CommandType.Text
+ End Sub
+
+
+ public void CreateMySqlCommand()
+ {
+ MySqlCommand myCommand = new MySqlCommand();
+ myCommand.CommandType = CommandType.Text;
+ }
+
+
+
+
+
+ Gets a boolean value that indicates whether the Prepared method has been called.
+
+
+
+
+
+ Gets or sets the used by this instance of the
+ .
+
+ The connection to a data source. The default value is a null reference
+ (Nothing in Visual Basic).
+
+
+ If you set Connection while a transaction is in progress and the
+ property is not null, an
+ is generated. If the Transaction property is not null and the transaction
+ has already been committed or rolled back, Transaction is set to
+ null.
+
+
+ The following example creates a and sets some of its properties.
+
+ Public Sub CreateMySqlCommand()
+ Dim mySelectQuery As String = "SELECT * FROM mytable ORDER BY id"
+ Dim myConnectString As String = "Persist Security Info=False;database=test;server=myServer"
+ Dim myCommand As New MySqlCommand(mySelectQuery)
+ myCommand.Connection = New MySqlConnection(myConnectString)
+ myCommand.CommandType = CommandType.Text
+ End Sub
+
+
+ public void CreateMySqlCommand()
+ {
+ string mySelectQuery = "SELECT * FROM mytable ORDER BY id";
+ string myConnectString = "Persist Security Info=False;database=test;server=myServer";
+ MySqlCommand myCommand = new MySqlCommand(mySelectQuery);
+ myCommand.Connection = new MySqlConnection(myConnectString);
+ myCommand.CommandType = CommandType.Text;
+ }
+
+
+
+
+
+ Get the
+
+ The parameters of the SQL statement or stored procedure. The default is
+ an empty collection.
+
+ Connector/NET does not support unnamed parameters. Every parameter added to the collection must
+ have an associated name.
+
+ The following example creates a and displays its parameters.
+ To accomplish this, the method is passed a , a query string
+ that is a SQL SELECT statement, and an array of objects.
+
+ Public Sub CreateMySqlCommand(myConnection As MySqlConnection, _
+ mySelectQuery As String, myParamArray() As MySqlParameter)
+ Dim myCommand As New MySqlCommand(mySelectQuery, myConnection)
+ myCommand.CommandText = "SELECT id, name FROM mytable WHERE age=@age"
+ myCommand.UpdatedRowSource = UpdateRowSource.Both
+ myCommand.Parameters.Add(myParamArray)
+ Dim j As Integer
+ For j = 0 To myCommand.Parameters.Count - 1
+ myCommand.Parameters.Add(myParamArray(j))
+ Next j
+ Dim myMessage As String = ""
+ Dim i As Integer
+ For i = 0 To myCommand.Parameters.Count - 1
+ myMessage += myCommand.Parameters(i).ToString() & ControlChars.Cr
+ Next i
+ Console.WriteLine(myMessage)
+ End Sub
+
+
+ public void CreateMySqlCommand(MySqlConnection myConnection, string mySelectQuery,
+ MySqlParameter[] myParamArray)
+ {
+ MySqlCommand myCommand = new MySqlCommand(mySelectQuery, myConnection);
+ myCommand.CommandText = "SELECT id, name FROM mytable WHERE age=@age";
+ myCommand.Parameters.Add(myParamArray);
+ for (int j=0; j<myParamArray.Length; j++)
+ {
+ myCommand.Parameters.Add(myParamArray[j]) ;
+ }
+ string myMessage = "";
+ for (int i = 0; i < myCommand.Parameters.Count; i++)
+ {
+ myMessage += myCommand.Parameters[i].ToString() + "\n";
+ }
+ MessageBox.Show(myMessage);
+ }
+
+
+
+
+
+ Gets or sets the within which the executes.
+
+ The . The default value is a null reference (Nothing in Visual Basic).
+
+ You cannot set the Transaction property if it is already set to a
+ specific value, and the command is in the process of executing. If you set the
+ transaction property to a object that is not connected
+ to the same as the object,
+ an exception will be thrown the next time you attempt to execute a statement.
+
+
+
+
+ Gets or sets a boolean value that indicates whether caching is enabled.
+
+
+
+
+ Gets or sets the seconds for how long a TableDirect result should be cached.
+
+
+
+
+ Gets or sets how command results are applied to the DataRow when used by the
+ Update method of the DbDataAdapter.
+
+
+
+
+ Gets or sets a value indicating whether the command object should be visible in a Windows Form Designer control.
+
+
+
+
+ Attempts to cancel the execution of a currently active command
+
+
+ Cancelling a currently active query only works with MySQL versions 5.0.0 and higher.
+
+
+
+
+ Creates a new instance of a object.
+
+
+ This method is a strongly-typed version of .
+
+ A object.
+
+
+
+
+ Check the connection to make sure
+ - it is open
+ - it is not currently being used by a reader
+ - and we have the right version of MySQL for the requested command type
+
+
+
+
+ Executes a SQL statement against the connection and returns the number of rows affected.
+ Number of rows affected
+ You can use ExecuteNonQuery to perform any type of database operation,
+ however any resultsets returned will not be available. Any output parameters
+ used in calling a stored procedure will be populated with data and can be
+ retrieved after execution is complete.
+ For UPDATE, INSERT, and DELETE statements, the return value is the number
+ of rows affected by the command. For all other types of statements, the return
+ value is -1.
+
+ The following example creates a MySqlCommand and then
+ executes it using ExecuteNonQuery. The example is passed a string that is a
+ SQL statement (such as UPDATE, INSERT, or DELETE) and a string to use to
+ connect to the data source.
+
+ Public Sub CreateMySqlCommand(myExecuteQuery As String, myConnection As MySqlConnection)
+ Dim myCommand As New MySqlCommand(myExecuteQuery, myConnection)
+ myCommand.Connection.Open()
+ myCommand.ExecuteNonQuery()
+ myConnection.Close()
+ End Sub
+
+
+ public void CreateMySqlCommand(string myExecuteQuery, MySqlConnection myConnection)
+ {
+ MySqlCommand myCommand = new MySqlCommand(myExecuteQuery, myConnection);
+ myCommand.Connection.Open();
+ myCommand.ExecuteNonQuery();
+ myConnection.Close();
+ }
+
+
+
+
+
+ Reset reader to null, to avoid "There is already an open data reader"
+ on the next ExecuteReader(). Used in error handling scenarios.
+
+
+
+
+ Reset SQL_SELECT_LIMIT that could have been modified by CommandBehavior.
+
+
+
+
+ Sends the to the Connection
+ and builds a .
+
+ A object.
+
+
+ When the property is set to StoredProcedure,
+ the property should be set to the name of the stored
+ procedure. The command executes this stored procedure when you call
+ ExecuteReader.
+
+
+ While the is in use, the associated
+ is busy serving the MySqlDataReader.
+ While in this state, no other operations can be performed on the
+ MySqlConnection other than closing it. This is the case until the
+ method of the MySqlDataReader is called.
+
+
+ The following example creates a , then executes it by
+ passing a string that is a SQL SELECT statement, and a string to use to connect to the
+ data source.
+
+ Public Sub CreateMySqlDataReader(mySelectQuery As String, myConnection As MySqlConnection)
+ Dim myCommand As New MySqlCommand(mySelectQuery, myConnection)
+ myConnection.Open()
+ Dim myReader As MySqlDataReader
+ myReader = myCommand.ExecuteReader()
+ Try
+ While myReader.Read()
+ Console.WriteLine(myReader.GetString(0))
+ End While
+ Finally
+ myReader.Close
+ myConnection.Close
+ End Try
+ End Sub
+
+
+ public void CreateMySqlDataReader(string mySelectQuery, MySqlConnection myConnection)
+ {
+ MySqlCommand myCommand = new MySqlCommand(mySelectQuery, myConnection);
+ myConnection.Open();
+ MMySqlDataReader myReader;
+ myReader = myCommand.ExecuteReader();
+ try
+ {
+ while(myReader.Read())
+ {
+ Console.WriteLine(myReader.GetString(0));
+ }
+ }
+ finally
+ {
+ myReader.Close();
+ myConnection.Close();
+ }
+ }
+
+
+
+
+
+ Sends the to the Connection,
+ and builds a using one of the values.
+
+ One of the values.
+
+
+ When the property is set to StoredProcedure,
+ the property should be set to the name of the stored
+ procedure. The command executes this stored procedure when you call
+ ExecuteReader.
+
+
+ The supports a special mode that enables large binary
+ values to be read efficiently. For more information, see the SequentialAccess
+ setting for .
+
+
+ While the is in use, the associated
+ is busy serving the MySqlDataReader.
+ While in this state, no other operations can be performed on the
+ MySqlConnection other than closing it. This is the case until the
+ method of the MySqlDataReader is called.
+ If the MySqlDataReader is created with CommandBehavior set to
+ CloseConnection, closing the MySqlDataReader closes the connection
+ automatically.
+
+
+ When calling ExecuteReader with the SingleRow behavior, you should be aware that using a limit
+ clause in your SQL will cause all rows (up to the limit given) to be retrieved by the client. The
+ method will still return false after the first row but pulling all rows of data
+ into the client will have a performance impact. If the limit clause is not necessary, it should
+ be avoided.
+
+
+ A object.
+
+
+
+
+ Executes the query, and returns the first column of the first row in the
+ result set returned by the query. Extra columns or rows are ignored.
+
+ The first column of the first row in the result set, or a null reference if the
+ result set is empty
+
+
+ Use the ExecuteScalar method to retrieve a single value (for example,
+ an aggregate value) from a database. This requires less code than using the
+ method, and then performing the operations necessary
+ to generate the single value using the data returned by a
+
+
+ The following example creates a and then
+ executes it using ExecuteScalar. The example is passed a string that is a
+ SQL statement that returns an aggregate result, and a string to use to
+ connect to the data source.
+
+
+ Public Sub CreateMySqlCommand(myScalarQuery As String, myConnection As MySqlConnection)
+ Dim myCommand As New MySqlCommand(myScalarQuery, myConnection)
+ myCommand.Connection.Open()
+ myCommand.ExecuteScalar()
+ myConnection.Close()
+ End Sub
+
+
+ public void CreateMySqlCommand(string myScalarQuery, MySqlConnection myConnection)
+ {
+ MySqlCommand myCommand = new MySqlCommand(myScalarQuery, myConnection);
+ myCommand.Connection.Open();
+ myCommand.ExecuteScalar();
+ myConnection.Close();
+ }
+
+
+ public:
+ void CreateMySqlCommand(String* myScalarQuery, MySqlConnection* myConnection)
+ {
+ MySqlCommand* myCommand = new MySqlCommand(myScalarQuery, myConnection);
+ myCommand->Connection->Open();
+ myCommand->ExecuteScalar();
+ myConnection->Close();
+ }
+
+
+
+
+
+
+
+
+
+ Creates a prepared version of the command on an instance of MySQL Server.
+
+
+ Prepared statements are only supported on MySQL version 4.1 and higher. Calling
+ prepare while connected to earlier versions of MySQL will succeed but will execute
+ the statement in the same way as unprepared.
+
+
+ The following example demonstrates the use of the Prepare method.
+
+ public sub PrepareExample()
+ Dim cmd as New MySqlCommand("INSERT INTO mytable VALUES (@val)", myConnection)
+ cmd.Parameters.Add( "@val", 10 )
+ cmd.Prepare()
+ cmd.ExecuteNonQuery()
+
+ cmd.Parameters(0).Value = 20
+ cmd.ExecuteNonQuery()
+ end sub
+
+
+ private void PrepareExample()
+ {
+ MySqlCommand cmd = new MySqlCommand("INSERT INTO mytable VALUES (@val)", myConnection);
+ cmd.Parameters.Add( "@val", 10 );
+ cmd.Prepare();
+ cmd.ExecuteNonQuery();
+
+ cmd.Parameters[0].Value = 20;
+ cmd.ExecuteNonQuery();
+ }
+
+
+
+
+
+ Initiates the asynchronous execution of the SQL statement or stored procedure
+ that is described by this , and retrieves one or more
+ result sets from the server.
+
+ An that can be used to poll, wait for results,
+ or both; this value is also needed when invoking EndExecuteReader,
+ which returns a instance that can be used to retrieve
+ the returned rows.
+
+
+
+ Initiates the asynchronous execution of the SQL statement or stored procedure
+ that is described by this using one of the
+ CommandBehavior values.
+
+ One of the values, indicating
+ options for statement execution and data retrieval.
+ An that can be used to poll, wait for results,
+ or both; this value is also needed when invoking EndExecuteReader,
+ which returns a instance that can be used to retrieve
+ the returned rows.
+
+
+
+ Finishes asynchronous execution of a SQL statement, returning the requested
+ .
+
+ The returned by the call to
+ .
+ A MySqlDataReader object that can be used to retrieve the requested rows.
+
+
+
+ Initiates the asynchronous execution of the SQL statement or stored procedure
+ that is described by this .
+
+
+ An delegate that is invoked when the command's
+ execution has completed. Pass a null reference (Nothing in Visual Basic)
+ to indicate that no callback is required.
+ A user-defined state object that is passed to the
+ callback procedure. Retrieve this object from within the callback procedure
+ using the property.
+ An that can be used to poll or wait for results,
+ or both; this value is also needed when invoking ,
+ which returns the number of affected rows.
+
+
+
+ Initiates the asynchronous execution of the SQL statement or stored procedure
+ that is described by this .
+
+ An that can be used to poll or wait for results,
+ or both; this value is also needed when invoking ,
+ which returns the number of affected rows.
+
+
+
+ Finishes asynchronous execution of a SQL statement.
+
+ The returned by the call
+ to .
+
+
+
+
+ Verifies if a query is valid even if it has not spaces or is a stored procedure call
+
+ Query to validate
+ If it is necessary to add call statement
+
+
+
+ Creates a clone of this object. CommandText, Connection, and Transaction properties
+ are included as well as the entire parameter list.
+
+ The cloned object.
+
+
+
+ Summary description for API.
+
+
+
+
+ Summary description for CompressedStream.
+
+
+
+
+ Represents an open connection to a MySQL Server database. This class cannot be inherited.
+
+
+ A MySqlConnection object represents a session to a MySQL Server
+ data source. When you create an instance of MySqlConnection, all
+ properties are set to their initial values. For a list of these values, see the
+ MySqlConnection constructor.
+
+
+
+ If the MySqlConnection goes out of scope, it is not closed. Therefore,
+ you must explicitly close the connection by calling
+ or .
+
+
+ The following example creates a and
+ a MySqlConnection. The MySqlConnection is opened and set as the
+ for the MySqlCommand. The example then calls
+ , and closes the connection. To accomplish this, the ExecuteNonQuery is
+ passed a connection string and a query string that is a SQL INSERT
+ statement.
+
+
+ Public Sub InsertRow(myConnectionString As String)
+ ' If the connection string is null, use a default.
+ If myConnectionString = "" Then
+ myConnectionString = "Database=Test;Data Source=localhost;User Id=username;Password=pass"
+ End If
+ Dim myConnection As New MySqlConnection(myConnectionString)
+ Dim myInsertQuery As String = "INSERT INTO Orders (id, customerId, amount) Values(1001, 23, 30.66)"
+ Dim myCommand As New MySqlCommand(myInsertQuery)
+ myCommand.Connection = myConnection
+ myConnection.Open()
+ myCommand.ExecuteNonQuery()
+ myCommand.Connection.Close()
+ End Sub
+
+
+
+
+ public void InsertRow(string myConnectionString)
+ {
+ // If the connection string is null, use a default.
+ if(myConnectionString == "")
+ {
+ myConnectionString = "Database=Test;Data Source=localhost;User Id=username;Password=pass";
+ }
+ MySqlConnection myConnection = new MySqlConnection(myConnectionString);
+ string myInsertQuery = "INSERT INTO Orders (id, customerId, amount) Values(1001, 23, 30.66)";
+ MySqlCommand myCommand = new MySqlCommand(myInsertQuery);
+ myCommand.Connection = myConnection;
+ myConnection.Open();
+ myCommand.ExecuteNonQuery();
+ myCommand.Connection.Close();
+ }
+
+
+
+
+
+
+ The client used to handle SSH connections.
+
+
+
+ Occurs when MySQL returns warnings as a result of executing a command or query.
+
+
+
+
+ Initializes a new instance of the class.
+
+ When a new instance of is created, the read/write
+ properties are set to the following initial values unless they are specifically
+ set using their associated keywords in the property.
+
+
+
+ Properties
+ Initial Value
+
+ -
+
+
+
+ empty string ("")
+
+ -
+
+
+
+ 15
+
+ -
+
+
+
+ empty string ("")
+
+ -
+
+
+
+ empty string ("")
+
+ -
+
+
+
+ empty string ("")
+
+
+
+ You can change the value for these properties only by using the ConnectionString property.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+
+ Initializes a new instance of the class when given a string containing the connection string.
+
+ When a new instance of is created, the read/write
+ properties are set to the following initial values unless they are specifically
+ set using their associated keywords in the property.
+
+
+
+ Properties
+ Initial Value
+
+ -
+
+
+
+ empty string ("")
+
+ -
+
+
+
+ 15
+
+ -
+
+
+
+ empty string ("")
+
+ -
+
+
+
+ empty string ("")
+
+ -
+
+
+
+ empty string ("")
+
+
+
+ You can change the value for these properties only by using the ConnectionString property.
+
+ The connection properties used to open the MySQL database.
+
+
+
+ Determines whether the connection is a clone of other connection.
+
+
+
+
+ Returns the id of the server thread this connection is executing on
+
+
+
+
+ Gets the name of the MySQL server to which to connect.
+
+
+
+
+ Gets the time to wait while trying to establish a connection before terminating the attempt and generating an error.
+ The value set is less than 0.
+ A value of 0 indicates no limit, and should be avoided in a
+ because an attempt to connect
+ will wait indefinitely.
+
+ The following example creates a MySqlConnection
+ and sets some of its properties in the connection string.
+
+ Public Sub CreateSqlConnection()
+ Dim myConnection As New MySqlConnection()
+ myConnection.ConnectionString = "Persist Security Info=False;Username=user;Password=pass;database=test1;server=localhost;Connect Timeout=30"
+ myConnection.Open()
+ End Sub
+
+
+ public void CreateSqlConnection()
+ {
+ MySqlConnection myConnection = new MySqlConnection();
+ myConnection.ConnectionString = "Persist Security Info=False;Username=user;Password=pass;database=test1;server=localhost;Connect Timeout=30";
+ myConnection.Open();
+ }
+
+
+
+
+ Gets the name of the current database or the database to be used after a connection is opened.The name of the current database or the name of the database to be used after a connection is opened. The default value is an empty string.
+
+ The Database property does not update dynamically.
+ If you change the current database using a SQL statement, then this property
+ may reflect the wrong value. If you change the current database using the
+ method, this property is updated to reflect the new database.
+
+
+ The following example creates a and displays
+ some of its read-only properties.
+
+
+ Public Sub CreateMySqlConnection()
+ Dim myConnString As String = _
+ "Persist Security Info=False;database=test;server=localhost;user id=joeuser;pwd=pass"
+ Dim myConnection As New MySqlConnection( myConnString )
+ myConnection.Open()
+ MessageBox.Show( "Server Version: " + myConnection.ServerVersion _
+ + ControlChars.NewLine + "Database: " + myConnection.Database )
+ myConnection.ChangeDatabase( "test2" )
+ MessageBox.Show( "ServerVersion: " + myConnection.ServerVersion _
+ + ControlChars.NewLine + "Database: " + myConnection.Database )
+ myConnection.Close()
+ End Sub
+
+
+
+ public void CreateMySqlConnection()
+ {
+ string myConnString =
+ "Persist Security Info=False;database=test;server=localhost;user id=joeuser;pwd=pass";
+ MySqlConnection myConnection = new MySqlConnection( myConnString );
+ myConnection.Open();
+ MessageBox.Show( "Server Version: " + myConnection.ServerVersion
+ + "\nDatabase: " + myConnection.Database );
+ myConnection.ChangeDatabase( "test2" );
+ MessageBox.Show( "ServerVersion: " + myConnection.ServerVersion
+ + "\nDatabase: " + myConnection.Database );
+ myConnection.Close();
+ }
+
+
+
+
+
+ Indicates if this connection should use compression when communicating with the server.
+
+
+
+ Gets the current state of the connection.
+ A bitwise combination of the values. The default is Closed.
+
+ The allowed state changes are:
+
+ -
+ From Closed to Open, using the Open method of the connection object.
+
+ -
+ From Open to Closed, using either the Close method or the Dispose method of the connection object.
+
+
+
+ The following example creates a , opens it,
+ displays some of its properties, then closes the connection.
+
+
+ Public Sub CreateMySqlConnection(myConnString As String)
+ Dim myConnection As New MySqlConnection(myConnString)
+ myConnection.Open()
+ MessageBox.Show("ServerVersion: " + myConnection.ServerVersion _
+ + ControlChars.Cr + "State: " + myConnection.State.ToString())
+ myConnection.Close()
+ End Sub
+
+
+ public void CreateMySqlConnection(string myConnString)
+ {
+ MySqlConnection myConnection = new MySqlConnection(myConnString);
+ myConnection.Open();
+ MessageBox.Show("ServerVersion: " + myConnection.ServerVersion +
+ "\nState: " + myConnection.State.ToString());
+ myConnection.Close();
+ }
+
+
+
+
+ Gets a string containing the version of the MySQL server to which the client is connected.The version of the instance of MySQL.The connection is closed.
+ The following example creates a , opens it,
+ displays some of its properties, then closes the connection.
+
+
+ Public Sub CreateMySqlConnection(myConnString As String)
+ Dim myConnection As New MySqlConnection(myConnString)
+ myConnection.Open()
+ MessageBox.Show("ServerVersion: " + myConnection.ServerVersion _
+ + ControlChars.Cr + "State: " + myConnection.State.ToString())
+ myConnection.Close()
+ End Sub
+
+
+ public void CreateMySqlConnection(string myConnString)
+ {
+ MySqlConnection myConnection = new MySqlConnection(myConnString);
+ myConnection.Open();
+ MessageBox.Show("ServerVersion: " + myConnection.ServerVersion +
+ "\nState: " + myConnection.State.ToString());
+ myConnection.Close();
+ }
+
+
+
+
+
+ Gets or sets the string used to connect to a MySQL Server database.
+
+
+ The ConnectionString returned may not be exactly like what was originally
+ set but will be indentical in terms of keyword/value pairs. Security information
+ will not be included unless the Persist Security Info value is set to true.
+
+
+ You can use the ConnectionString property to connect to a database.
+ The following example illustrates a typical connection string.
+
+ "Persist Security Info=False;database=MyDB;server=MySqlServer;user id=myUser;Password=myPass"
+
+ The ConnectionString property can be set only when the connection is
+ closed. Many of the connection string values have corresponding read-only
+ properties. When the connection string is set, all of these properties are
+ updated, except when an error is detected. In this case, none of the properties
+ are updated. properties return only those settings contained in the
+ ConnectionString.
+
+
+ To connect to a local machine, specify "localhost" for the server. If you do not
+ specify a server, localhost is assumed.
+
+
+ Resetting the ConnectionString on a closed connection resets all
+ connection string values (and related properties) including the password. For
+ example, if you set a connection string that includes "Database= MyDb", and
+ then reset the connection string to "Data Source=myserver;User Id=myUser;Password=myPass",
+ the property is no longer set to MyDb.
+
+
+ The connection string is parsed immediately after being set. If errors in
+ syntax are found when parsing, a runtime exception, such as ,
+ is generated. Other errors can be found only when an attempt is made to open the
+ connection.
+
+
+ The basic format of a connection string consists of a series of keyword/value
+ pairs separated by semicolons. The equal sign (=) connects each keyword and its
+ value. To include values that contain a semicolon, single-quote character, or
+ double-quote character, the value must be enclosed in double quotes. If the
+ value contains both a semicolon and a double-quote character, the value can be
+ enclosed in single quotes. The single quote is also useful if the value begins
+ with a double-quote character. Conversely, the double quote can be used if the
+ value begins with a single quote. If the value contains both single-quote and
+ double-quote characters, the quote character used to enclose the value must be
+ doubled each time it occurs within the value.
+
+
+ To include preceding or trailing spaces in the string value, the value must
+ be enclosed in either single quotes or double quotes. Any leading or trailing
+ spaces around integer, Boolean, or enumerated values are ignored, even if
+ enclosed in quotes. However, spaces within a string literal keyword or value are
+ preserved. Using .NET Framework version 1.1, single or double quotes may be used
+ within a connection string without using delimiters (for example, Data Source=
+ my'Server or Data Source= my"Server), unless a quote character is the first or
+ last character in the value.
+
+
+ To include an equal sign (=) in a keyword or value, it must be preceded by
+ another equal sign. For example, in the hypothetical connection string
+
+ "key==word=value"
+
+ the keyword is "key=word" and the value is "value".
+
+ If a specific keyword in a keyword= value pair occurs multiple times in a
+ connection string, the last occurrence listed is used in the value set.
+
+ Keywords are not case sensitive.
+
+ The following table lists the valid names for keyword values within the
+ ConnectionString.
+
+
+
+
+
+ Name |
+ Default |
+ Description |
+
+
+
+ Connect Timeout -or- Connection Timeout
+ |
+ 15 |
+
+ The length of time (in seconds) to wait for a connection to the server before
+ terminating the attempt and generating an error.
+ |
+
+
+
+ Host -or- Server -or- Data Source -or-
+ DataSource -or- Address -or- Addr -or-
+ Network Address
+ |
+ localhost |
+
+
+ The name or network address of the instance of MySQL to which to connect. Multiple hosts can be
+ specified separated by &. This can be useful where multiple MySQL servers are configured for replication
+ and you are not concerned about the precise server you are connecting to. No attempt is made by the provider to
+ synchronize writes to the database so care should be taken when using this option.
+
+
+ In Unix environment with Mono, this can be a fully qualified path to MySQL socket filename. With this configuration, the Unix socket will be used instead of TCP/IP socket.
+ Currently only a single socket name can be given so accessing MySQL in a replicated environment using Unix sockets is not currently supported.
+
+ |
+
+
+ Port |
+ 3306 |
+
+ The port MySQL is using to listen for connections. This value is ignored if the connection protocol
+ is anything but socket.
+ |
+
+
+ Protocol |
+ socket |
+
+ Specifies the type of connection to make to the server.Values can be:
+ socket or tcp for a socket connection
+ pipe for a named pipe connection
+ unix for a Unix socket connection
+ memory to use MySQL shared memory
+ |
+
+
+
+ CharSet -or Character Set
+ |
+ |
+
+ Specifies the character set that should be used to encode all queries sent to the server.
+ Resultsets are still returned in the character set of the data returned.
+ |
+
+
+ Logging |
+ false |
+ When true, various pieces of information is output to any configured TraceListeners. |
+
+
+ Allow Batch |
+ true |
+
+ When true, multiple SQL statements can be sent with one command execution.
+ -Note-
+ Starting with MySQL 4.1.1, batch statements should be separated by the server-defined seperator character.
+ Commands sent to earlier versions of MySQL should be seperated with ';'.
+ |
+
+
+ Encrypt |
+ false |
+
+ When true, SSL/TLS encryption is used for all data sent between the
+ client and server if the server has a certificate installed. Recognized values
+ are true, false, yes, and no.
+ |
+
+
+
+ Initial Catalog -or- Database
+ |
+ mysql |
+ The name of the database to use intially |
+
+
+
+ Password -or- pwd
+ |
+ |
+ The password for the MySQL account being used. |
+
+
+ Persist Security Info |
+ false |
+
+ When set to false or no (strongly recommended), security-sensitive
+ information, such as the password, is not returned as part of the connection if
+ the connection is open or has ever been in an open state. Resetting the
+ connection string resets all connection string values including the password.
+ Recognized values are true, false, yes, and no.
+ |
+
+
+
+ User Id -or- Username -or- Uid -or- User name
+ |
+ |
+ The MySQL login account being used. |
+
+
+ Shared Memory Name |
+ MYSQL |
+ The name of the shared memory object to use for communication if the connection protocol is set to memory. |
+
+
+ Allow Zero Datetime |
+ false |
+
+ True to have MySqlDataReader.GetValue() return a MySqlDateTime for date or datetime columns that have illegal values.
+ False will cause a DateTime object to be returned for legal values and an exception will be thrown for illegal values.
+ |
+
+
+ Convert Zero Datetime |
+ false |
+
+ True to have MySqlDataReader.GetValue() and MySqlDataReader.GetDateTime()
+ return DateTime.MinValue for date or datetime columns that have illegal values.
+ |
+
+
+
+ Pipe Name -or- Pipe
+ |
+ mysql |
+
+ When set to the name of a named pipe, the MySqlConnection will attempt to connect to MySQL
+ on that named pipe.
This settings only applies to the Windows platform.
+ |
+
+
+
+ Use Performance Monitor -or- UsePerformanceMonitor
+ |
+ false |
+
+ Posts performance data that can be tracked using perfmon
+ |
+
+
+
+ Procedure Cache Size
+ |
+ 25 |
+
+ How many stored procedure definitions can be held in the cache
+ |
+
+
+
+ Ignore Prepare
+ |
+ true |
+
+ Instructs the provider to ignore any attempts to prepare commands. This option
+ was added to allow a user to disable prepared statements in an entire application
+ without modifying the code. A user might want to do this if errors or bugs are
+ encountered with MySQL prepared statements.
+ |
+
+
+ Use Procedure Bodies |
+ true |
+
+ Instructs the provider to attempt to call the procedure without first resolving the metadata. This
+ is useful in situations where the calling user does not have access to the mysql.proc table. To
+ use this mode, the parameters for the procedure must be added to the command in the same order
+ as they appear in the procedure definition and their types must be explicitly set.
+ |
+
+
+ Auto Enlist |
+ true |
+
+ Indicates whether the connection should automatically enlist in the current transaction,
+ if there is one.
+ |
+
+
+ Respect Binary Flags |
+ true |
+
+ Indicates whether the connection should respect all binary flags sent to the client
+ as part of column metadata. False will cause the connector to behave like
+ Connector/NET 5.0 and earlier.
+ |
+
+
+ BlobAsUTF8IncludePattern |
+ null |
+
+ Pattern that should be used to indicate which blob columns should be treated as UTF-8.
+ |
+
+
+ BlobAsUTF8ExcludePattern |
+ null |
+
+ Pattern that should be used to indicate which blob columns should not be treated as UTF-8.
+ |
+
+
+ Default Command Timeout |
+ 30 |
+
+ The default timeout that new MySqlCommand objects will use unless changed.
+ |
+
+
+ Allow User Variables |
+ false |
+
+ Should the provider expect user variables in the SQL.
+ |
+
+
+ Interactive -or- Interactive Session |
+ false |
+
+ Should this session be considered interactive?
+ |
+
+
+ Functions Return String |
+ false |
+
+ Set this option to true to force the return value of SQL functions to be string.
+ |
+
+
+ Use Affected Rows |
+ false |
+
+ Set this option to true to cause the affected rows reported to reflect only the
+ rows that are actually changed. By default, the number of rows that are matched
+ is returned.
+ |
+
+
+
+
+ The following table lists the valid names for connection pooling values within
+ the ConnectionString. For more information about connection pooling, see
+ Connection Pooling for the MySql Data Provider.
+
+
+
+
+ Name |
+ Default |
+ Description |
+
+
+ Connection Lifetime |
+ 0 |
+
+ When a connection is returned to the pool, its creation time is compared with
+ the current time, and the connection is destroyed if that time span (in seconds)
+ exceeds the value specified by Connection Lifetime. This is useful in
+ clustered configurations to force load balancing between a running server and a
+ server just brought online.
+
+ A value of zero (0) causes pooled connections to have the maximum connection
+ timeout.
+
+ |
+
+
+ Max Pool Size |
+ 100 |
+ The maximum number of connections allowed in the pool. |
+
+
+ Min Pool Size |
+ 0 |
+ The minimum number of connections allowed in the pool. |
+
+
+ Pooling |
+ true |
+
+ When true, the MySqlConnection object is drawn from the appropriate
+ pool, or if necessary, is created and added to the appropriate pool. Recognized
+ values are true, false, yes, and no.
+ |
+
+
+ Connection Reset |
+ false |
+
+ Specifies whether the database connection should be reset when being
+ drawn from the pool. Leaving this as false will yeild much faster
+ connection opens but the user should understand the side effects
+ of doing this such as temporary tables and user variables from the previous
+ session not being cleared out.
+ |
+
+
+ Cache Server Properties |
+ false |
+
+ Specifies whether the server variables are cached between pooled connections.
+ On systems where the variables change infrequently and there are lots of
+ connection attempts, this can speed up things dramatically.
+ |
+
+
+
+
+ When setting keyword or connection pooling values that require a Boolean
+ value, you can use 'yes' instead of 'true', and 'no' instead of 'false'.
+
+
+ Note The MySql Data Provider uses the native socket protocol to
+ communicate with MySQL. Therefore, it does not support the use of an ODBC data source name (DSN) when
+ connecting to MySQL because it does not add an ODBC layer.
+
+
+ CAUTION In this release, the application should use caution when constructing a
+ connection string based on user input (for example when retrieving user ID and password information from a
+ dialog box, and appending it to the connection string). The application should
+ ensure that a user cannot embed extra connection string parameters in these
+ values (for example, entering a password as "validpassword;database=somedb" in
+ an attempt to attach to a different database).
+
+
+ The following example creates a and sets some of its properties
+
+ Public Sub CreateConnection()
+ Dim myConnection As New MySqlConnection()
+ myConnection.ConnectionString = "Persist Security Info=False;database=myDB;server=myHost;Connect Timeout=30;user id=myUser; pwd=myPass"
+ myConnection.Open()
+ End Sub 'CreateConnection
+
+
+ public void CreateConnection()
+ {
+ MySqlConnection myConnection = new MySqlConnection();
+ myConnection.ConnectionString = "Persist Security Info=False;database=myDB;server=myHost;Connect Timeout=30;user id=myUser; pwd=myPass";
+ myConnection.Open();
+ }
+
+
+ The following example creates a in Unix environment with Mono installed. MySQL socket filename used in this example is "/var/lib/mysql/mysql.sock". The actual filename depends on your MySQL configuration.
+
+ Public Sub CreateConnection()
+ Dim myConnection As New MySqlConnection()
+ myConnection.ConnectionString = "database=myDB;server=/var/lib/mysql/mysql.sock;user id=myUser; pwd=myPass"
+ myConnection.Open()
+ End Sub 'CreateConnection
+
+
+ public void CreateConnection()
+ {
+ MySqlConnection myConnection = new MySqlConnection();
+ myConnection.ConnectionString = "database=myDB;server=/var/lib/mysql/mysql.sock;user id=myUser; pwd=myPass";
+ myConnection.Open();
+ }
+
+
+
+
+
+ Gets a boolean value that indicates whether the password associated to the connection is expired.
+
+
+
+ Begins a database transaction.An object representing the new transaction.Parallel transactions are not supported.
+ This command is equivalent to the MySQL BEGIN TRANSACTION command.
+
+ You must explicitly commit or roll back the transaction using the or
+ method.
+
+ If you do not specify an isolation level, the default isolation level is used. To specify an isolation
+ level with the method, use the overload that takes the iso parameter. Also
+ note that any attempt to begin a transaction while a transaction is in progress will throw an exception on MySQL 4.1 and higher.
+ On MySQL 4.0, an exception will not be thrown because servers 4.0 and earlier did not report their transacation status.
+
+
+
+ The following example creates a and a
+ . It also demonstrates how to use the BeginTransaction, a
+ , and methods.
+
+ Public Sub RunTransaction(myConnString As String)
+ Dim myConnection As New MySqlConnection(myConnString)
+ myConnection.Open()
+
+ Dim myCommand As MySqlCommand = myConnection.CreateCommand()
+ Dim myTrans As MySqlTransaction
+
+ ' Start a local transaction
+ myTrans = myConnection.BeginTransaction()
+ ' Must assign both transaction object and connection
+ ' to Command object for a pending local transaction
+ myCommand.Connection = myConnection
+ myCommand.Transaction = myTrans
+
+ Try
+ myCommand.CommandText = "Insert into Test (id, desc) VALUES (100, 'Description')"
+ myCommand.ExecuteNonQuery()
+ myCommand.CommandText = "Insert into Test (id, desc) VALUES (101, 'Description')"
+ myCommand.ExecuteNonQuery()
+ myTrans.Commit()
+ Console.WriteLine("Both records are written to database.")
+ Catch e As Exception
+ Try
+ myTrans.Rollback()
+ Catch ex As MySqlException
+ If Not myTrans.Connection Is Nothing Then
+ Console.WriteLine("An exception of type " + ex.GetType().ToString() + _
+ " was encountered while attempting to roll back the transaction.")
+ End If
+ End Try
+
+ Console.WriteLine("An exception of type " + e.GetType().ToString() + _
+ "was encountered while inserting the data.")
+ Console.WriteLine("Neither record was written to database.")
+ Finally
+ myConnection.Close()
+ End Try
+ End Sub
+
+
+ public void RunTransaction(string myConnString)
+ {
+ MySqlConnection myConnection = new MySqlConnection(myConnString);
+ myConnection.Open();
+
+ MySqlCommand myCommand = myConnection.CreateCommand();
+ MySqlTransaction myTrans;
+
+ // Start a local transaction
+ myTrans = myConnection.BeginTransaction();
+ // Must assign both transaction object and connection
+ // to Command object for a pending local transaction
+ myCommand.Connection = myConnection;
+ myCommand.Transaction = myTrans;
+
+ try
+ {
+ myCommand.CommandText = "insert into Test (id, desc) VALUES (100, 'Description')";
+ myCommand.ExecuteNonQuery();
+ myCommand.CommandText = "insert into Test (id, desc) VALUES (101, 'Description')";
+ myCommand.ExecuteNonQuery();
+ myTrans.Commit();
+ Console.WriteLine("Both records are written to database.");
+ }
+ catch(Exception e)
+ {
+ try
+ {
+ myTrans.Rollback();
+ }
+ catch (SqlException ex)
+ {
+ if (myTrans.Connection != null)
+ {
+ Console.WriteLine("An exception of type " + ex.GetType() +
+ " was encountered while attempting to roll back the transaction.");
+ }
+ }
+
+ Console.WriteLine("An exception of type " + e.GetType() +
+ " was encountered while inserting the data.");
+ Console.WriteLine("Neither record was written to database.");
+ }
+ finally
+ {
+ myConnection.Close();
+ }
+ }
+
+
+
+
+ Begins a database transaction with the specified isolation level.The isolation level under which the transaction should run. An object representing the new transaction.Parallel exceptions are not supported.
+ This command is equivalent to the MySQL BEGIN TRANSACTION command.
+
+ You must explicitly commit or roll back the transaction using the or
+ method.
+
+ If you do not specify an isolation level, the default isolation level is used. To specify an isolation
+ level with the method, use the overload that takes the iso parameter.
+ Also note that any attempt to begin a transaction while a transaction is in progress will throw an exception on MySQL 4.1 and higher.
+ On MySQL 4.0, an exception will not be thrown because servers 4.0 and earlier did not report their transacation status.
+
+
+
+ The following example creates a and a
+ . It also demonstrates how to use the BeginTransaction, a
+ , and methods.
+
+ Public Sub RunTransaction(myConnString As String)
+ Dim myConnection As New MySqlConnection(myConnString)
+ myConnection.Open()
+
+ Dim myCommand As MySqlCommand = myConnection.CreateCommand()
+ Dim myTrans As MySqlTransaction
+
+ ' Start a local transaction
+ myTrans = myConnection.BeginTransaction()
+ ' Must assign both transaction object and connection
+ ' to Command object for a pending local transaction
+ myCommand.Connection = myConnection
+ myCommand.Transaction = myTrans
+
+ Try
+ myCommand.CommandText = "Insert into Test (id, desc) VALUES (100, 'Description')"
+ myCommand.ExecuteNonQuery()
+ myCommand.CommandText = "Insert into Test (id, desc) VALUES (101, 'Description')"
+ myCommand.ExecuteNonQuery()
+ myTrans.Commit()
+ Console.WriteLine("Both records are written to database.")
+ Catch e As Exception
+ Try
+ myTrans.Rollback()
+ Catch ex As MySqlException
+ If Not myTrans.Connection Is Nothing Then
+ Console.WriteLine("An exception of type " + ex.GetType().ToString() + _
+ " was encountered while attempting to roll back the transaction.")
+ End If
+ End Try
+
+ Console.WriteLine("An exception of type " + e.GetType().ToString() + _
+ "was encountered while inserting the data.")
+ Console.WriteLine("Neither record was written to database.")
+ Finally
+ myConnection.Close()
+ End Try
+ End Sub
+
+
+ public void RunTransaction(string myConnString)
+ {
+ MySqlConnection myConnection = new MySqlConnection(myConnString);
+ myConnection.Open();
+
+ MySqlCommand myCommand = myConnection.CreateCommand();
+ MySqlTransaction myTrans;
+
+ // Start a local transaction
+ myTrans = myConnection.BeginTransaction();
+ // Must assign both transaction object and connection
+ // to Command object for a pending local transaction
+ myCommand.Connection = myConnection;
+ myCommand.Transaction = myTrans;
+
+ try
+ {
+ myCommand.CommandText = "insert into Test (id, desc) VALUES (100, 'Description')";
+ myCommand.ExecuteNonQuery();
+ myCommand.CommandText = "insert into Test (id, desc) VALUES (101, 'Description')";
+ myCommand.ExecuteNonQuery();
+ myTrans.Commit();
+ Console.WriteLine("Both records are written to database.");
+ }
+ catch(Exception e)
+ {
+ try
+ {
+ myTrans.Rollback();
+ }
+ catch (SqlException ex)
+ {
+ if (myTrans.Connection != null)
+ {
+ Console.WriteLine("An exception of type " + ex.GetType() +
+ " was encountered while attempting to roll back the transaction.");
+ }
+ }
+
+ Console.WriteLine("An exception of type " + e.GetType() +
+ " was encountered while inserting the data.");
+ Console.WriteLine("Neither record was written to database.");
+ }
+ finally
+ {
+ myConnection.Close();
+ }
+ }
+
+
+
+
+ Changes the current database for an open MySqlConnection.The name of the database to use.
+
+ The value supplied in the database parameter must be a valid database
+ name. The database parameter cannot contain a null value, an empty
+ string, or a string with only blank characters.
+
+
+
+ When you are using connection pooling against MySQL, and you close
+ the connection, it is returned to the connection pool. The next time the
+ connection is retrieved from the pool, the reset connection request
+ executes before the user performs any operations.
+
+ The database name is not valid.The connection is not open.Cannot change the database.
+ The following example creates a and displays
+ some of its read-only properties.
+
+
+ Public Sub CreateMySqlConnection()
+ Dim myConnString As String = _
+ "Persist Security Info=False;database=test;server=localhost;user id=joeuser;pwd=pass"
+ Dim myConnection As New MySqlConnection( myConnString )
+ myConnection.Open()
+ MessageBox.Show( "Server Version: " + myConnection.ServerVersion _
+ + ControlChars.NewLine + "Database: " + myConnection.Database )
+ myConnection.ChangeDatabase( "test2" )
+ MessageBox.Show( "ServerVersion: " + myConnection.ServerVersion _
+ + ControlChars.NewLine + "Database: " + myConnection.Database )
+ myConnection.Close()
+ End Sub
+
+
+
+ public void CreateMySqlConnection()
+ {
+ string myConnString =
+ "Persist Security Info=False;database=test;server=localhost;user id=joeuser;pwd=pass";
+ MySqlConnection myConnection = new MySqlConnection( myConnString );
+ myConnection.Open();
+ MessageBox.Show( "Server Version: " + myConnection.ServerVersion
+ + "\nDatabase: " + myConnection.Database );
+ myConnection.ChangeDatabase( "test2" );
+ MessageBox.Show( "ServerVersion: " + myConnection.ServerVersion
+ + "\nDatabase: " + myConnection.Database );
+ myConnection.Close();
+ }
+
+
+
+
+
+ Pings the server.
+
+ true if the ping was successful; otherwise, false.
+
+
+ Opens a database connection with the property settings specified by the ConnectionString.Cannot open a connection without specifying a data source or server.A connection-level error occurred while opening the connection.
+
+ The draws an open connection from the connection pool if one is available.
+ Otherwise, it establishes a new connection to an instance of MySQL.
+
+
+ The following example creates a , opens it,
+ displays some of its properties, then closes the connection.
+
+
+ Public Sub CreateMySqlConnection(myConnString As String)
+ Dim myConnection As New MySqlConnection(myConnString)
+ myConnection.Open()
+ MessageBox.Show("ServerVersion: " + myConnection.ServerVersion _
+ + ControlChars.Cr + "State: " + myConnection.State.ToString())
+ myConnection.Close()
+ End Sub
+
+
+ public void CreateMySqlConnection(string myConnString)
+ {
+ MySqlConnection myConnection = new MySqlConnection(myConnString);
+ myConnection.Open();
+ MessageBox.Show("ServerVersion: " + myConnection.ServerVersion +
+ "\nState: " + myConnection.State.ToString());
+ myConnection.Close();
+ }
+
+
+
+
+
+ Initializes the if more than one host is found.
+
+ A string containing an unparsed list of hosts.
+ true if the connection data is a URI; otherwise false.
+ The number of hosts found, -1 if an error was raised during parsing.
+
+
+
+ Creates a object based on the provided parameters.
+
+ The host string which can be a simple host name or a host name and port.
+ The priority of the host.
+ The port number of the host.
+
+
+
+
+ Creates and returns a object associated with the .
+
+ A object.
+
+
+
+ Closes the connection to the database. This is the preferred method of closing any open connection.
+
+ The Close method rolls back any pending transactions. It then releases
+ the connection to the connection pool, or closes the connection if connection
+ pooling is disabled.
+
+
+ An application can call Close more than one time. No exception is
+ generated.
+
+
+ The following example creates a , opens it,
+ displays some of its properties, then closes the connection.
+
+
+ Public Sub CreateMySqlConnection(myConnString As String)
+ Dim myConnection As New MySqlConnection(myConnString)
+ myConnection.Open()
+ MessageBox.Show("ServerVersion: " + myConnection.ServerVersion _
+ + ControlChars.Cr + "State: " + myConnection.State.ToString())
+ myConnection.Close()
+ End Sub
+
+
+ public void CreateMySqlConnection(string myConnString)
+ {
+ MySqlConnection myConnection = new MySqlConnection(myConnString);
+ myConnection.Open();
+ MessageBox.Show("ServerVersion: " + myConnection.ServerVersion +
+ "\nState: " + myConnection.State.ToString());
+ myConnection.Close();
+ }
+
+
+
+
+
+ Cancels the query after the specified time interval.
+
+ The length of time (in seconds) to wait for the cancelation of the command execution.
+
+
+
+ Sets query timeout. If timeout has been set prior and not
+ yet cleared ClearCommandTimeout(), it has no effect.
+
+ timeout in seconds
+ true if
+
+
+
+ Clears query timeout, allowing next SetCommandTimeout() to succeed.
+
+
+
+
+ Gets a schema collection based on the provided restriction values.
+
+ The name of the collection.
+ The values to restrict.
+ A schema collection object.
+
+
+ Empties the connection pool associated with the specified connection.
+ The associated with the pool to be cleared.
+
+
+ ClearPool clears the connection pool that is associated with the connection.
+ If additional connections associated with connection are in use at the time of the call,
+ they are marked appropriately and are discarded (instead of being returned to the pool)
+ when Close is called on them.
+
+
+
+
+ Clears all connection pools.
+
+ ClearAllPools essentially performs a on all current connection
+ pools.
+
+
+
+
+
+ Initiates the asynchronous execution of a transaction.
+
+ An object representing the new transaction.
+
+
+
+ Asynchronous version of BeginTransaction.
+
+ The cancellation token.
+ An object representing the new transaction.
+
+
+
+ Asynchronous version of BeginTransaction.
+
+ The isolation level under which the transaction should run.
+ An object representing the new transaction.
+
+
+
+ Asynchronous version of BeginTransaction.
+
+ The isolation level under which the transaction should run.
+ The cancellation token.
+ An object representing the new transaction.
+
+
+
+ Asynchronous version of the ChangeDataBase method.
+
+ The name of the database to use.
+
+
+
+
+ Asynchronous version of the ChangeDataBase method.
+
+ The name of the database to use.
+ The cancellation token.
+
+
+
+
+ Asynchronous version of the Close method.
+
+
+
+
+ Asynchronous version of the Close method.
+
+ The cancellation token.
+
+
+
+ Asynchronous version of the ClearPool method.
+
+ The connection associated with the pool to be cleared.
+
+
+
+ Asynchronous version of the ClearPool method.
+
+ The connection associated with the pool to be cleared.
+ The cancellation token.
+
+
+
+ Asynchronous version of the ClearAllPools method.
+
+
+
+
+ Asynchronous version of the ClearAllPools method.
+
+ The cancellation token.
+
+
+
+ Asynchronous version of the GetSchemaCollection method.
+
+ The name of the collection.
+ The values to restrict.
+ A collection of schema objects.
+
+
+
+ Asynchronous version of the GetSchemaCollection method.
+
+ The name of the collection.
+ The values to restrict.
+ The cancellation token.
+ A collection of schema objects.
+
+
+
+ Returns schema information for the data source of this .
+
+ A that contains schema information.
+
+
+
+ Returns schema information for the data source of this
+ using the specified string for the schema name.
+
+ Specifies the name of the schema to return.
+ A that contains schema information.
+
+
+
+ Returns schema information for the data source of this
+ using the specified string for the schema name and the specified string array
+ for the restriction values.
+
+ Specifies the name of the schema to return.
+ Specifies a set of restriction values for the requested schema.
+ A that contains schema information.
+
+
+
+ Enlists in the specified transaction.
+
+
+ A reference to an existing in which to enlist.
+
+
+
+
+ Creates a new MySqlConnection object with the exact same ConnectionString value
+
+ A cloned MySqlConnection object
+
+
+
+ Represents the method that will handle the event of a
+ .
+
+
+
+
+ Provides data for the InfoMessage event. This class cannot be inherited.
+
+
+
+
+ Gets or sets an array of objects set with the errors found.
+
+
+
+
+ IDisposable wrapper around SetCommandTimeout and ClearCommandTimeout functionality.
+
+
+
+
+ Summary description for Crypt.
+
+
+
+
+ Simple XOR scramble
+
+ Source array
+ Index inside source array
+ Destination array
+ Index inside destination array
+ Password used to xor the bits
+ Number of bytes to scramble
+
+
+
+ Returns a byte array containing the proper encryption of the
+ given password/seed according to the new 4.1.1 authentication scheme.
+
+
+
+
+
+
+
+ Encrypts a password using the MySql encryption scheme
+
+ The password to encrypt
+ The encryption seed the server gave us
+ Indicates if we should use the old or new encryption scheme
+
+
+
+
+ Hashes a password using the algorithm from Monty's code.
+ The first element in the return is the result of the "old" hash.
+ The second element is the rest of the "new" hash.
+
+ Password to be hashed
+ Two element array containing the hashed values
+
+
+
+ Provides a means of reading a forward-only stream of rows from a MySQL database. This class cannot be inherited.
+
+
+ To create a MySQLDataReader, you must call the
+ method of the object, rather than directly using a constructor.
+
+
+ While the MySqlDataReader is in use, the associated
+ is busy serving the MySqlDataReader, and no other operations can be performed
+ on the MySqlConnection other than closing it. This is the case until the
+ method of the MySqlDataReader is called.
+
+
+ and
+ are the only properties that you can call after the MySqlDataReader is
+ closed. Though the RecordsAffected property may be accessed at any time
+ while the MySqlDataReader exists, always call Close before returning
+ the value of RecordsAffected to ensure an accurate return value.
+
+
+ For optimal performance, MySqlDataReader avoids creating
+ unnecessary objects or making unnecessary copies of data. As a result, multiple calls
+ to methods such as return a reference to the
+ same object. Use caution if you are modifying the underlying value of the objects
+ returned by methods such as GetValue.
+
+
+ The following example creates a ,
+ a , and a MySqlDataReader. The example reads through
+ the data, writing it out to the console. Finally, the example closes the MySqlDataReader, then the
+ MySqlConnection.
+
+ Public Sub ReadMyData(myConnString As String)
+ Dim mySelectQuery As String = "SELECT OrderID, CustomerID FROM Orders"
+ Dim myConnection As New MySqlConnection(myConnString)
+ Dim myCommand As New MySqlCommand(mySelectQuery, myConnection)
+ myConnection.Open()
+ Dim myReader As MySqlDataReader
+ myReader = myCommand.ExecuteReader()
+ ' Always call Read before accessing data.
+ While myReader.Read()
+ Console.WriteLine((myReader.GetInt32(0) & ", " & myReader.GetString(1)))
+ End While
+ ' always call Close when done reading.
+ myReader.Close()
+ ' Close the connection when done with it.
+ myConnection.Close()
+ End Sub 'ReadMyData
+
+
+ public void ReadMyData(string myConnString) {
+ string mySelectQuery = "SELECT OrderID, CustomerID FROM Orders";
+ MySqlConnection myConnection = new MySqlConnection(myConnString);
+ MySqlCommand myCommand = new MySqlCommand(mySelectQuery,myConnection);
+ myConnection.Open();
+ MySqlDataReader myReader;
+ myReader = myCommand.ExecuteReader();
+ // Always call Read before accessing data.
+ while (myReader.Read()) {
+ Console.WriteLine(myReader.GetInt32(0) + ", " + myReader.GetString(1));
+ }
+ // always call Close when done reading.
+ myReader.Close();
+ // Close the connection when done with it.
+ myConnection.Close();
+ }
+
+
+
+
+
+ Gets the number of columns in the current row.
+
+
+
+
+ Gets a value indicating whether the MySqlDataReader contains one or more rows.
+
+
+
+
+ Gets a value indicating whether the data reader is closed.
+
+
+
+
+ Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.
+
+
+
+
+ Overloaded. Gets the value of a column in its native format.
+ In C#, this property is the indexer for the MySqlDataReader class.
+
+
+
+
+ Gets the value of a column in its native format.
+ [C#] In C#, this property is the indexer for the MySqlDataReader class.
+
+
+
+
+ Gets a value indicating the depth of nesting for the current row. This method is not
+ supported currently and always returns 0.
+
+
+
+
+ Closes the MySqlDataReader object.
+
+
+
+
+ Gets the value of the specified column as a Boolean.
+
+
+
+
+
+
+ Gets the value of the specified column as a Boolean.
+
+
+
+
+
+
+ Gets the value of the specified column as a byte.
+
+
+
+
+
+
+ Gets the value of the specified column as a byte.
+
+
+
+
+
+
+ Gets the value of the specified column as a sbyte.
+
+
+
+
+
+
+ Gets the value of the specified column as a sbyte.
+
+
+
+
+
+
+ Reads a stream of bytes from the specified column offset into the buffer an array starting at the given buffer offset.
+
+ The zero-based column ordinal.
+ The index within the field from which to begin the read operation.
+ The buffer into which to read the stream of bytes.
+ The index for buffer to begin the read operation.
+ The maximum length to copy into the buffer.
+ The actual number of bytes read.
+
+
+
+
+ Gets the value of the specified column as a single character.
+
+
+
+
+
+
+ Gets the value of the specified column as a single character.
+
+
+
+
+
+
+ Reads a stream of characters from the specified column offset into the buffer as an array starting at the given buffer offset.
+
+
+
+
+
+
+
+
+
+
+ Gets the name of the source data type.
+
+
+
+
+
+
+ Gets the value of the specified column as a object.
+
+
+ No conversions are performed; therefore, the data retrieved must already be a DateTime object.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The zero-based column ordinal or column name.The value of the specified column.
+
+
+
+ Gets the value of the specified column as a object.
+
+
+ No conversions are performed; therefore, the data retrieved must already be a DateTime object.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The zero-based column ordinal or column name.The value of the specified column.
+
+
+
+ Gets the value of the specified column as a object.
+
+
+ No conversions are performed; therefore, the data retrieved must already be a DateTime object.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+
+
+ MySql allows date columns to contain the value '0000-00-00' and datetime
+ columns to contain the value '0000-00-00 00:00:00'. The DateTime structure cannot contain
+ or represent these values. To read a datetime value from a column that might
+ contain zero values, use .
+
+
+ The behavior of reading a zero datetime column using this method is defined by the
+ ZeroDateTimeBehavior connection string option. For more information on this option,
+ please refer to .
+
+
+ The column name.The value of the specified column.
+
+
+
+ Gets the value of the specified column as a object.
+
+
+ No conversions are performed; therefore, the data retrieved must already be a DateTime object.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+
+
+ MySql allows date columns to contain the value '0000-00-00' and datetime
+ columns to contain the value '0000-00-00 00:00:00'. The DateTime structure cannot contain
+ or represent these values. To read a datetime value from a column that might
+ contain zero values, use .
+
+
+ The behavior of reading a zero datetime column using this method is defined by the
+ ZeroDateTimeBehavior connection string option. For more information on this option,
+ please refer to .
+
+
+ The zero-based column ordinal.The value of the specified column.
+
+
+
+ Gets the value of the specified column as a .
+
+ The name of the colum.
+ The value of the specified column as a .
+
+
+
+ Gets the value of the specified column as a .
+
+ The index of the colum.
+ The value of the specified column as a .
+
+
+
+ Gets the value of the specified column as a object.
+
+
+ No conversions are performed; therefore, the data retrieved must already be a Decimal object.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The column nameThe value of the specified column.
+
+
+
+ Gets the value of the specified column as a object.
+
+
+ No conversions are performed; therefore, the data retrieved must already be a Decimal object.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The zero-based column ordinalThe value of the specified column.
+
+
+ Gets the value of the specified column as a double-precision floating point number.
+
+ No conversions are performed; therefore, the data retrieved must already be a Double object.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The column nameThe value of the specified column.
+
+
+ Gets the value of the specified column as a double-precision floating point number.
+
+ No conversions are performed; therefore, the data retrieved must already be a Double object.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The zero-based column ordinal.The value of the specified column.
+
+
+
+ Gets the Type that is the data type of the object.
+
+
+
+
+
+
+ Gets the value of the specified column as a single-precision floating point number.
+
+
+ No conversions are performed; therefore, the data retrieved must already be a Float object.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The column nameThe value of the specified column.
+
+
+
+ Gets the value of the specified column as a single-precision floating point number.
+
+
+ No conversions are performed; therefore, the data retrieved must already be a Float object.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The zero-based column ordinal.The value of the specified column.
+
+
+
+ Gets the value of the specified column as a globally-unique identifier(GUID).
+
+ The name of the column.
+
+
+
+
+
+
+ Gets the value of the specified column as a 16-bit signed integer.
+
+ No conversions are performed; threfore, the data retrieved must already be a 16 bit integer value.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The column nameThe value of the specified column.
+
+
+ Gets the value of the specified column as a 16-bit signed integer.
+
+ No conversions are performed; therefore, the data retrieved must already be a 16 bit integer value.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The zero-based column ordinal.The value of the specified column.
+
+
+ Gets the value of the specified column as a 32-bit signed integer.
+
+ No conversions are performed; therefore, the data retrieved must already be a 32 bit integer value.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The column name.The value of the specified column.
+
+
+ Gets the value of the specified column as a 32-bit signed integer.
+
+ No conversions are performed; therefore, the data retrieved must already be a 32 bit integer value.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The zero-based column ordinal.The value of the specified column.
+
+
+ Gets the value of the specified column as a 64-bit signed integer.
+
+ No conversions are performed; therefore, the data retrieved must already be a 64 bit integer value.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The column name.The value of the specified column.
+
+
+ Gets the value of the specified column as a 64-bit signed integer.
+
+ No conversions are performed; therefore, the data retrieved must already be a 64 bit integer value.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The zero-based column ordinal.The value of the specified column.
+
+
+
+ Gets the name of the specified column.
+
+
+
+
+
+
+ Gets the column ordinal, given the name of the column.
+
+
+
+
+
+
+ Gets the value of the specified column as a object.
+
+
+ No conversions are performed; therefore, the data retrieved must already be a String object.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The column name.The value of the specified column.
+
+
+
+ Gets the value of the specified column as a object.
+
+
+ No conversions are performed; therefore, the data retrieved must already be a String object.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The zero-based column ordinal.The value of the specified column.
+
+
+
+ Gets the value of the specified column as a object.
+
+
+ No conversions are performed; therefore, the data retrieved must already be a Time value.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The zero-based column ordinal or column name.The value of the specified column.
+
+
+
+ Gets the value of the specified column as a object.
+
+
+ No conversions are performed; therefore, the data retrieved must already be a Time value.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The zero-based column ordinal or column name.The value of the specified column.
+
+
+
+ Gets the value of the specified column in its native format.
+
+
+
+
+
+
+ Gets all attribute columns in the collection for the current row.
+
+
+
+
+
+ Gets the value of the specified column as a 16-bit unsigned integer.
+
+ No conversions are performed; therefore, the data retrieved must already be a 16 bit unsigned integer value.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The zero-based column ordinal or column name.The value of the specified column.
+
+
+ Gets the value of the specified column as a 16-bit unsigned integer.
+
+ No conversions are performed; therefore, the data retrieved must already be a 16 bit unsigned integer value.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The zero-based column ordinal or column name.The value of the specified column.
+
+
+ Gets the value of the specified column as a 32-bit unsigned integer.
+
+ No conversions are performed; therefore, the data retrieved must already be a 32 bit unsigned integer value.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The zero-based column ordinal or column name.The value of the specified column.
+
+
+ Gets the value of the specified column as a 32-bit unsigned integer.
+
+ No conversions are performed; therefore, the data retrieved must already be a 32 bit unsigned integer value.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The zero-based column ordinal or column name.The value of the specified column.
+
+
+ Gets the value of the specified column as a 64-bit unsigned integer.
+
+ No conversions are performed; therefore, the data retrieved must already be a 64 bit unsigned integer value.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The zero-based column ordinal or column name.The value of the specified column.
+
+
+ Gets the value of the specified column as a 64-bit unsigned integer.
+
+ No conversions are performed; therefore, the data retrieved must already be a 64 bit unsigned integer value.
+
+
+ Call IsDBNull to check for null values before calling this method.
+
+ The zero-based column ordinal or column name.The value of the specified column.
+
+
+
+ Gets a value indicating whether the column contains non-existent or missing values.
+
+
+
+
+
+
+ Advances the data reader to the next result, when reading the results of batch SQL statements.
+
+
+
+
+
+ Advances the MySqlDataReader to the next record.
+
+
+
+
+
+ Gets the value of the specified column as a .
+
+ The index of the colum.
+ The value of the specified column as a .
+
+
+
+ Gets the value of the specified column as a .
+
+ The name of the colum.
+ The value of the specified column as a .
+
+
+
+ Returns an that iterates through the .
+
+
+
+
+ Returns a DataTable that describes the column metadata of the MySqlDataReader.
+
+
+
+
+
+ Summary description for BaseDriver.
+
+
+
+
+ For pooled connections, time when the driver was
+ put into idle queue
+
+
+
+
+ Loads the properties from the connected server into a hashtable
+
+
+
+
+
+
+ Loads all the current character set names and ids for this server
+ into the charSets hashtable
+
+
+
+
+ The exception that is thrown when MySQL returns an error. This class cannot be inherited.
+
+
+
+ This class is created whenever the MySql Data Provider encounters an error generated from the server.
+
+
+ Any open connections are not automatically closed when an exception is thrown. If
+ the client application determines that the exception is fatal, it should close any open
+ objects or objects.
+
+
+ The following example generates a MySqlException due to a missing server,
+ and then displays the exception.
+
+
+ Public Sub ShowException()
+ Dim mySelectQuery As String = "SELECT column1 FROM table1"
+ Dim myConnection As New MySqlConnection ("Data Source=localhost;Database=Sample;")
+ Dim myCommand As New MySqlCommand(mySelectQuery, myConnection)
+
+ Try
+ myCommand.Connection.Open()
+ Catch e As MySqlException
+ MessageBox.Show( e.Message )
+ End Try
+ End Sub
+
+
+ public void ShowException()
+ {
+ string mySelectQuery = "SELECT column1 FROM table1";
+ MySqlConnection myConnection =
+ new MySqlConnection("Data Source=localhost;Database=Sample;");
+ MySqlCommand myCommand = new MySqlCommand(mySelectQuery,myConnection);
+
+ try
+ {
+ myCommand.Connection.Open();
+ }
+ catch (MySqlException e)
+ {
+ MessageBox.Show( e.Message );
+ }
+ }
+
+
+
+
+
+ Gets a number that identifies the type of error.
+
+
+
+
+ True if this exception was fatal and cause the closing of the connection, false otherwise.
+
+
+
+
+ Gets the SQL state.
+
+
+
+
+ Gets an integer that representes the MySQL error code.
+
+
+
+
+ Summary description for Field.
+
+
+
+
+ We are adding a custom installer class to our assembly so our installer
+ can make proper changes to the machine.config file.
+
+
+
+
+ We override Install so we can add our assembly to the proper
+ machine.config files.
+
+
+
+
+
+ We override Uninstall so we can remove out assembly from the
+ machine.config files.
+
+
+
+
+
+ Automatically generates single-table commands used to reconcile changes made to a DataSet with the associated MySQL database. This class cannot be inherited.
+
+
+ The does not automatically generate the SQL statements required to
+ reconcile changes made to a DataSet with the associated instance of MySQL.
+ However, you can create a MySqlCommandBuilder object to automatically generate SQL statements for
+ single-table updates if you set the SelectCommand property
+ of the MySqlDataAdapter. Then, any additional SQL statements that you do not set are generated by the
+ MySqlCommandBuilder.
+
+
+
+ The MySqlCommandBuilder registers itself as a listener for RowUpdating
+ events whenever you set the property. You can only associate one
+ MySqlDataAdapter or MySqlCommandBuilder object with each other at one time.
+
+
+
+ To generate INSERT, UPDATE, or DELETE statements, the MySqlCommandBuilder uses the
+ SelectCommand property to retrieve a required set of metadata automatically. If you change
+ the SelectCommand after the metadata has is retrieved (for example, after the first update), you
+ should call the method to update the metadata.
+
+
+
+ The SelectCommand must also return at least one primary key or unique
+ column. If none are present, an InvalidOperation exception is generated,
+ and the commands are not generated.
+
+
+
+ The MySqlCommandBuilder also uses the Connection,
+ CommandTimeout, and Transaction
+ properties referenced by the SelectCommand. The user should call
+ RefreshSchema if any of these properties are modified, or if the
+ SelectCommand itself is replaced. Otherwise the InsertCommand,
+ UpdateCommand, and
+ DeleteCommand properties retain
+ their previous values.
+
+
+
+ If you call Dispose, the MySqlCommandBuilder is disassociated
+ from the MySqlDataAdapter, and the generated commands are no longer used.
+
+
+
+ Caution must be used when using MySqlCOmmandBuilder on MySql 4.0 systems. With MySql 4.0,
+ database/schema information is not provided to the connector for a query. This means that
+ a query that pulls columns from two identically named tables in two or more different databases
+ will not cause an exception to be thrown but will not work correctly. Even more dangerous
+ is the situation where your select statement references database X but is executed in
+ database Y and both databases have tables with similar layouts. This situation can cause
+ unwanted changes or deletes.
+ This note does not apply to MySQL versions 4.1 and later.
+
+
+
+ The following example uses the , along
+ and , to
+ select rows from a data source. The example is passed an initialized
+ , a connection string, a
+ query string that is a SQL SELECT statement, and a string that is the
+ name of the database table. The example then creates a MySqlCommandBuilder.
+
+
+ Public Shared Function SelectRows(myConnection As String, mySelectQuery As String, myTableName As String) As DataSet
+ Dim myConn As New MySqlConnection(myConnection)
+ Dim myDataAdapter As New MySqlDataAdapter()
+ myDataAdapter.SelectCommand = New MySqlCommand(mySelectQuery, myConn)
+ Dim cb As SqlCommandBuilder = New MySqlCommandBuilder(myDataAdapter)
+
+ myConn.Open()
+
+ Dim ds As DataSet = New DataSet
+ myDataAdapter.Fill(ds, myTableName)
+
+ ' Code to modify data in DataSet here
+
+ ' Without the MySqlCommandBuilder this line would fail.
+ myDataAdapter.Update(ds, myTableName)
+
+ myConn.Close()
+ End Function 'SelectRows
+
+
+ public static DataSet SelectRows(string myConnection, string mySelectQuery, string myTableName)
+ {
+ MySqlConnection myConn = new MySqlConnection(myConnection);
+ MySqlDataAdapter myDataAdapter = new MySqlDataAdapter();
+ myDataAdapter.SelectCommand = new MySqlCommand(mySelectQuery, myConn);
+ MySqlCommandBuilder cb = new MySqlCommandBuilder(myDataAdapter);
+
+ myConn.Open();
+
+ DataSet ds = new DataSet();
+ myDataAdapter.Fill(ds, myTableName);
+
+ //code to modify data in DataSet here
+
+ //Without the MySqlCommandBuilder this line would fail
+ myDataAdapter.Update(ds, myTableName);
+
+ myConn.Close();
+
+ return ds;
+ }
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class
+ with the associated object.
+
+ The to use.
+
+
+ The registers itself as a listener for
+ events that are generated by the
+ specified in this property.
+
+
+ When you create a new instance MySqlCommandBuilder, any existing
+ MySqlCommandBuilder associated with this MySqlDataAdapter
+ is released.
+
+
+
+
+
+ Gets or sets a object for which SQL statements are automatically generated.
+
+ A object.
+
+
+ The registers itself as a listener for
+ events that are generated by the
+ specified in this property.
+
+
+ When you create a new instance MySqlCommandBuilder, any existing
+ MySqlCommandBuilder associated with this MySqlDataAdapter
+ is released.
+
+
+
+
+
+ Retrieves parameter information from the stored procedure specified
+ in the MySqlCommand and populates the Parameters collection of the
+ specified MySqlCommand object.
+ This method is not currently supported since stored procedures are
+ not available in MySql.
+
+ The MySqlCommand referencing the stored
+ procedure from which the parameter information is to be derived.
+ The derived parameters are added to the Parameters collection of the
+ MySqlCommand.
+ The command text is not
+ a valid stored procedure name.
+
+
+
+ Gets the delete command.
+
+
+
+
+
+ Gets the update command.
+
+
+
+
+
+ Gets the insert command.
+
+
+
+
+
+
+
+
+
+
+
+
+ Represents a set of data commands and a database connection that are used to fill a dataset and update a MySQL database. This class cannot be inherited.
+
+
+ The MySQLDataAdapter, serves as a bridge between a
+ and MySQL for retrieving and saving data. The MySQLDataAdapter provides this
+ bridge by mapping , which changes the data in the
+ DataSet to match the data in the data source, and ,
+ which changes the data in the data source to match the data in the DataSet,
+ using the appropriate SQL statements against the data source.
+
+
+ When the MySQLDataAdapter fills a DataSet, it will create the necessary
+ tables and columns for the returned data if they do not already exist. However, primary
+ key information will not be included in the implicitly created schema unless the
+ property is set to .
+ You may also have the MySQLDataAdapter create the schema of the DataSet,
+ including primary key information, before filling it with data using .
+
+
+ MySQLDataAdapter is used in conjunction with
+ and to increase performance when connecting to a MySQL database.
+
+
+ The MySQLDataAdapter also includes the ,
+ , ,
+ , and
+ properties to facilitate the loading and updating of data.
+
+
+ When an instance of MySQLDataAdapter is created, the read/write properties
+ are set to initial values. For a list of these values, see the MySQLDataAdapter
+ constructor.
+
+
+ Please be aware that the class allows only
+ Int16, Int32, and Int64 to have the AutoIncrement property set.
+ If you plan to use autoincremement columns with MySQL, you should consider
+ using signed integer columns.
+
+
+ The following example creates a and a .
+ The MySqlConnection is opened and set as the for the
+ MySqlCommand. The example then calls , and closes
+ the connection. To accomplish this, the ExecuteNonQuery is
+ passed a connection string and a query string that is a SQL INSERT
+ statement.
+
+ Public Function SelectRows(dataSet As DataSet, connection As String, query As String) As DataSet
+ Dim conn As New MySqlConnection(connection)
+ Dim adapter As New MySqlDataAdapter()
+ adapter.SelectCommand = new MySqlCommand(query, conn)
+ adapter.Fill(dataset)
+ Return dataset
+ End Function
+
+
+ public DataSet SelectRows(DataSet dataset,string connection,string query)
+ {
+ MySqlConnection conn = new MySqlConnection(connection);
+ MySqlDataAdapter adapter = new MySqlDataAdapter();
+ adapter.SelectCommand = new MySqlCommand(query, conn);
+ adapter.Fill(dataset);
+ return dataset;
+ }
+
+
+
+
+
+ Occurs during Update before a command is executed against the data source. The attempt to update is made, so the event fires.
+
+
+
+
+ Occurs during Update after a command is executed against the data source. The attempt to update is made, so the event fires.
+
+
+
+
+ Initializes a new instance of the MySqlDataAdapter class.
+
+
+ When an instance of is created,
+ the following read/write properties are set to the following initial
+ values.
+
+
+
+ Properties
+ Initial Value
+
+ -
+
+
+
+
+ MissingMappingAction.Passthrough
+
+
+ -
+
+
+
+
+ MissingSchemaAction.Add
+
+
+
+
+ You can change the value of any of these properties through a separate call
+ to the property.
+
+
+ The following example creates a and sets some of
+ its properties.
+
+ Public Sub CreateSqlDataAdapter()
+ Dim conn As MySqlConnection = New MySqlConnection("Data Source=localhost;" & _
+ "database=test")
+ Dim da As MySqlDataAdapter = New MySqlDataAdapter
+ da.MissingSchemaAction = MissingSchemaAction.AddWithKey
+
+ da.SelectCommand = New MySqlCommand("SELECT id, name FROM mytable", conn)
+ da.InsertCommand = New MySqlCommand("INSERT INTO mytable (id, name) " & _
+ "VALUES (@id, @name)", conn)
+ da.UpdateCommand = New MySqlCommand("UPDATE mytable SET id=@id, name=@name " & _
+ "WHERE id=@oldId", conn)
+ da.DeleteCommand = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn)
+
+ da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id")
+ da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name")
+
+ da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id")
+ da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name")
+ da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original
+
+ da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original
+ End Sub
+
+
+ public static void CreateSqlDataAdapter()
+ {
+ MySqlConnection conn = new MySqlConnection("Data Source=localhost;database=test");
+ MySqlDataAdapter da = new MySqlDataAdapter();
+ da.MissingSchemaAction = MissingSchemaAction.AddWithKey;
+
+ da.SelectCommand = new MySqlCommand("SELECT id, name FROM mytable", conn);
+ da.InsertCommand = new MySqlCommand("INSERT INTO mytable (id, name) " +
+ "VALUES (@id, @name)", conn);
+ da.UpdateCommand = new MySqlCommand("UPDATE mytable SET id=@id, name=@name " +
+ "WHERE id=@oldId", conn);
+ da.DeleteCommand = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn);
+
+ da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id");
+ da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name");
+
+ da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id");
+ da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name");
+ da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original;
+
+ da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original;
+ }
+
+
+
+
+
+ Initializes a new instance of the class with
+ the specified as the
+ property.
+
+ that is a SQL SELECT statement or stored procedure and is set
+ as the property of the .
+
+
+ When an instance of is created,
+ the following read/write properties are set to the following initial
+ values.
+
+
+
+ Properties
+ Initial Value
+
+ -
+
+
+
+
+ MissingMappingAction.Passthrough
+
+
+ -
+
+
+
+
+ MissingSchemaAction.Add
+
+
+
+
+ You can change the value of any of these properties through a separate call
+ to the property.
+
+
+ When SelectCommand (or any of the other command properties) is assigned
+ to a previously created , the MySqlCommand is not cloned.
+ The SelectCommand maintains a reference to the previously created MySqlCommand
+ object.
+
+
+ The following example creates a and sets some of
+ its properties.
+
+ Public Sub CreateSqlDataAdapter()
+ Dim conn As MySqlConnection = New MySqlConnection("Data Source=localhost;" & _
+ "database=test")
+ Dim cmd as new MySqlCommand("SELECT id, name FROM mytable", conn)
+ Dim da As MySqlDataAdapter = New MySqlDataAdapter(cmd)
+ da.MissingSchemaAction = MissingSchemaAction.AddWithKey
+
+ da.InsertCommand = New MySqlCommand("INSERT INTO mytable (id, name) " & _
+ "VALUES (@id, @name)", conn)
+ da.UpdateCommand = New MySqlCommand("UPDATE mytable SET id=@id, name=@name " & _
+ "WHERE id=@oldId", conn)
+ da.DeleteCommand = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn)
+
+ da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id")
+ da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name")
+
+ da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id")
+ da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name")
+ da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original
+
+ da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original
+ End Sub
+
+
+ public static void CreateSqlDataAdapter()
+ {
+ MySqlConnection conn = new MySqlConnection("Data Source=localhost;database=test");
+ MySqlCommand cmd = new MySqlCommand("SELECT id, name FROM mytable", conn);
+ MySqlDataAdapter da = new MySqlDataAdapter(cmd);
+ da.MissingSchemaAction = MissingSchemaAction.AddWithKey;
+
+ da.InsertCommand = new MySqlCommand("INSERT INTO mytable (id, name) " +
+ "VALUES (@id, @name)", conn);
+ da.UpdateCommand = new MySqlCommand("UPDATE mytable SET id=@id, name=@name " +
+ "WHERE id=@oldId", conn);
+ da.DeleteCommand = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn);
+
+ da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id");
+ da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name");
+
+ da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id");
+ da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name");
+ da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original;
+
+ da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original;
+ }
+
+
+
+
+
+ Initializes a new instance of the class with
+ a and a object.
+
+ A String that is a SQL SELECT statement or stored procedure to be used by
+ the property of the .
+
+ A that represents the connection.
+
+
+ This implementation of the opens and closes a
+ if it is not already open. This can be useful in a an application that must call the
+ method for two or more MySqlDataAdapter objects.
+ If the MySqlConnection is already open, you must explicitly call
+ or to close it.
+
+
+ When an instance of is created,
+ the following read/write properties are set to the following initial
+ values.
+
+
+
+ Properties
+ Initial Value
+
+ -
+
+
+
+
+ MissingMappingAction.Passthrough
+
+
+ -
+
+
+
+
+ MissingSchemaAction.Add
+
+
+
+
+ You can change the value of any of these properties through a separate call
+ to the property.
+
+
+ The following example creates a and sets some of
+ its properties.
+
+ Public Sub CreateSqlDataAdapter()
+ Dim conn As MySqlConnection = New MySqlConnection("Data Source=localhost;" & _
+ "database=test")
+ Dim da As MySqlDataAdapter = New MySqlDataAdapter("SELECT id, name FROM mytable", conn)
+ da.MissingSchemaAction = MissingSchemaAction.AddWithKey
+
+ da.InsertCommand = New MySqlCommand("INSERT INTO mytable (id, name) " & _
+ "VALUES (@id, @name)", conn)
+ da.UpdateCommand = New MySqlCommand("UPDATE mytable SET id=@id, name=@name " & _
+ "WHERE id=@oldId", conn)
+ da.DeleteCommand = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn)
+
+ da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id")
+ da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name")
+
+ da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id")
+ da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name")
+ da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original
+
+ da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original
+ End Sub
+
+
+ public static void CreateSqlDataAdapter()
+ {
+ MySqlConnection conn = new MySqlConnection("Data Source=localhost;database=test");
+ MySqlDataAdapter da = new MySqlDataAdapter("SELECT id, name FROM mytable", conn);
+ da.MissingSchemaAction = MissingSchemaAction.AddWithKey;
+
+ da.InsertCommand = new MySqlCommand("INSERT INTO mytable (id, name) " +
+ "VALUES (@id, @name)", conn);
+ da.UpdateCommand = new MySqlCommand("UPDATE mytable SET id=@id, name=@name " +
+ "WHERE id=@oldId", conn);
+ da.DeleteCommand = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn);
+
+ da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id");
+ da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name");
+
+ da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id");
+ da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name");
+ da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original;
+
+ da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original;
+ }
+
+
+
+
+
+ Initializes a new instance of the class with
+ a and a connection string.
+
+ A that is a SQL SELECT statement or stored procedure to
+ be used by the property of the .
+ The connection string
+
+ When an instance of is created,
+ the following read/write properties are set to the following initial
+ values.
+
+
+
+ Properties
+ Initial Value
+
+ -
+
+
+
+
+ MissingMappingAction.Passthrough
+
+
+ -
+
+
+
+
+ MissingSchemaAction.Add
+
+
+
+
+ You can change the value of any of these properties through a separate call
+ to the property.
+
+
+ The following example creates a and sets some of
+ its properties.
+
+ Public Sub CreateSqlDataAdapter()
+ Dim da As MySqlDataAdapter = New MySqlDataAdapter("SELECT id, name FROM mytable", "Data Source=localhost;database=test")
+ Dim conn As MySqlConnection = da.SelectCommand.Connection
+ da.MissingSchemaAction = MissingSchemaAction.AddWithKey
+
+ da.InsertCommand = New MySqlCommand("INSERT INTO mytable (id, name) " & _
+ "VALUES (@id, @name)", conn)
+ da.UpdateCommand = New MySqlCommand("UPDATE mytable SET id=@id, name=@name " & _
+ "WHERE id=@oldId", conn)
+ da.DeleteCommand = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn)
+
+ da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id")
+ da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name")
+
+ da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id")
+ da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name")
+ da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original
+
+ da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original
+ End Sub
+
+
+ public static void CreateSqlDataAdapter()
+ {
+ MySqlDataAdapter da = new MySqlDataAdapter("SELECT id, name FROM mytable", "Data Source=localhost;database=test");
+ MySqlConnection conn = da.SelectCommand.Connection;
+ da.MissingSchemaAction = MissingSchemaAction.AddWithKey;
+
+ da.InsertCommand = new MySqlCommand("INSERT INTO mytable (id, name) " +
+ "VALUES (@id, @name)", conn);
+ da.UpdateCommand = new MySqlCommand("UPDATE mytable SET id=@id, name=@name " +
+ "WHERE id=@oldId", conn);
+ da.DeleteCommand = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn);
+
+ da.InsertCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id");
+ da.InsertCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name");
+
+ da.UpdateCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id");
+ da.UpdateCommand.Parameters.Add("@name", MySqlDbType.VarChar, 40, "name");
+ da.UpdateCommand.Parameters.Add("@oldId", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original;
+
+ da.DeleteCommand.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id").SourceVersion = DataRowVersion.Original;
+ }
+
+
+
+
+
+ Gets or sets a SQL statement or stored procedure used to delete records from the data set.
+
+ A used during to delete records in the
+ database that correspond to deleted rows in the .
+
+
+ During , if this property is not set and primary key information
+ is present in the , the DeleteCommand can be generated
+ automatically if you set the property and use the
+ . Then, any additional commands that you do not set are
+ generated by the MySqlCommandBuilder. This generation logic requires key column
+ information to be present in the DataSet.
+
+
+ When DeleteCommand is assigned to a previously created ,
+ the MySqlCommand is not cloned. The DeleteCommand maintains a reference
+ to the previously created MySqlCommand object.
+
+
+ The following example creates a and sets the
+ and DeleteCommand properties. It assumes you have already
+ created a object.
+
+ Public Shared Function CreateCustomerAdapter(conn As MySqlConnection) As MySqlDataAdapter
+
+ Dim da As MySqlDataAdapter = New MySqlDataAdapter()
+ Dim cmd As MySqlCommand
+ Dim parm As MySqlParameter
+
+ ' Create the SelectCommand.
+ cmd = New MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn)
+
+ cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15)
+ cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15)
+
+ da.SelectCommand = cmd
+
+ ' Create the DeleteCommand.
+ cmd = New MySqlCommand("DELETE FROM mytable WHERE id=@id", conn)
+
+ parm = cmd.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id")
+ parm.SourceVersion = DataRowVersion.Original
+
+ da.DeleteCommand = cmd
+
+ Return da
+ End Function
+
+
+ public static MySqlDataAdapter CreateCustomerAdapter(MySqlConnection conn)
+ {
+ MySqlDataAdapter da = new MySqlDataAdapter();
+ MySqlCommand cmd;
+ MySqlParameter parm;
+
+ // Create the SelectCommand.
+ cmd = new MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn);
+
+ cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15);
+ cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15);
+
+ da.SelectCommand = cmd;
+
+ // Create the DeleteCommand.
+ cmd = new MySqlCommand("DELETE FROM mytable WHERE id=@id", conn);
+
+ parm = cmd.Parameters.Add("@id", MySqlDbType.VarChar, 5, "id");
+ parm.SourceVersion = DataRowVersion.Original;
+
+ da.DeleteCommand = cmd;
+
+ return da;
+ }
+
+
+
+
+
+ Gets or sets a SQL statement or stored procedure used to insert records into the data set.
+
+ A used during to insert records into the
+ database that correspond to new rows in the .
+
+
+ During , if this property is not set and primary key information
+ is present in the , the InsertCommand can be generated
+ automatically if you set the property and use the
+ . Then, any additional commands that you do not set are
+ generated by the MySqlCommandBuilder. This generation logic requires key column
+ information to be present in the DataSet.
+
+
+ When InsertCommand is assigned to a previously created ,
+ the MySqlCommand is not cloned. The InsertCommand maintains a reference
+ to the previously created MySqlCommand object.
+
+
+ If execution of this command returns rows, these rows may be added to the DataSet
+ depending on how you set the property of the MySqlCommand object.
+
+
+ The following example creates a and sets the
+ and InsertCommand properties. It assumes you have already
+ created a object.
+
+ Public Shared Function CreateCustomerAdapter(conn As MySqlConnection) As MySqlDataAdapter
+
+ Dim da As MySqlDataAdapter = New MySqlDataAdapter()
+ Dim cmd As MySqlCommand
+ Dim parm As MySqlParameter
+
+ ' Create the SelectCommand.
+ cmd = New MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn)
+
+ cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15)
+ cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15)
+
+ da.SelectCommand = cmd
+
+ ' Create the InsertCommand.
+ cmd = New MySqlCommand("INSERT INTO mytable (id,name) VALUES (@id, @name)", conn)
+
+ cmd.Parameters.Add( "@id", MySqlDbType.VarChar, 15, "id" )
+ cmd.Parameters.Add( "@name", MySqlDbType.VarChar, 15, "name" )
+ da.InsertCommand = cmd
+
+ Return da
+ End Function
+
+
+ public static MySqlDataAdapter CreateCustomerAdapter(MySqlConnection conn)
+ {
+ MySqlDataAdapter da = new MySqlDataAdapter();
+ MySqlCommand cmd;
+ MySqlParameter parm;
+
+ // Create the SelectCommand.
+ cmd = new MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn);
+
+ cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15);
+ cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15);
+
+ da.SelectCommand = cmd;
+
+ // Create the InsertCommand.
+ cmd = new MySqlCommand("INSERT INTO mytable (id,name) VALUES (@id,@name)", conn);
+ cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15, "id" );
+ cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15, "name" );
+
+ da.InsertCommand = cmd;
+
+ return da;
+ }
+
+
+
+
+
+ Gets or sets a SQL statement or stored procedure used to select records in the data source.
+
+ A used during to select records from the
+ database for placement in the .
+
+
+ When SelectCommand is assigned to a previously created ,
+ the MySqlCommand is not cloned. The SelectCommand maintains a reference to the
+ previously created MySqlCommand object.
+
+
+ If the SelectCommand does not return any rows, no tables are added to the
+ , and no exception is raised.
+
+
+ The following example creates a and sets the
+ and InsertCommand properties. It assumes you have already
+ created a object.
+
+ Public Shared Function CreateCustomerAdapter(conn As MySqlConnection) As MySqlDataAdapter
+
+ Dim da As MySqlDataAdapter = New MySqlDataAdapter()
+ Dim cmd As MySqlCommand
+ Dim parm As MySqlParameter
+
+ ' Create the SelectCommand.
+ cmd = New MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn)
+
+ cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15)
+ cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15)
+
+ da.SelectCommand = cmd
+
+ ' Create the InsertCommand.
+ cmd = New MySqlCommand("INSERT INTO mytable (id,name) VALUES (@id, @name)", conn)
+
+ cmd.Parameters.Add( "@id", MySqlDbType.VarChar, 15, "id" )
+ cmd.Parameters.Add( "@name", MySqlDbType.VarChar, 15, "name" )
+ da.InsertCommand = cmd
+
+ Return da
+ End Function
+
+
+ public static MySqlDataAdapter CreateCustomerAdapter(MySqlConnection conn)
+ {
+ MySqlDataAdapter da = new MySqlDataAdapter();
+ MySqlCommand cmd;
+ MySqlParameter parm;
+
+ // Create the SelectCommand.
+ cmd = new MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn);
+
+ cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15);
+ cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15);
+
+ da.SelectCommand = cmd;
+
+ // Create the InsertCommand.
+ cmd = new MySqlCommand("INSERT INTO mytable (id,name) VALUES (@id,@name)", conn);
+ cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15, "id" );
+ cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15, "name" );
+
+ da.InsertCommand = cmd;
+
+ return da;
+ }
+
+
+
+
+
+ Gets or sets a SQL statement or stored procedure used to updated records in the data source.
+
+ A used during to update records in the
+ database with data from the .
+
+
+ During , if this property is not set and primary key information
+ is present in the , the UpdateCommand can be generated
+ automatically if you set the property and use the
+ . Then, any additional commands that you do not set are
+ generated by the MySqlCommandBuilder. This generation logic requires key column
+ information to be present in the DataSet.
+
+
+ When UpdateCommand is assigned to a previously created ,
+ the MySqlCommand is not cloned. The UpdateCommand maintains a reference
+ to the previously created MySqlCommand object.
+
+
+ If execution of this command returns rows, these rows may be merged with the DataSet
+ depending on how you set the property of the MySqlCommand object.
+
+
+ The following example creates a and sets the
+ and UpdateCommand properties. It assumes you have already
+ created a object.
+
+ Public Shared Function CreateCustomerAdapter(conn As MySqlConnection) As MySqlDataAdapter
+
+ Dim da As MySqlDataAdapter = New MySqlDataAdapter()
+ Dim cmd As MySqlCommand
+ Dim parm As MySqlParameter
+
+ ' Create the SelectCommand.
+ cmd = New MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn)
+
+ cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15)
+ cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15)
+
+ da.SelectCommand = cmd
+
+ ' Create the UpdateCommand.
+ cmd = New MySqlCommand("UPDATE mytable SET id=@id, name=@name WHERE id=@oldId", conn)
+
+ cmd.Parameters.Add( "@id", MySqlDbType.VarChar, 15, "id" )
+ cmd.Parameters.Add( "@name", MySqlDbType.VarChar, 15, "name" )
+
+ parm = cmd.Parameters.Add("@oldId", MySqlDbType.VarChar, 15, "id")
+ parm.SourceVersion = DataRowVersion.Original
+
+ da.UpdateCommand = cmd
+
+ Return da
+ End Function
+
+
+ public static MySqlDataAdapter CreateCustomerAdapter(MySqlConnection conn)
+ {
+ MySqlDataAdapter da = new MySqlDataAdapter();
+ MySqlCommand cmd;
+ MySqlParameter parm;
+
+ // Create the SelectCommand.
+ cmd = new MySqlCommand("SELECT * FROM mytable WHERE id=@id AND name=@name", conn);
+
+ cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15);
+ cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15);
+
+ da.SelectCommand = cmd;
+
+ // Create the UpdateCommand.
+ cmd = new MySqlCommand("UPDATE mytable SET id=@id, name=@name WHERE id=@oldId", conn);
+ cmd.Parameters.Add("@id", MySqlDbType.VarChar, 15, "id" );
+ cmd.Parameters.Add("@name", MySqlDbType.VarChar, 15, "name" );
+
+ parm = cmd.Parameters.Add( "@oldId", MySqlDbType.VarChar, 15, "id" );
+ parm.SourceVersion = DataRowVersion.Original;
+
+ da.UpdateCommand = cmd;
+
+ return da;
+ }
+
+
+
+
+
+ Open connection if it was closed.
+ Necessary to workaround "connection must be open and valid" error
+ with batched updates.
+
+ Row state
+ list of opened connections
+ If connection is opened by this function, the list is updated
+
+ true if connection was opened
+
+
+
+ Overridden. See .
+
+
+
+
+
+
+
+
+
+ Overridden. See .
+
+
+
+
+
+
+
+
+
+ Overridden. Raises the RowUpdating event.
+
+ A MySqlRowUpdatingEventArgs that contains the event data.
+
+
+
+ Overridden. Raises the RowUpdated event.
+
+ A MySqlRowUpdatedEventArgs that contains the event data.
+
+
+
+ Asynchronous version of the Fill method.
+
+ The to fill records with.
+ The number of rows successfully added to or refreshed in the .
+
+
+
+ Asynchronous version of the Fill method.
+
+ The to fill records with.
+ The cancellation token.
+ The number of rows successfully added to or refreshed in the .
+
+
+
+ Asynchronous version of the Fill method.
+
+ The name of the to use for table mapping.
+ The number of rows successfully added to or refreshed in the .
+
+
+
+ Asynchronous version of the Fill method.
+
+ The name of the to use for table mapping.
+ The cancellation token.
+ The number of rows successfully added to or refreshed in the .
+
+
+
+ Asynchronous version of the Fill method.
+
+ The to fill with records.
+ The name of the source table to use for table mapping.
+ The number of rows successfully added to or refreshed in the .
+
+
+
+ Asynchronous version of the Fill method.
+
+ The to fill with records.
+ The name of the source table to use for table mapping.
+ The cancellation token.
+ The number of rows successfully added to or refreshed in the .
+
+
+
+ Asynchronous version of the Fill method.
+
+ The to fill with records.
+ An instance of .
+ The number of rows successfully added to or refreshed in the .
+
+
+
+ Asynchronous version of the Fill method.
+
+ The to fill with records.
+ An instance of .
+ The cancellation token.
+ The number of rows successfully added to or refreshed in the .
+
+
+
+ Asynchronous version of the Fill method.
+
+ The to fill with records.
+ The SQL SELECT statement used to retrieve rows from the data source.
+ One of the values.
+ The number of rows successfully added to or refreshed in the .
+
+
+
+ Asynchronous version of the Fill method.
+
+ The to fill with records.
+ The SQL SELECT statement used to retrieve rows from the data source.
+ One of the values.
+ The cancellation token.
+ The number of rows successfully added to or refreshed in the .
+
+
+
+ Asynchronous version of the Fill method.
+
+ The start record.
+ The max number of affected records.
+ The s to fill with records.
+ The number of rows successfully added to or refreshed in the .
+
+
+
+ Asynchronous version of the Fill method.
+
+ The start record.
+ The max number of affected records.
+ The cancellation token.
+ The s to fill with records.
+ The number of rows successfully added to or refreshed in the .
+
+
+
+ Asynchronous version of the Fill method.
+
+ The to fill with records.
+ The start record.
+ The max number of affected records.
+ The name of the source table to use for table mapping.
+ The number of rows successfully added to or refreshed in the .
+
+
+
+ Asynchronous version of the Fill method.
+
+ The to fill with records.
+ The start record.
+ The max number of affected records.
+ The name of the source table to use for table mapping.
+ The cancellation token.
+ The number of rows successfully added to or refreshed in the .
+
+
+
+ Asynchronous version of the Fill method.
+
+ The to fill with records.
+ The name of the source table to use for table mapping.
+ An instance of .
+ The start record.
+ The max number of affected records.
+ The number of rows successfully added to or refreshed in the .
+
+
+
+ Asynchronous version of the Fill method.
+
+ The to fill with records.
+ The name of the source table to use for table mapping.
+ An instance of .
+ The start record.
+ The max number of affected records.
+ The cancellation token.
+ The number of rows successfully added to or refreshed in the .
+
+
+
+ Asynchronous version of the Fill method.
+
+ The s to fill with records.
+ The start record.
+ The max number of affected records.
+ The SQL SELECT statement used to retrieve rows from the data source.
+ One of the values.
+ The number of rows successfully added to or refreshed in the s.
+
+
+
+ Asynchronous version of the Fill method.
+
+ The s to fill with records.
+ The start record.
+ The max number of affected records.
+ The SQL SELECT statement used to retrieve rows from the data source.
+ One of the values.
+ The cancellation token.
+ The number of rows successfully added to or refreshed in the s.
+
+
+
+ Asynchronous version of the Fill method.
+
+ The to fill with records.
+ The start record.
+ The max number of affected records.
+ The name of the source table to use for table mapping.
+ The SQL SELECT statement used to retrieve rows from the data source.
+ One of the values.
+ The number of rows successfully added to or refreshed in the .
+
+
+
+ Asynchronous version of the Fill method.
+
+ The to fill with records.
+ The start record.
+ The max number of affected records.
+ The name of the source table to use for table mapping.
+ The SQL SELECT statement used to retrieve rows from the data source.
+ One of the values.
+ The cancellation token.
+ The number of rows successfully added to or refreshed in the .
+
+
+
+ Async version of FillSchema
+
+ DataSet to use
+ Schema Type
+ DataTable[]
+
+
+
+ Async version of FillSchema
+
+ DataSet to use
+ Schema Type
+ Source Table
+ DataTable[]
+
+
+
+ Async version of FillSchema
+
+ DataSet to use
+ Schema Type
+ Source Table
+ DataReader to use
+ DataTable[]
+
+
+
+ Async version of FillSchema
+
+ DataSet to use
+ Schema Type
+ DBCommand to use
+ Source Table
+ Command Behavior
+ DataTable[]
+
+
+
+ Async version of FillSchema
+
+ DataTable to use
+ Schema Type
+ DataTable
+
+
+
+ Async version of FillSchema
+
+ DataTable to use
+ Schema Type
+ DataReader to use
+ DataTable
+
+
+
+ Async version of FillSchema
+
+ DataTable to use
+ Schema Type
+ DBCommand to use
+ Command Behavior
+ DataTable
+
+
+
+ Async version of Update
+
+ DataRow[] to use
+ int
+
+
+
+ Async version of Update
+
+ DataSet to use
+ int
+
+
+
+ Async version of Update
+
+ DataTable to use
+ int
+
+
+
+ Async version of Update
+
+ DataRow[] to use
+ Data Table Mapping
+ int
+
+
+
+ Async version of Update
+
+ DataSet to use
+ Source Table
+
+
+
+
+ Represents the method that will handle the event of a .
+
+
+
+
+ Represents the method that will handle the event of a .
+
+
+
+
+ Provides data for the RowUpdating event. This class cannot be inherited.
+
+
+
+
+ Initializes a new instance of the MySqlRowUpdatingEventArgs class.
+
+ The to
+ .
+ The to execute during .
+ One of the values that specifies the type of query executed.
+ The sent through an .
+
+
+
+ Gets or sets the MySqlCommand to execute when performing the Update.
+
+
+
+
+ Provides data for the RowUpdated event. This class cannot be inherited.
+
+
+
+
+ Initializes a new instance of the MySqlRowUpdatedEventArgs class.
+
+ The sent through an .
+ The executed when is called.
+ One of the values that specifies the type of query executed.
+ The sent through an .
+
+
+
+ Gets or sets the MySqlCommand executed when Update is called.
+
+
+
+
+ Enables the provider to help ensure that a user has a security level adequate for accessing data.
+
+
+
+
+ Adds a new connection string with set of restricted keywords to the MySqlClientPermission object
+
+ Settings to be used for the connection
+ Keywords to define the restrictions
+ KeyRestrictionBehavior to be used
+
+
+
+ Returns MySqlClientPermission as an IPermission
+
+
+
+
+
+ Associates a security action with a custom security attribute.
+
+
+
+
+ Represents a section within a configuration file.
+
+
+
+
+ Gets the MySQL configuations associated to the current configuration.
+
+
+
+
+ Gets a collection of the exception interceptors available in the current configuration.
+
+
+
+
+ Gets a collection of the command interceptors available in the current configuration.
+
+
+
+
+ Gets a collection of the authentication plugins available in the current configuration.
+
+
+
+
+ Gets or sets the replication configurations.
+
+
+
+
+ Defines the configurations allowed for an authentication plugin.
+
+
+
+
+ Gets or sets the name of the authentication plugin.
+
+
+
+
+ Gets or sets the type of the authentication plugin.
+
+
+
+
+ Defines the configurations allowed for an interceptor.
+
+
+
+
+ Gets or sets the name of the interceptor.
+
+
+
+
+ Gets or sets the type of the interceptor.
+
+
+
+
+ Represents a generic configuration element.
+
+
+
+
+
+ Gets an enumerator that iterates through the returned list.
+
+ An enumerator that iterates through the returned list.
+
+
+
+ Helper class that makes it easier to work with the provider.
+
+
+
+
+ Asynchronous version of ExecuteDataRow.
+
+ The settings to be used for the connection.
+ The command to execute.
+ The parameters to use for the command.
+ The DataRow containing the first row of the resultset.
+
+
+
+ Asynchronous version of ExecuteDataRow.
+
+ The settings to be used for the connection.
+ The command to execute.
+ The cancellation token.
+ The parameters to use for the command.
+ The DataRow containing the first row of the resultset.
+
+
+
+ Executes a single SQL command and returns the first row of the resultset. A new MySqlConnection object
+ is created, opened, and closed during this method.
+
+ Settings to be used for the connection
+ Command to execute
+ Parameters to use for the command
+ DataRow containing the first row of the resultset
+
+
+
+ Executes a single SQL command and returns the resultset in a .
+ A new MySqlConnection object is created, opened, and closed during this method.
+
+ Settings to be used for the connection
+ Command to execute
+ containing the resultset
+
+
+
+ Executes a single SQL command and returns the resultset in a .
+ A new MySqlConnection object is created, opened, and closed during this method.
+
+ Settings to be used for the connection
+ Command to execute
+ Parameters to use for the command
+ containing the resultset
+
+
+
+ Executes a single SQL command and returns the resultset in a .
+ The state of the object remains unchanged after execution
+ of this method.
+
+ object to use
+ Command to execute
+ containing the resultset
+
+
+
+ Executes a single SQL command and returns the resultset in a .
+ The state of the object remains unchanged after execution
+ of this method.
+
+ object to use
+ Command to execute
+ Parameters to use for the command
+ containing the resultset
+
+
+
+ Updates the given table with data from the given
+
+ Settings to use for the update
+ Command text to use for the update
+ containing the new data to use in the update
+ Tablename in the dataset to update
+
+
+
+ Async version of ExecuteDataset
+
+ Settings to be used for the connection
+ Command to execute
+ containing the resultset
+
+
+
+ Async version of ExecuteDataset
+
+ Settings to be used for the connection
+ Command to execute
+ Parameters to use for the command
+ containing the resultset
+
+
+
+ Async version of ExecuteDataset
+
+ object to use
+ Command to execute
+ containing the resultset
+
+
+
+ Async version of ExecuteDataset
+
+ object to use
+ Command to execute
+ Parameters to use for the command
+ containing the resultset
+
+
+
+ Async version of UpdateDataset
+
+ Settings to use for the update
+ Command text to use for the update
+ containing the new data to use in the update
+ Tablename in the dataset to update
+
+
+
+ Executes a single command against a MySQL database. The is assumed to be
+ open when the method is called and remains open after the method completes.
+
+ The object to use
+ The SQL command to be executed.
+ An array of objects to use with the command.
+ The number of affected records.
+
+
+
+ Executes a single command against a MySQL database.
+
+ to use.
+ The SQL command to be executed.
+ An rray of objects to use with the command.
+ The number of affected records.
+ A new is created using the given.
+
+
+
+ Executes a single command against a MySQL database, possibly inside an existing transaction.
+
+ object to use for the command
+ object to use for the command
+ Command text to use
+ Array of objects to use with the command
+ True if the connection should be preserved, false if not
+ object ready to read the results of the command
+
+
+
+ Executes a single command against a MySQL database.
+
+ Settings to use for this command
+ Command text to use
+ object ready to read the results of the command
+
+
+
+ Executes a single command against a MySQL database.
+
+ object to use for the command
+ Command text to use
+ object ready to read the results of the command
+
+
+
+ Executes a single command against a MySQL database.
+
+ Settings to use for this command
+ Command text to use
+ Array of objects to use with the command
+ object ready to read the results of the command
+
+
+
+ Executes a single command against a MySQL database.
+
+ Connection to use for the command
+ Command text to use
+ Array of objects to use with the command
+ object ready to read the results of the command
+
+
+
+ Execute a single command against a MySQL database.
+
+ Settings to use for the update
+ Command text to use for the update
+ The first column of the first row in the result set, or a null reference if the result set is empty.
+
+
+
+ Execute a single command against a MySQL database.
+
+ Settings to use for the command
+ Command text to use for the command
+ Parameters to use for the command
+ The first column of the first row in the result set, or a null reference if the result set is empty.
+
+
+
+ Execute a single command against a MySQL database.
+
+ object to use
+ Command text to use for the command
+ The first column of the first row in the result set, or a null reference if the result set is empty.
+
+
+
+ Execute a single command against a MySQL database.
+
+ object to use
+ Command text to use for the command
+ Parameters to use for the command
+ The first column of the first row in the result set, or a null reference if the result set is empty.
+
+
+
+ Escapes the string.
+
+ The string to escape.
+ The string with all quotes escaped.
+
+
+
+ Replaces quotes with double quotes.
+
+ The string to modidify.
+ A string containing double quotes instead of single quotes.
+
+
+
+ Async version of ExecuteNonQuery
+
+ object to use
+ SQL command to be executed
+ Array of objects to use with the command.
+ Rows affected
+
+
+
+ Asynchronous version of the ExecuteNonQuery method.
+
+ to use.
+ The SQL command to be executed.
+ An array of objects to use with the command.
+ The number of rows affected.
+
+
+
+ Asynchronous version of the ExecuteNonQuery method.
+
+ to use.
+ The SQL command to be executed.
+ The cancellation token.
+ An array of objects to use with the command.
+ The number of rows affected.
+
+
+
+ Async version of ExecuteReader
+
+ object to use for the command
+ object to use for the command
+ Command text to use
+ Array of objects to use with the command
+ True if the connection should be preserved, false if not
+ object ready to read the results of the command
+
+
+
+ Async version of ExecuteReader
+
+ Settings to use for this command
+ Command text to use
+ object ready to read the results of the command
+
+
+
+ Async version of ExecuteReader
+
+ object to use for the command
+ Command text to use
+ object ready to read the results of the command
+
+
+
+ Async version of ExecuteReader
+
+ Settings to use for this command
+ Command text to use
+ Array of objects to use with the command
+ object ready to read the results of the command
+
+
+
+ Async version of ExecuteReader
+
+ Connection to use for the command
+ Command text to use
+ Array of objects to use with the command
+ object ready to read the results of the command
+
+
+
+ Async version of ExecuteScalar
+
+ Settings to use for the update
+ Command text to use for the update
+ The first column of the first row in the result set, or a null reference if the result set is empty.
+
+
+
+ Async version of ExecuteScalar
+
+ Settings to use for the command
+ Command text to use for the command
+ Parameters to use for the command
+ The first column of the first row in the result set, or a null reference if the result set is empty.
+
+
+
+ Async version of ExecuteScalar
+
+ object to use
+ Command text to use for the command
+ The first column of the first row in the result set, or a null reference if the result set is empty.
+
+
+
+ Async version of ExecuteScalar
+
+ object to use
+ Command text to use for the command
+ Parameters to use for the command
+ The first column of the first row in the result set, or a null reference if the result set is empty.
+
+
+
+ Represents a parameter to a , This class cannot be inherited.
+
+
+
+
+ Gets or sets the to use when loading .
+
+
+
+
+ CLoses this object.
+
+ An object that is a clone of this object.
+
+
+
+ Initializes a new instance of the class with the parameter name, the , the size, and the source column name.
+
+ The name of the parameter to map.
+ One of the values.
+ The length of the parameter.
+ The name of the source column.
+
+
+
+ Initializes a new instance of the class with the parameter name and a value of the new MySqlParameter.
+
+ The name of the parameter to map.
+ An that is the value of the .
+
+
+
+ Initializes a new instance of the class with the parameter name and the data type.
+
+ The name of the parameter to map.
+ One of the values.
+
+
+
+ Initializes a new instance of the class with the parameter name, the , and the size.
+
+ The name of the parameter to map.
+ One of the values.
+ The length of the parameter.
+
+
+
+ Initializes a new instance of the class with the parameter name, the type of the parameter, the size of the parameter, a , the precision of the parameter, the scale of the parameter, the source column, a to use, and the value of the parameter.
+
+ The name of the parameter to map.
+ One of the values.
+ The length of the parameter.
+ One of the values.
+ true if the value of the field can be null, otherwise false.
+ The total number of digits to the left and right of the decimal point to which is resolved.
+ The total number of decimal places to which is resolved.
+ The name of the source column.
+ One of the values.
+ An that is the value of the .
+
+
+
+
+ Gets or sets a value indicating whether the parameter is input-only, output-only, bidirectional, or a stored procedure return value parameter.
+ As of MySql version 4.1 and earlier, input-only is the only valid choice.
+
+
+
+
+ Gets or sets a value indicating whether the parameter accepts null values.
+
+
+
+
+ Gets or sets the of the parameter.
+
+
+
+
+ Gets or sets the maximum number of digits used to represent the property.
+
+
+
+
+ Gets or sets the number of decimal places to which is resolved.
+
+
+
+
+ Gets or sets the maximum size, in bytes, of the data within the column.
+
+
+
+
+ Gets or sets the value of the parameter.
+
+
+
+
+ Returns the possible values for this parameter if this parameter is of type
+ SET or ENUM. Returns null otherwise.
+
+
+
+
+ Gets or sets the name of the source column that is mapped to the and used for loading or returning the .
+
+
+
+
+ Sets or gets a value which indicates whether the source column is nullable.
+ This allows to correctly generate Update statements
+ for nullable columns.
+
+
+
+
+ Gets or sets the of the parameter.
+
+
+
+
+ Overridden. Gets a string containing the .
+
+
+
+
+
+ Resets the DbType property to its original settings.
+
+
+
+
+ Represents a collection of parameters relevant to a as well as their respective mappings to columns in a . This class cannot be inherited.
+
+
+ The number of the parameters in the collection must be equal to the number of
+ parameter placeholders within the command text, or an exception will be generated.
+
+ The following example creates multiple instances of
+ through the MySqlParameterCollection collection within the .
+ These parameters are used to select data within the data source and place the data in
+ the . This code assumes that a DataSet and a MySqlDataAdapter
+ have already been created with the appropriate schema, commands, and connection.
+
+ Public Sub AddParameters()
+ ' ...
+ ' create myDataSet and myDataAdapter
+ ' ...
+ myDataAdapter.SelectCommand.Parameters.Add("@CategoryName", MySqlDbType.VarChar, 80).Value = "toasters"
+ myDataAdapter.SelectCommand.Parameters.Add("@SerialNum", MySqlDbType.Long).Value = 239
+
+ myDataAdapter.Fill(myDataSet)
+ End Sub 'AddSqlParameters
+
+
+ public void AddSqlParameters()
+ {
+ // ...
+ // create myDataSet and myDataAdapter
+ // ...
+
+ myDataAdapter.SelectCommand.Parameters.Add("@CategoryName", MySqlDbType.VarChar, 80).Value = "toasters";
+ myDataAdapter.SelectCommand.Parameters.Add("@SerialNum", MySqlDbType.Long).Value = 239;
+ myDataAdapter.Fill(myDataSet);
+
+ }
+
+
+
+
+
+ Gets a value that indicates whether the
+ has a fixed size.
+
+
+
+
+ Gets a value that indicates whether the
+ is read-only.
+
+
+
+
+ Gets a value that indicates whether the
+ is synchronized.
+
+
+
+
+ Gets the number of MySqlParameter objects in the collection.
+
+
+
+
+ Gets the at the specified index.
+
+ Gets the with a specified attribute.
+ [C#] In C#, this property is the indexer for the class.
+
+
+
+
+ Gets the with the specified name.
+
+
+
+
+ Adds a to the with the parameter name, the data type, the column length, and the source column name.
+
+ The name of the parameter.
+ One of the values.
+ The length of the column.
+ The name of the source column.
+ The newly added object.
+
+
+
+ Adds the specified object to the .
+
+ The to add to the collection.
+ The newly added object.
+
+
+
+ Adds a parameter and its value.
+
+ The name of the parameter.
+ The value of the parameter.
+ A object representing the provided values.
+
+
+
+ Adds a to the given the parameter name and the data type.
+
+ The name of the parameter.
+ One of the values.
+ The newly added object.
+
+
+
+ Adds a to the with the parameter name, the data type, and the column length.
+
+ The name of the parameter.
+ One of the values.
+ The length of the column.
+ The newly added object.
+
+
+
+ Removes all items from the collection.
+
+
+
+
+ Gets the location of the in the collection with a specific parameter name.
+
+ The name of the object to retrieve.
+ The zero-based location of the in the collection.
+
+
+
+ Gets the location of a in the collection.
+
+ The object to locate.
+ The zero-based location of the in the collection.
+ Gets the location of a in the collection.
+
+
+
+ This method will update all the items in the index hashes when
+ we insert a parameter somewhere in the middle
+
+
+
+
+
+
+ Adds an array of values to the end of the .
+
+
+
+
+
+ Retrieve the parameter with the given name.
+
+
+
+
+
+
+ Adds the specified object to the .
+
+ The to add to the collection.
+ The index of the new object.
+
+
+
+ Gets a value indicating whether a with the specified parameter name exists in the collection.
+
+ The name of the object to find.
+ true if the collection contains the parameter; otherwise, false.
+
+
+
+ Gets a value indicating whether a MySqlParameter exists in the collection.
+
+ The value of the object to find.
+ true if the collection contains the object; otherwise, false.
+ Gets a value indicating whether a exists in the collection.
+
+
+
+ Copies MySqlParameter objects from the MySqlParameterCollection to the specified array.
+
+
+
+
+
+
+ Returns an enumerator that iterates through the .
+
+
+
+
+
+ Inserts a MySqlParameter into the collection at the specified index.
+
+
+
+
+
+
+ Removes the specified MySqlParameter from the collection.
+
+
+
+
+
+ Removes the specified from the collection using the parameter name.
+
+ The name of the object to retrieve.
+
+
+
+ Removes the specified from the collection using a specific index.
+
+ The zero-based index of the parameter.
+ Removes the specified from the collection.
+
+
+
+ Gets an object that can be used to synchronize access to the
+ .
+
+
+
+
+ Represents a single(not nested) TransactionScope
+
+
+
+
+ Defines security permissions assigned to a MySQL object.
+
+
+
+
+ Creates a set of permissions.
+
+ A flag indicating if the reflection permission should be included.
+ A object representing a collection of permissions.
+
+
+
+ BaseCommandInterceptor is the base class that should be used for all userland
+ command interceptors
+
+
+
+
+ Gets the active connection.
+
+
+
+
+ Executes an SQL statements that returns a scalar value such as a calculation.
+
+ The SQL statement to execute.
+ A scalar value that represents the result returned by the execution of the SQL statement.
+ false.
+ This method is intended to be overriden.
+
+
+
+ Executes an SQL statement that returns the number of affected rows.
+
+ The SQL statement to execute.
+ The number of affected rows.
+ false.
+ This method is intended to be overriden.
+
+
+
+ Executes an SQL statement that will return a resultset.
+
+ The SQL statement to execute.
+ A value that describes the results of the query and its effect on the database.
+ A object containing the result of the statement execution.
+ false.
+ This method is intended to be overriden.
+
+
+
+ Sets the active connection.
+
+ The active connection.
+
+
+
+ CommandInterceptor is the "manager" class that keeps the list of registered interceptors
+ for the given connection.
+
+
+
+
+ BaseExceptionInterceptor is the base class that should be used for all userland
+ exception interceptors.
+
+
+
+
+ Returns the received exception.
+
+ The exception to be returned.
+ The exception originally received.
+
+
+
+ Gets the active connection.
+
+
+
+
+ Initilizes this object by setting the active connection.
+
+ The connection to become active.
+
+
+
+ StandardExceptionInterceptor is the standard interceptor that simply returns the exception.
+ It is the default action.
+
+
+
+
+ Returns the received exception, which is the default action
+
+ The exception to be returned.
+ The exception originally received.
+
+
+
+ ExceptionInterceptor is the "manager" class that keeps the list of registered interceptors
+ for the given connection.
+
+
+
+
+ Interceptor is the base class for the "manager" classes such as ExceptionInterceptor,
+ CommandInterceptor, etc
+
+
+
+
+ Return schema information about procedures and functions
+ Restrictions supported are:
+ schema, name, type
+
+
+
+
+
+
+ Return schema information about parameters for procedures and functions
+ Restrictions supported are:
+ schema, name, type, parameter name
+
+
+
+
+ Initializes a new row for the procedure parameters table.
+
+
+
+
+ Parses out the elements of a procedure parameter data type.
+
+
+
+
+ Implementation of memcached binary client protocol.
+
+ According to http://code.google.com/p/memcached/wiki/BinaryProtocolRevamped
+
+
+
+ Sends an store command (add, replace, set).
+
+
+
+
+
+
+
+
+
+
+ Sends a get command.
+
+
+
+
+
+
+
+
+ Sends a delete command.
+
+
+
+
+
+
+
+ Sends a command without args (like flush).
+
+
+
+
+
+
+
+ Sends a command with amount (INCR/DECR)
+
+
+
+
+
+
+
+
+ Encodes in the binary protocol the a command of the kind set, add or replace.
+
+
+
+
+
+
+ If true applies to set, add or replace commands; if false applies to append and prepend commands.
+
+
+
+
+ An interface of the client memcached protocol. This class is abstract for
+ implementation of the Memcached client interface see for the
+ text protocol version and for the binary protocol version.
+
+
+
+
+ The port used by the connection.
+
+
+
+
+ The server DNS or IP address used by the connection.
+
+
+
+
+ The network stream used by the connecition.
+
+
+
+
+ Factory method for creating instances of that implement a connection with the requested features.
+ The connection object returned must be explicitely opened see method .
+
+ The Memcached server DNS or IP address.
+ The port for the Memcached server
+ A set of flags indicating characterestics requested.
+ An instance of a client connection ready to be used.
+
+
+
+ Opens the client connection.
+
+
+
+
+ Closes the client connection.
+
+
+
+
+ Adds a new key/value pair with the given TimeSpan expiration.
+
+ The key for identifying the entry.
+ The data to associate with the key.
+ The interval of timespan, use TimeSpan.Zero for no expiration.
+
+
+
+ Appens the data to the existing data for the associated key.
+
+ The key for identifying the entry.
+ The data to append with the data associated with the key.
+
+
+
+ Executes the Check-and-set Memcached operation.
+
+ The key for identifying the entry.
+ The data to use in the CAS.
+ The interval of timespan, use TimeSpan.Zero for no expiration.
+ The CAS unique value to use.
+
+
+
+
+ Decrements the value associated with a key by the given amount.
+
+ The key associated with the value to decrement.
+ The amount to decrement the value.
+
+
+
+ Removes they pair key/value given the specified key.
+
+
+
+
+
+ Removes all entries from the storage, effectively invalidating the whole cache.
+
+ The interval after which the cache will be cleaned. Can be TimeSpan.Zero for immediately.
+
+
+
+ Get the key/value pair associated with a given key.
+
+ The key for which to returm the key/value.
+ The key/value associated with the key or a MemcachedException if it does not exists.
+
+
+
+ Increments the value associated with a key by the given amount.
+
+ The key associated with the value to increment.
+ The amount to increment the value.
+
+
+
+ Prepends the data to the existing data for the associated key.
+
+ The key for identifying the entry.
+ The data to append with the data associated with the key.
+
+
+
+ Replaces the value associated with the given key with another value.
+
+ The key for identifying the entry.
+ The data to replace the value associated with the key.
+ The interval of timespan, use TimeSpan.Zero for no expiration.
+
+
+
+ Set the value of a given key.
+
+ The key for identifying the entry.
+ The data to associate with the given key.
+ The interval of timespan, use TimeSpan.Zero for no expiration.
+
+
+
+ A set of flags for requesting new instances of connections
+
+
+
+
+ Requests a connection implememting the text protocol.
+
+
+
+
+ Requests a connection implementing the binary protocol.
+
+
+
+
+ Requests a TCP connection. Currently UDP is not supported.
+
+
+
+
+ The base exception class for all Memcached exceptions.
+
+
+
+
+ Implementation of the Memcached text client protocol.
+
+
+
+
+ Sends a command to the memcached server.
+
+
+
+
+
+
+ This version is for commands that take a key, data, expiration and casUnique.
+
+
+
+ Sends a command to the memcached server.
+
+
+
+
+
+ This version is for commands that take a key, data and expiration
+
+
+
+ Send a command to memcached server.
+
+
+
+
+ This version is for commands that don't need flags neither expiration fields.
+
+
+
+ Sends a command to the server.
+
+
+
+ This version is for commands that only require a key
+
+
+
+ Sends a command to the server.
+
+
+
+
+ This version is for commands that only require a key and an integer value.
+
+
+
+ Sends a command to the server.
+
+
+
+ This version is for commands that only require a key and expiration.
+
+
+
+ Abstract class that provides common functionality for connection options that apply for all protocols.
+
+
+
+
+ Readonly field containing a collection of protocol shared connection options.
+
+
+
+
+ Gets or sets a flag indicating if the object has access to procedures.
+
+
+
+
+ Gets or sets a dictionary representing key-value pairs for each connection option.
+
+
+
+
+ Gets or sets the name of the server.
+
+ The server.
+
+
+
+ Gets or sets the name of the database for the initial connection.
+
+
+
+
+ Gets or sets the protocol that should be used for communicating
+ with MySQL.
+
+
+
+
+ Gets or sets the port number that is used when the socket
+ protocol is being used.
+
+
+
+
+ Gets or sets a boolean value that indicates whether this connection
+ should resolve DNS SRV records.
+
+
+
+
+ Gets or sets the user ID that should be used to connect with.
+
+
+
+
+ Gets or sets the password that should be used to make a connection.
+
+
+
+
+ Gets or sets the path to the certificate file to be used.
+
+
+
+
+ Gets or sets the password to be used in conjunction with the certificate file.
+
+
+
+
+ Gets or sets the location to a personal store where a certificate is held.
+
+
+
+
+ Gets or sets a certificate thumbprint to ensure correct identification of a certificate contained within a personal store.
+
+
+
+
+ Indicates whether to use SSL connections and how to handle server certificate errors.
+
+
+
+
+ Sets the TLS versions to use in a SSL connection to the server.
+
+
+ Tls version=TLSv1.1,TLSv1.2;
+
+
+
+
+ Gets or sets the path to a local key file in PEM format to use for establishing an encrypted connection.
+
+
+
+
+ Gets or sets the path to a local certificate file in PEM format to use for establishing an encrypted connection.
+
+
+
+
+ Gets or sets the name of the SSH server.
+
+
+
+
+ Gets or sets the port number to use when authenticating to the SSH server.
+
+
+
+
+ Gets or sets the user name to authenticate to the SSH server.
+
+
+
+
+ Gets or sets the password to authenticate to the SSH server.
+
+
+
+
+ Gets or sets the SSH key file to authenticate to the SSH server.
+
+
+
+
+ Gets or sets the passphrase of the key file to authenticate to the SSH server.
+
+
+
+
+ Gets or sets the idle connection time(seconds) for TCP connections.
+
+
+
+
+ Gets or sets the character set that should be used for sending queries to the server.
+
+
+
+
+ Analyzes the connection string for potential duplicated or invalid connection options.
+
+ Connection string.
+ Flag that indicates if the connection is using X Protocol.
+ Flag that indicates if the default port is used.
+
+
+
+ Represents a set of methods for creating instances of the MySQL client implementation of the data source classes.
+
+
+
+
+ Gets an instance of the .
+ This can be used to retrieve strongly typed data objects.
+
+
+
+
+ Returns a strongly typed instance.
+
+ A new strongly typed instance of DbCommand.
+
+
+
+ Returns a strongly typed instance.
+
+ A new strongly typed instance of DbConnection.
+
+
+
+ Returns a strongly typed instance.
+
+ A new strongly typed instance of DbParameter.
+
+
+
+ Returns a strongly typed instance.
+
+ A new strongly typed instance of DbConnectionStringBuilder.
+
+
+
+ Returns a strongly typed instance.
+
+ A new strongly typed instance of DbCommandBuilder.
+
+
+
+ Returns a strongly typed instance.
+
+ A new strongly typed instance of DbDataAdapter.
+
+
+
+ Provide a simple caching layer
+
+
+
+
+ Aids in the creation of connection strings by exposing the connection options as properties.
+ Contains connection options specific to the Classic protocol.
+
+
+
+
+ Main constructor.
+
+
+
+
+ Constructor accepting a connection string.
+
+ The connection string.
+
+
+
+ Readonly field containing a collection of classic protocol and protocol shared connection options.
+
+
+
+
+ Gets or sets the name of the named pipe that should be used
+ for communicating with MySQL.
+
+
+
+
+ Gets or sets a boolean value that indicates whether this connection
+ should use compression.
+
+
+
+
+ Gets or sets a boolean value that indicates whether this connection will allow
+ commands to send multiple SQL statements in one execution.
+
+
+
+
+ Gets or sets a boolean value that indicates whether logging is enabled.
+
+
+
+
+ Gets or sets the base name of the shared memory objects used to
+ communicate with MySQL when the shared memory protocol is being used.
+
+
+
+
+ Gets or sets the default command timeout.
+
+
+
+
+ Gets or sets the connection timeout.
+
+
+
+
+ Gets or sets a boolean value that indicates whether this connection will allow
+ to load data local infile.
+
+
+
+
+ Gets or sets a boolean value that indicates if the password should be persisted
+ in the connection string.
+
+
+
+
+ Gets or sets a boolean value that indicates if the connection should be encrypted.
+
+ Obsolte. Use instead.
+
+
+
+ Gets or sets a boolean value that indicates if RSA public keys should be retrieved from the server.
+
+ This option is only relevant when SSL is disabled. Setting this option to true in
+ 8.0 servers that have the caching_sha2_password authentication plugin as the default plugin will
+ cause the connection attempt to fail if the user hasn't successfully connected to the server on a
+ previous occasion.
+
+
+
+ Gets or sets a boolean value that indicates if zero date time values are supported.
+
+ Default value is false.
+
+
+
+ Gets or sets a boolean value that indicates if zero datetime values should be
+ converted to DateTime.MinValue.
+
+ Default value is false.
+
+
+
+ Gets or sets a boolean value that indicates if the Usage Advisor should be enabled.
+
+ Default value is false.
+
+
+
+ Gets or sets the size of the stored procedure cache.
+
+ Default value is 25.
+
+
+
+ Gets or sets a boolean value that indicates if the performance monitor hooks should be enabled.
+
+ Default value is false.
+
+
+
+ Gets or sets a boolean value that indicates if calls to the Prepare method should be ignored.
+
+ Default value is false.
+
+
+
+ Gets or sets a boolean value that indicates if an opened connection should particiapte in the current scope.
+
+ Default value is true.
+
+
+
+ Gets or sets a boolean value that indicates if security asserts must be included.
+
+ Must be set to true when using the class in a partial trust environment,
+ with the library installed in the GAC of the hosting environment. Not supported in .NET Core.
+ Default value is false.
+
+
+
+ Gets or sets a boolean value that indicates if column binary flags set by the server are ignored.
+
+ Default value is true.
+
+
+
+ Gets or sets a boolean value that indicates if TINYINT(1) shound be treated as a BOOLEAN.
+
+ Default value is true.
+
+
+
+ Gets or sets a boolean value that indicates if the provider expects user variables in the SQL.
+
+ Default value is false.
+
+
+
+ Gets or sets a boolean value that indicates if the session should be interactive.
+
+ Default value is false.
+
+
+
+ Gets or sets a boolean value that indicates if server functions should be treated as returning a string.
+
+ Default value is false.
+
+
+
+ Gets or sets a boolean value that indicates if the server should report affected rows instead of found rows.
+
+ Default value is false.
+
+
+
+ Gets or sets a boolean value that indicates if items of data type BINARY(16) should be treated as guids.
+
+ Default value is false.
+
+
+
+ Gets or sets a boolean value that indicates if SQL Server syntax should be allowed by supporting square brackets
+ around symbols instead of backticks.
+
+ Default value is false.
+
+
+
+ Gets or sets a boolean value that indicates if caching of TableDirect commands is enabled.
+
+ Default value is false.
+
+
+
+ Gets or sets the seconds for how long a TableDirect result should be cached.
+
+ Default value is 0.
+
+
+
+ Gets or sets a boolean value that indicates if stored routine parameters should be checked against the server.
+
+ Default value is true.
+
+
+
+ Gets or sets a boolean value that indicates if this connection will use replication.
+
+ Default value is false.
+
+
+
+ Gets or sets the list of interceptors that can triage thrown MySqlExceptions.
+
+
+
+
+ Gets or sets the list of interceptors that can intercept command operations.
+
+
+
+
+ Gets or sets the lifetime of a pooled connection.
+
+ Default value is 0.
+
+
+
+ Gets or sets a boolean value indicating if connection pooling is enabled.
+
+ Default value is true.
+
+
+
+ Gets the minimum connection pool size.
+
+ Default value is 0.
+
+
+
+ Gets or sets the maximum connection pool setting.
+
+ Default value is 100.
+
+
+
+ Gets or sets a boolean value that indicates if the connection should be reset when retrieved
+ from the pool.
+
+ Default value is false.
+
+
+
+ Gets or sets a boolean value that indicates whether the server variable settings are updated by a
+ SHOW VARIABLES command each time a pooled connection is returned.
+
+ Default value is false.
+
+
+
+ Indicates whether the driver should treat binary BLOBs as UTF8.
+
+ Default value is false.
+
+
+
+ Gets or sets the pattern to match for the columns that should be treated as UTF8.
+
+
+
+
+ Gets or sets the pattern to match for the columns that should not be treated as UTF8.
+
+
+
+
+ Gets or sets a connection option.
+
+ The keyword that identifies the connection option to modify.
+
+
+
+ Summary description for ClientParam.
+
+
+
+
+ DB Operations Code
+
+
+
+
+ Specifies MySQL specific data type of a field, property, for use in a .
+
+
+
+
+
+ A fixed precision and scale numeric value between -1038
+ -1 and 10 38 -1.
+
+
+
+
+ The signed range is -128 to 127. The unsigned
+ range is 0 to 255.
+
+
+
+
+ A 16-bit signed integer. The signed range is
+ -32768 to 32767. The unsigned range is 0 to 65535
+
+
+
+
+ Specifies a 24 (3 byte) signed or unsigned value.
+
+
+
+
+ A 32-bit signed integer
+
+
+
+
+ A 64-bit signed integer.
+
+
+
+
+ A small (single-precision) floating-point
+ number. Allowable values are -3.402823466E+38 to -1.175494351E-38,
+ 0, and 1.175494351E-38 to 3.402823466E+38.
+
+
+
+
+ A normal-size (double-precision)
+ floating-point number. Allowable values are -1.7976931348623157E+308
+ to -2.2250738585072014E-308, 0, and 2.2250738585072014E-308 to
+ 1.7976931348623157E+308.
+
+
+
+
+ A timestamp. The range is '1970-01-01 00:00:00' to sometime in the
+ year 2037
+
+
+
+
+ Date The supported range is '1000-01-01' to '9999-12-31'.
+
+
+
+
+ Time The range is '-838:59:59' to '838:59:59'.
+
+
+
+
+ DateTime The supported range is '1000-01-01 00:00:00' to
+ '9999-12-31 23:59:59'.
+
+
+
+
+ Datetime The supported range is '1000-01-01 00:00:00' to
+ '9999-12-31 23:59:59'.
+
+
+
+
+ A year in 2- or 4-digit format (default is 4-digit). The
+ allowable values are 1901 to 2155, 0000 in the 4-digit year
+ format, and 1970-2069 if you use the 2-digit format (70-69).
+
+
+
+
+ Obsolete Use Datetime or Date type
+
+
+
+
+ A variable-length string containing 0 to 65535 characters
+
+
+
+
+ Bit-field data type
+
+
+
+
+ JSON
+
+
+
+
+ New Decimal
+
+
+
+
+ An enumeration. A string object that can have only one value,
+ chosen from the list of values 'value1', 'value2', ..., NULL
+ or the special "" error value. An ENUM can have a maximum of
+ 65535 distinct values
+
+
+
+
+ A set. A string object that can have zero or more values, each
+ of which must be chosen from the list of values 'value1', 'value2',
+ ... A SET can have a maximum of 64 members.
+
+
+
+
+ A binary column with a maximum length of 255 (2^8 - 1)
+ characters
+
+
+
+
+ A binary column with a maximum length of 16777215 (2^24 - 1) bytes.
+
+
+
+
+ A binary column with a maximum length of 4294967295 or
+ 4G (2^32 - 1) bytes.
+
+
+
+
+ A binary column with a maximum length of 65535 (2^16 - 1) bytes.
+
+
+
+
+ A variable-length string containing 0 to 255 bytes.
+
+
+
+
+ A fixed-length string.
+
+
+
+
+ Geometric (GIS) data type.
+
+
+
+
+ Unsigned 8-bit value.
+
+
+
+
+ Unsigned 16-bit value.
+
+
+
+
+ Unsigned 24-bit value.
+
+
+
+
+ Unsigned 32-bit value.
+
+
+
+
+ Unsigned 64-bit value.
+
+
+
+
+ Fixed length binary string.
+
+
+
+
+ Variable length binary string.
+
+
+
+
+ A text column with a maximum length of 255 (2^8 - 1) characters.
+
+
+
+
+ A text column with a maximum length of 16777215 (2^24 - 1) characters.
+
+
+
+
+ A text column with a maximum length of 4294967295 or
+ 4G (2^32 - 1) characters.
+
+
+
+
+ A text column with a maximum length of 65535 (2^16 - 1) characters.
+
+
+
+
+ A guid column.
+
+
+
+
+ Allows the user to specify the type of connection that should
+ be used.
+
+
+
+
+ TCP/IP style connection. Works everywhere.
+
+
+
+
+ TCP/IP style connection. Works everywhere.
+
+
+
+
+ TCP/IP style connection. Works everywhere.
+
+
+
+
+ Named pipe connection. Works only on Windows systems.
+
+
+
+
+ Named pipe connection. Works only on Windows systems.
+
+
+
+
+ Unix domain socket connection. Works only with Unix systems.
+
+
+
+
+ Unix domain socket connection. Works only with Unix systems.
+
+
+
+
+ Shared memory connection. Currently works only with Windows systems.
+
+
+
+
+ Shared memory connection. Currently works only with Windows systems.
+
+
+
+
+ SSL options for connection.
+
+
+
+
+ Do not use SSL.
+
+
+
+
+ Use SSL, if server supports it. This option is only available for the classic protocol.
+
+
+
+
+ Always use SSL. Deny connection if server does not support SSL.
+ Do not perform server certificate validation.
+ This is the default SSL mode when the same isn't specified as part of the connection string.
+
+
+
+
+ Always use SSL. Validate server SSL certificate, but different host name mismatch.
+
+
+
+
+ Always use SSL and perform full certificate validation.
+
+
+
+
+ Specifies the connection types supported
+
+
+
+
+ Use TCP/IP sockets.
+
+
+
+
+ Use client library.
+
+
+
+
+ Use MySQL embedded server.
+
+
+
+
+ Defines the location of the certificate store.
+
+
+
+
+ Do not use certificate store.
+
+
+
+
+ Use certificate store for the current user.
+
+
+
+
+ User certificate store for the machine.
+
+
+
+
+ Specifies the authentication mechanism that should be used.
+
+
+
+
+ If SSL is enabled or Unix sockets are being used, sets PLAIN as the authentication mechanism;
+ otherwise, it tries to use MYSQL41 and then SHA256_MEMORY.
+
+
+
+
+ Authenticate using PLAIN.
+
+
+
+
+ Authenticate using MYSQL41.
+
+
+
+
+ Authenticate using EXTERNAL.
+
+
+
+
+ Authenticate using SHA256_MEMORY.
+
+
+
+
+ Defines waiting options that may be used with row locking options.
+
+
+
+
+ Waits until the blocking transaction releases the row lock.
+
+
+
+
+ Never waits to acquire a row lock. The query executes immediately,
+ failing with an error if a requested row is locked.
+
+
+
+
+ Never waits to acquire a row lock. The query executes immediately,
+ removing locked rows from the result set.
+
+
+
+
+ Defines the type of compression used when data is exchanged between client and server.
+
+
+
+
+ Uses compression if client and server are able to reach a concensus. Otherwise, compression
+ is not used.
+
+
+
+
+ Enforces the use of compression. If no concensus is reached, an error is raised.
+
+
+
+
+ Disables compression.
+
+
+
+
+ Collection of error codes that can be returned by the server
+
+
+
+
+
+
+
+
+
+
+ Error level
+
+
+
+
+ Error code
+
+
+
+
+ Error message
+
+
+
+
+ Provides a reference to error codes returned by MySQL.
+
+
+
+
+ ER_HASHCHK
+
+
+
+ ER_NISAMCHK
+
+
+
+ ER_NO
+
+
+
+ ER_YES
+
+
+ The file couldn't be created.
+ ER_CANT_CREATE_FILE
+
+
+ The table couldn't be created.
+ ER_CANT_CREATE_TABLE
+
+
+ The database couldn't be created.
+ ER_CANT_CREATE_DB
+
+
+ The database couldn't be created, it already exists.
+ ER_DB_CREATE_EXISTS
+
+
+ The database couldn't be dropped, it doesn't exist.
+ ER_DB_DROP_EXISTS
+
+
+ The database couldn't be dropped, the file can't be deleted.
+ ER_DB_DROP_DELETE
+
+
+ The database couldn't be dropped, the directory can't be deleted.
+ ER_DB_DROP_RMDIR
+
+
+ The file couldn't be deleted.
+ ER_CANT_DELETE_FILE
+
+
+ The record couldn't be read from the system table.
+ ER_CANT_FIND_SYSTEM_REC
+
+
+ The status couldn't be retrieved.
+ ER_CANT_GET_STAT
+
+
+ The working directory couldn't be retrieved.
+ ER_CANT_GET_WD
+
+
+ The file couldn't be locked.
+ ER_CANT_LOCK
+
+
+ The file couldn't be opened.
+ ER_CANT_OPEN_FILE
+
+
+ The file couldn't be found.
+ ER_FILE_NOT_FOUND
+
+
+ The directory couldn't be read.
+ ER_CANT_READ_DIR
+
+
+ The working directory couldn't be entered.
+ ER_CANT_SET_WD
+
+
+ The record changed since it was last read.
+ ER_CHECKREAD
+
+
+ The disk is full.
+ ER_DISK_FULL
+
+
+
+ There is already a key with the given values.
+
+
+
+ An error occurred when closing the file.
+ ER_ERROR_ON_CLOSE
+
+
+ An error occurred when reading from the file.
+ ER_ERROR_ON_READ
+
+
+ An error occurred when renaming then file.
+ ER_ERROR_ON_RENAME
+
+
+ An error occurred when writing to the file.
+ ER_ERROR_ON_WRITE
+
+
+ The file is in use.
+ ER_FILE_USED
+
+
+ Sorting has been aborted.
+ ER_FILSORT_ABORT
+
+
+ The view doesn't exist.
+ ER_FORM_NOT_FOUND
+
+
+ Got the specified error from the table storage engine.
+ ER_GET_ERRNO
+
+
+ The table storage engine doesn't support the specified option.
+ ER_ILLEGAL_HA
+
+
+
+ The specified key was not found.
+
+
+
+ The file contains incorrect information.
+ ER_NOT_FORM_FILE
+
+
+ The key file is incorrect for the table, it should be repaired.
+ ER_NOT_KEYFILE
+
+
+ The key file is old for the table, it should be repaired.
+ ER_OLD_KEYFILE
+
+
+ The table is read-only
+ ER_OPEN_AS_READONLY
+
+
+ The server is out of memory, it should be restarted.
+ ER_OUTOFMEMORY
+
+
+ The server is out of sort-memory, the sort buffer size should be increased.
+ ER_OUT_OF_SORTMEMORY
+
+
+ An unexpected EOF was found when reading from the file.
+ ER_UNEXPECTED_EOF
+
+
+ Too many connections are open.
+ ER_CON_COUNT_ERROR
+
+
+ The server is out of resources, check if MySql or some other process is using all available memory.
+ ER_OUT_OF_RESOURCES
+
+
+
+ Given when the connection is unable to successfully connect to host.
+
+
+
+ The handshake was invalid.
+ ER_HANDSHAKE_ERROR
+
+
+ Access was denied for the specified user using the specified database.
+ ER_DBACCESS_DENIED_ERROR
+
+
+
+ Normally returned when an incorrect password is given
+
+
+
+ No database has been selected.
+ ER_NO_DB_ERROR
+
+
+ The command is unknown.
+ ER_UNKNOWN_COM_ERROR
+
+
+ The specified column cannot be NULL.
+ ER_BAD_NULL_ERROR
+
+
+ The specified database is not known.
+
+
+ The specified table already exists.
+ ER_TABLE_EXISTS_ERROR
+
+
+ The specified table is unknown.
+ ER_BAD_TABLE_ERROR
+
+
+ The specified column is ambiguous.
+ ER_NON_UNIQ_ERROR
+
+
+ The server is currently being shutdown.
+ ER_SERVER_SHUTDOWN
+
+
+ The specified columns is unknown.
+ ER_BAD_FIELD_ERROR
+
+
+ The specified column isn't in GROUP BY.
+ ER_WRONG_FIELD_WITH_GROUP
+
+
+ The specified columns cannot be grouped on.
+ ER_WRONG_GROUP_FIELD
+
+
+ There are sum functions and columns in the same statement.
+ ER_WRONG_SUM_SELECT
+
+
+ The column count doesn't match the value count.
+ ER_WRONG_VALUE_COUNT
+
+
+ The identifier name is too long.
+ ER_TOO_LONG_IDENT
+
+
+ The column name is duplicated.
+ ER_DUP_FIELDNAME
+
+
+
+ Duplicate Key Name
+
+
+
+
+ Duplicate Key Entry
+
+
+
+ The column specifier is incorrect.
+ ER_WRONG_FIELD_SPEC
+
+
+ An error occurred when parsing the statement.
+ ER_PARSE_ERROR
+
+
+ The statement is empty.
+ ER_EMPTY_QUERY
+
+
+ The table alias isn't unique.
+ ER_NONUNIQ_TABLE
+
+
+ The default value is invalid for the specified field.
+ ER_INVALID_DEFAULT
+
+
+ The table has multiple primary keys defined.
+ ER_MULTIPLE_PRI_KEY
+
+
+ Too many keys were defined for the table.
+ ER_TOO_MANY_KEYS
+
+
+ Too many parts to the keys were defined for the table.
+ ER_TOO_MANY_KEY_PARTS
+
+
+ The specified key is too long
+ ER_TOO_LONG_KEY
+
+
+ The specified key column doesn't exist in the table.
+ ER_KEY_COLUMN_DOES_NOT_EXITS
+
+
+ The BLOB column was used as a key, this can't be done.
+ ER_BLOB_USED_AS_KEY
+
+
+ The column length is too big for the specified column type.
+ ER_TOO_BIG_FIELDLENGTH
+
+
+ There can only be one auto-column, and it must be defined as a PK.
+ ER_WRONG_AUTO_KEY
+
+
+ The server is ready to accept connections.
+ ER_READY
+
+
+
+ ER_NORMAL_SHUTDOWN
+
+
+ The server received the specified signal and is aborting.
+ ER_GOT_SIGNAL
+
+
+ The server shutdown is complete.
+ ER_SHUTDOWN_COMPLETE
+
+
+ The server is forcing close of the specified thread.
+ ER_FORCING_CLOSE
+
+
+ An error occurred when creating the IP socket.
+ ER_IPSOCK_ERROR
+
+
+ The table has no index like the one used in CREATE INDEX.
+ ER_NO_SUCH_INDEX
+
+
+ The field separator argument is not what is expected, check the manual.
+ ER_WRONG_FIELD_TERMINATORS
+
+
+ The BLOB columns must terminated, fixed row lengths cannot be used.
+ ER_BLOBS_AND_NO_TERMINATED
+
+
+ The text file cannot be read.
+ ER_TEXTFILE_NOT_READABLE
+
+
+ The specified file already exists.
+ ER_FILE_EXISTS_ERROR
+
+
+ Information returned by the LOAD statement.
+ ER_LOAD_INFO
+
+
+ Information returned by an UPDATE statement.
+ ER_ALTER_INFO
+
+
+ The prefix key is incorrect.
+ ER_WRONG_SUB_KEY
+
+
+ All columns cannot be removed from a table, use DROP TABLE instead.
+ ER_CANT_REMOVE_ALL_FIELDS
+
+
+ Cannot DROP, check that the column or key exists.
+ ER_CANT_DROP_FIELD_OR_KEY
+
+
+ Information returned by an INSERT statement.
+ ER_INSERT_INFO
+
+
+ The target table cannot be specified for update in FROM clause.
+ ER_UPDATE_TABLE_USED
+
+
+ The specified thread ID is unknown.
+ ER_NO_SUCH_THREAD
+
+
+ The thread cannot be killed, the current user is not the owner.
+ ER_KILL_DENIED_ERROR
+
+
+ No tables used in the statement.
+ ER_NO_TABLES_USED
+
+
+ Too many string have been used for the specified column and SET.
+ ER_TOO_BIG_SET
+
+
+ A unique filename couldn't be generated.
+ ER_NO_UNIQUE_LOGFILE
+
+
+ The specified table was locked with a READ lock, and can't be updated.
+ ER_TABLE_NOT_LOCKED_FOR_WRITE
+
+
+ The specified table was not locked with LOCK TABLES.
+ ER_TABLE_NOT_LOCKED
+
+
+ BLOB and Text columns cannot have a default value.
+ ER_BLOB_CANT_HAVE_DEFAULT
+
+
+ The specified database name is incorrect.
+ ER_WRONG_DB_NAME
+
+
+ The specified table name is incorrect.
+ ER_WRONG_TABLE_NAME
+
+
+ The SELECT command would examine more than MAX_JOIN_SIZE rows, check the WHERE clause and use SET SQL_BIG_SELECTS=1 or SET SQL_MAX_JOIN_SIZE=# if the SELECT is ok.
+ ER_TOO_BIG_SELECT
+
+
+ An unknown error occurred.
+ ER_UNKNOWN_ERROR
+
+
+ The specified procedure is unknown.
+ ER_UNKNOWN_PROCEDURE
+
+
+ The number of parameters provided for the specified procedure is incorrect.
+ ER_WRONG_PARAMCOUNT_TO_PROCEDURE
+
+
+ The parameters provided for the specified procedure are incorrect.
+ ER_WRONG_PARAMETERS_TO_PROCEDURE
+
+
+ The specified table is unknown.
+ ER_UNKNOWN_TABLE
+
+
+ The specified column has been specified twice.
+ ER_FIELD_SPECIFIED_TWICE
+
+
+ The group function has been incorrectly used.
+ ER_INVALID_GROUP_FUNC_USE
+
+
+ The specified table uses an extension that doesn't exist in this MySQL version.
+ ER_UNSUPPORTED_EXTENSION
+
+
+ The table must have at least one column.
+ ER_TABLE_MUST_HAVE_COLUMNS
+
+
+ The specified table is full.
+ ER_RECORD_FILE_FULL
+
+
+ The specified character set is unknown.
+ ER_UNKNOWN_CHARACTER_SET
+
+
+ Too many tables, MySQL can only use the specified number of tables in a JOIN.
+ ER_TOO_MANY_TABLES
+
+
+ Too many columns
+ ER_TOO_MANY_FIELDS
+
+
+ The row size is too large, the maximum row size for the used tables (not counting BLOBS) is specified, change some columns or BLOBS.
+ ER_TOO_BIG_ROWSIZE
+
+
+ A thread stack overrun occurred. Stack statistics are specified.
+ ER_STACK_OVERRUN
+
+
+ A cross dependency was found in the OUTER JOIN, examine the ON conditions.
+ ER_WRONG_OUTER_JOIN
+
+
+ The table handler doesn't support NULL in the given index, change specified column to be NOT NULL or use another handler.
+ ER_NULL_COLUMN_IN_INDEX
+
+
+ The specified user defined function cannot be loaded.
+ ER_CANT_FIND_UDF
+
+
+ The specified user defined function cannot be initialised.
+ ER_CANT_INITIALIZE_UDF
+
+
+ No paths are allowed for the shared library.
+ ER_UDF_NO_PATHS
+
+
+ The specified user defined function already exists.
+ ER_UDF_EXISTS
+
+
+ The specified shared library cannot be opened.
+ ER_CANT_OPEN_LIBRARY
+
+
+ The specified symbol cannot be found in the library.
+ ER_CANT_FIND_DL_ENTRY
+
+
+ The specified function is not defined.
+ ER_FUNCTION_NOT_DEFINED
+
+
+ The specified host is blocked because of too many connection errors, unblock with 'mysqladmin flush-hosts'.
+ ER_HOST_IS_BLOCKED
+
+
+
+ The given host is not allowed to connect
+
+
+
+
+ The anonymous user is not allowed to connect
+
+
+
+
+ The given password is not allowed
+
+
+
+
+ The given password does not match
+
+
+
+ Information returned by an UPDATE statement.
+ ER_UPDATE_INFO
+
+
+ A new thread couldn't be created.
+ ER_CANT_CREATE_THREAD
+
+
+ The column count doesn't match the value count.
+ ER_WRONG_VALUE_COUNT_ON_ROW
+
+
+ The specified table can't be re-opened.
+ ER_CANT_REOPEN_TABLE
+
+
+ The NULL value has been used incorrectly.
+ ER_INVALID_USE_OF_NULL
+
+
+ The regular expression contains an error.
+ ER_REGEXP_ERROR
+
+
+ GROUP columns (MIN(), MAX(), COUNT(), ...) cannot be mixes with no GROUP columns if there is not GROUP BY clause.
+ ER_MIX_OF_GROUP_FUNC_AND_FIELDS
+
+
+
+ ER_NONEXISTING_GRANT
+
+
+
+ ER_TABLEACCESS_DENIED_ERROR
+
+
+
+ ER_COLUMNACCESS_DENIED_ERROR
+
+
+
+ ER_ILLEGAL_GRANT_FOR_TABLE
+
+
+
+ ER_GRANT_WRONG_HOST_OR_USER
+
+
+
+ ER_NO_SUCH_TABLE
+
+
+
+ ER_NONEXISTING_TABLE_GRANT
+
+
+
+ ER_NOT_ALLOWED_COMMAND
+
+
+
+ ER_SYNTAX_ERROR
+
+
+
+ ER_DELAYED_CANT_CHANGE_LOCK
+
+
+
+ ER_TOO_MANY_DELAYED_THREADS
+
+
+
+ ER_ABORTING_CONNECTION
+
+
+
+ An attempt was made to send or receive a packet larger than
+ max_allowed_packet_size
+
+
+
+
+ ER_NET_READ_ERROR_FROM_PIPE
+
+
+
+ ER_NET_FCNTL_ERROR
+
+
+
+ ER_NET_PACKETS_OUT_OF_ORDER
+
+
+
+ ER_NET_UNCOMPRESS_ERROR
+
+
+
+ ER_NET_READ_ERROR
+
+
+
+ ER_NET_READ_INTERRUPTED
+
+
+
+ ER_NET_ERROR_ON_WRITE
+
+
+
+ ER_NET_WRITE_INTERRUPTED
+
+
+
+ ER_TOO_LONG_STRING
+
+
+
+ ER_TABLE_CANT_HANDLE_BLOB
+
+
+
+ ER_TABLE_CANT_HANDLE_AUTO_INCREMENT
+
+
+
+ ER_DELAYED_INSERT_TABLE_LOCKED
+
+
+
+ ER_WRONG_COLUMN_NAME
+
+
+
+ ER_WRONG_KEY_COLUMN
+
+
+
+ ER_WRONG_MRG_TABLE
+
+
+
+ ER_DUP_UNIQUE
+
+
+
+ ER_BLOB_KEY_WITHOUT_LENGTH
+
+
+
+ ER_PRIMARY_CANT_HAVE_NULL
+
+
+
+ ER_TOO_MANY_ROWS
+
+
+
+ ER_REQUIRES_PRIMARY_KEY
+
+
+
+ ER_NO_RAID_COMPILED
+
+
+
+ ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE
+
+
+
+ ER_KEY_DOES_NOT_EXITS
+
+
+
+ ER_CHECK_NO_SUCH_TABLE
+
+
+
+ ER_CHECK_NOT_IMPLEMENTED
+
+
+
+ ER_CANT_DO_THIS_DURING_AN_TRANSACTION
+
+
+
+ ER_ERROR_DURING_COMMIT
+
+
+
+ ER_ERROR_DURING_ROLLBACK
+
+
+
+ ER_ERROR_DURING_FLUSH_LOGS
+
+
+
+ ER_ERROR_DURING_CHECKPOINT
+
+
+
+ ER_NEW_ABORTING_CONNECTION
+
+
+
+ ER_DUMP_NOT_IMPLEMENTED
+
+
+
+ ER_FLUSH_MASTER_BINLOG_CLOSED
+
+
+
+ ER_INDEX_REBUILD
+
+
+
+ ER_MASTER
+
+
+
+ ER_MASTER_NET_READ
+
+
+
+ ER_MASTER_NET_WRITE
+
+
+
+ ER_FT_MATCHING_KEY_NOT_FOUND
+
+
+
+ ER_LOCK_OR_ACTIVE_TRANSACTION
+
+
+
+ ER_UNKNOWN_SYSTEM_VARIABLE
+
+
+
+ ER_CRASHED_ON_USAGE
+
+
+
+ ER_CRASHED_ON_REPAIR
+
+
+
+ ER_WARNING_NOT_COMPLETE_ROLLBACK
+
+
+
+ ER_TRANS_CACHE_FULL
+
+
+
+ ER_SLAVE_MUST_STOP
+
+
+
+ ER_SLAVE_NOT_RUNNING
+
+
+
+ ER_BAD_SLAVE
+
+
+
+ ER_MASTER_INFO
+
+
+
+ ER_SLAVE_THREAD
+
+
+
+ ER_TOO_MANY_USER_CONNECTIONS
+
+
+
+ ER_SET_CONSTANTS_ONLY
+
+
+
+ ER_LOCK_WAIT_TIMEOUT
+
+
+
+ ER_LOCK_TABLE_FULL
+
+
+
+ ER_READ_ONLY_TRANSACTION
+
+
+
+ ER_DROP_DB_WITH_READ_LOCK
+
+
+
+ ER_CREATE_DB_WITH_READ_LOCK
+
+
+
+ ER_WRONG_ARGUMENTS
+
+
+
+ ER_NO_PERMISSION_TO_CREATE_USER
+
+
+
+ ER_UNION_TABLES_IN_DIFFERENT_DIR
+
+
+
+ ER_LOCK_DEADLOCK
+
+
+
+ ER_TABLE_CANT_HANDLE_FT
+
+
+
+ ER_CANNOT_ADD_FOREIGN
+
+
+
+ ER_NO_REFERENCED_ROW
+
+
+
+ ER_ROW_IS_REFERENCED
+
+
+
+ ER_CONNECT_TO_MASTER
+
+
+
+ ER_QUERY_ON_MASTER
+
+
+
+ ER_ERROR_WHEN_EXECUTING_COMMAND
+
+
+
+ ER_WRONG_USAGE
+
+
+
+ ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT
+
+
+
+ ER_CANT_UPDATE_WITH_READLOCK
+
+
+
+ ER_MIXING_NOT_ALLOWED
+
+
+
+ ER_DUP_ARGUMENT
+
+
+
+ ER_USER_LIMIT_REACHED
+
+
+
+ ER_SPECIFIC_ACCESS_DENIED_ERROR
+
+
+
+ ER_LOCAL_VARIABLE
+
+
+
+ ER_GLOBAL_VARIABLE
+
+
+
+ ER_NO_DEFAULT
+
+
+
+ ER_WRONG_VALUE_FOR_VAR
+
+
+
+ ER_WRONG_TYPE_FOR_VAR
+
+
+
+ ER_VAR_CANT_BE_READ
+
+
+
+ ER_CANT_USE_OPTION_HERE
+
+
+
+ ER_NOT_SUPPORTED_YET
+
+
+
+ ER_MASTER_FATAL_ERROR_READING_BINLOG
+
+
+
+ ER_SLAVE_IGNORED_TABLE
+
+
+
+ ER_INCORRECT_GLOBAL_LOCAL_VAR
+
+
+
+ ER_WRONG_FK_DEF
+
+
+
+ ER_KEY_REF_DO_NOT_MATCH_TABLE_REF
+
+
+
+ ER_OPERAND_COLUMNS
+
+
+
+ ER_SUBQUERY_NO_1_ROW
+
+
+
+ ER_UNKNOWN_STMT_HANDLER
+
+
+
+ ER_CORRUPT_HELP_DB
+
+
+
+ ER_CYCLIC_REFERENCE
+
+
+
+ ER_AUTO_CONVERT
+
+
+
+ ER_ILLEGAL_REFERENCE
+
+
+
+ ER_DERIVED_MUST_HAVE_ALIAS
+
+
+
+ ER_SELECT_REDUCED
+
+
+
+ ER_TABLENAME_NOT_ALLOWED_HERE
+
+
+
+ ER_NOT_SUPPORTED_AUTH_MODE
+
+
+
+ ER_SPATIAL_CANT_HAVE_NULL
+
+
+
+ ER_COLLATION_CHARSET_MISMATCH
+
+
+
+ ER_SLAVE_WAS_RUNNING
+
+
+
+ ER_SLAVE_WAS_NOT_RUNNING
+
+
+
+ ER_TOO_BIG_FOR_UNCOMPRESS
+
+
+
+ ER_ZLIB_Z_MEM_ERROR
+
+
+
+ ER_ZLIB_Z_BUF_ERROR
+
+
+
+ ER_ZLIB_Z_DATA_ERROR
+
+
+
+ ER_CUT_VALUE_GROUP_CONCAT
+
+
+
+ ER_WARN_TOO_FEW_RECORDS
+
+
+
+ ER_WARN_TOO_MANY_RECORDS
+
+
+
+ ER_WARN_NULL_TO_NOTNULL
+
+
+
+ ER_WARN_DATA_OUT_OF_RANGE
+
+
+
+ WARN_DATA_TRUNCATED
+
+
+
+ ER_WARN_USING_OTHER_HANDLER
+
+
+
+ ER_CANT_AGGREGATE_2COLLATIONS
+
+
+
+ ER_DROP_USER
+
+
+
+ ER_REVOKE_GRANTS
+
+
+
+ ER_CANT_AGGREGATE_3COLLATIONS
+
+
+
+ ER_CANT_AGGREGATE_NCOLLATIONS
+
+
+
+ ER_VARIABLE_IS_NOT_STRUCT
+
+
+
+ ER_UNKNOWN_COLLATION
+
+
+
+ ER_SLAVE_IGNORED_SSL_PARAMS
+
+
+
+ ER_SERVER_IS_IN_SECURE_AUTH_MODE
+
+
+
+ ER_WARN_FIELD_RESOLVED
+
+
+
+ ER_BAD_SLAVE_UNTIL_COND
+
+
+
+ ER_MISSING_SKIP_SLAVE
+
+
+
+ ER_UNTIL_COND_IGNORED
+
+
+
+ ER_WRONG_NAME_FOR_INDEX
+
+
+
+ ER_WRONG_NAME_FOR_CATALOG
+
+
+
+ ER_WARN_QC_RESIZE
+
+
+
+ ER_BAD_FT_COLUMN
+
+
+
+ ER_UNKNOWN_KEY_CACHE
+
+
+
+ ER_WARN_HOSTNAME_WONT_WORK
+
+
+
+ ER_UNKNOWN_STORAGE_ENGINE
+
+
+
+ ER_WARN_DEPRECATED_SYNTAX
+
+
+
+ ER_NON_UPDATABLE_TABLE
+
+
+
+ ER_FEATURE_DISABLED
+
+
+
+ ER_OPTION_PREVENTS_STATEMENT
+
+
+
+ ER_DUPLICATED_VALUE_IN_TYPE
+
+
+
+ ER_TRUNCATED_WRONG_VALUE
+
+
+
+ ER_TOO_MUCH_AUTO_TIMESTAMP_COLS
+
+
+
+ ER_INVALID_ON_UPDATE
+
+
+
+ ER_UNSUPPORTED_PS
+
+
+
+ ER_GET_ERRMSG
+
+
+
+ ER_GET_TEMPORARY_ERRMSG
+
+
+
+ ER_UNKNOWN_TIME_ZONE
+
+
+
+ ER_WARN_INVALID_TIMESTAMP
+
+
+
+ ER_INVALID_CHARACTER_STRING
+
+
+
+ ER_WARN_ALLOWED_PACKET_OVERFLOWED
+
+
+
+ ER_CONFLICTING_DECLARATIONS
+
+
+
+ ER_SP_NO_RECURSIVE_CREATE
+
+
+
+ ER_SP_ALREADY_EXISTS
+
+
+
+ ER_SP_DOES_NOT_EXIST
+
+
+
+ ER_SP_DROP_FAILED
+
+
+
+ ER_SP_STORE_FAILED
+
+
+
+ ER_SP_LILABEL_MISMATCH
+
+
+
+ ER_SP_LABEL_REDEFINE
+
+
+
+ ER_SP_LABEL_MISMATCH
+
+
+
+ ER_SP_UNINIT_VAR
+
+
+
+ ER_SP_BADSELECT
+
+
+
+ ER_SP_BADRETURN
+
+
+
+ ER_SP_BADSTATEMENT
+
+
+
+ ER_UPDATE_LOG_DEPRECATED_IGNORED
+
+
+
+ ER_UPDATE_LOG_DEPRECATED_TRANSLATED
+
+
+
+ ER_QUERY_INTERRUPTED
+
+
+
+ ER_SP_WRONG_NO_OF_ARGS
+
+
+
+ ER_SP_COND_MISMATCH
+
+
+
+ ER_SP_NORETURN
+
+
+
+ ER_SP_NORETURNEND
+
+
+
+ ER_SP_BAD_CURSOR_QUERY
+
+
+
+ ER_SP_BAD_CURSOR_SELECT
+
+
+
+ ER_SP_CURSOR_MISMATCH
+
+
+
+ ER_SP_CURSOR_ALREADY_OPEN
+
+
+
+ ER_SP_CURSOR_NOT_OPEN
+
+
+
+ ER_SP_UNDECLARED_VAR
+
+
+
+ ER_SP_WRONG_NO_OF_FETCH_ARGS
+
+
+
+ ER_SP_FETCH_NO_DATA
+
+
+
+ ER_SP_DUP_PARAM
+
+
+
+ ER_SP_DUP_VAR
+
+
+
+ ER_SP_DUP_COND
+
+
+
+ ER_SP_DUP_CURS
+
+
+
+ ER_SP_CANT_ALTER
+
+
+
+ ER_SP_SUBSELECT_NYI
+
+
+
+ ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG
+
+
+
+ ER_SP_VARCOND_AFTER_CURSHNDLR
+
+
+
+ ER_SP_CURSOR_AFTER_HANDLER
+
+
+
+ ER_SP_CASE_NOT_FOUND
+
+
+
+ ER_FPARSER_TOO_BIG_FILE
+
+
+
+ ER_FPARSER_BAD_HEADER
+
+
+
+ ER_FPARSER_EOF_IN_COMMENT
+
+
+
+ ER_FPARSER_ERROR_IN_PARAMETER
+
+
+
+ ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER
+
+
+
+ ER_VIEW_NO_EXPLAIN
+
+
+
+ ER_FRM_UNKNOWN_TYPE
+
+
+
+ ER_WRONG_OBJECT
+
+
+
+ ER_NONUPDATEABLE_COLUMN
+
+
+
+ ER_VIEW_SELECT_DERIVED
+
+
+
+ ER_VIEW_SELECT_CLAUSE
+
+
+
+ ER_VIEW_SELECT_VARIABLE
+
+
+
+ ER_VIEW_SELECT_TMPTABLE
+
+
+
+ ER_VIEW_WRONG_LIST
+
+
+
+ ER_WARN_VIEW_MERGE
+
+
+
+ ER_WARN_VIEW_WITHOUT_KEY
+
+
+
+ ER_VIEW_INVALID
+
+
+
+ ER_SP_NO_DROP_SP
+
+
+
+ ER_SP_GOTO_IN_HNDLR
+
+
+
+ ER_TRG_ALREADY_EXISTS
+
+
+
+ ER_TRG_DOES_NOT_EXIST
+
+
+
+ ER_TRG_ON_VIEW_OR_TEMP_TABLE
+
+
+
+ ER_TRG_CANT_CHANGE_ROW
+
+
+
+ ER_TRG_NO_SUCH_ROW_IN_TRG
+
+
+
+ ER_NO_DEFAULT_FOR_FIELD
+
+
+
+ ER_DIVISION_BY_ZERO
+
+
+
+ ER_TRUNCATED_WRONG_VALUE_FOR_FIELD
+
+
+
+ ER_ILLEGAL_VALUE_FOR_TYPE
+
+
+
+ ER_VIEW_NONUPD_CHECK
+
+
+
+ ER_VIEW_CHECK_FAILED
+
+
+
+ ER_PROCACCESS_DENIED_ERROR
+
+
+
+ ER_RELAY_LOG_FAIL
+
+
+
+ ER_PASSWD_LENGTH
+
+
+
+ ER_UNKNOWN_TARGET_BINLOG
+
+
+
+ ER_IO_ERR_LOG_INDEX_READ
+
+
+
+ ER_BINLOG_PURGE_PROHIBITED
+
+
+
+ ER_FSEEK_FAIL
+
+
+
+ ER_BINLOG_PURGE_FATAL_ERR
+
+
+
+ ER_LOG_IN_USE
+
+
+
+ ER_LOG_PURGE_UNKNOWN_ERR
+
+
+
+ ER_RELAY_LOG_INIT
+
+
+
+ ER_NO_BINARY_LOGGING
+
+
+
+ ER_RESERVED_SYNTAX
+
+
+
+ ER_WSAS_FAILED
+
+
+
+ ER_DIFF_GROUPS_PROC
+
+
+
+ ER_NO_GROUP_FOR_PROC
+
+
+
+ ER_ORDER_WITH_PROC
+
+
+
+ ER_LOGGING_PROHIBIT_CHANGING_OF
+
+
+
+ ER_NO_FILE_MAPPING
+
+
+
+ ER_WRONG_MAGIC
+
+
+
+ ER_PS_MANY_PARAM
+
+
+
+ ER_KEY_PART_0
+
+
+
+ ER_VIEW_CHECKSUM
+
+
+
+ ER_VIEW_MULTIUPDATE
+
+
+
+ ER_VIEW_NO_INSERT_FIELD_LIST
+
+
+
+ ER_VIEW_DELETE_MERGE_VIEW
+
+
+
+ ER_CANNOT_USER
+
+
+
+ ER_XAER_NOTA
+
+
+
+ ER_XAER_INVAL
+
+
+
+ ER_XAER_RMFAIL
+
+
+
+ ER_XAER_OUTSIDE
+
+
+
+ ER_XAER_RMERR
+
+
+
+ ER_XA_RBROLLBACK
+
+
+
+ ER_NONEXISTING_PROC_GRANT
+
+
+
+ ER_PROC_AUTO_GRANT_FAIL
+
+
+
+ ER_PROC_AUTO_REVOKE_FAIL
+
+
+
+ ER_DATA_TOO_LONG
+
+
+
+ ER_SP_BAD_SQLSTATE
+
+
+
+ ER_STARTUP
+
+
+
+ ER_LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR
+
+
+
+ ER_CANT_CREATE_USER_WITH_GRANT
+
+
+
+ ER_WRONG_VALUE_FOR_TYPE
+
+
+
+ ER_TABLE_DEF_CHANGED
+
+
+
+ ER_SP_DUP_HANDLER
+
+
+
+ ER_SP_NOT_VAR_ARG
+
+
+
+ ER_SP_NO_RETSET
+
+
+
+ ER_CANT_CREATE_GEOMETRY_OBJECT
+
+
+
+ ER_FAILED_ROUTINE_BREAK_BINLOG
+
+
+
+ ER_BINLOG_UNSAFE_ROUTINE
+
+
+
+ ER_BINLOG_CREATE_ROUTINE_NEED_SUPER
+
+
+
+ ER_EXEC_STMT_WITH_OPEN_CURSOR
+
+
+
+ ER_STMT_HAS_NO_OPEN_CURSOR
+
+
+
+ ER_COMMIT_NOT_ALLOWED_IN_SF_OR_TRG
+
+
+
+ ER_NO_DEFAULT_FOR_VIEW_FIELD
+
+
+
+ ER_SP_NO_RECURSION
+
+
+
+ ER_TOO_BIG_SCALE
+
+
+
+ ER_TOO_BIG_PRECISION
+
+
+
+ ER_M_BIGGER_THAN_D
+
+
+
+ ER_WRONG_LOCK_OF_SYSTEM_TABLE
+
+
+
+ ER_CONNECT_TO_FOREIGN_DATA_SOURCE
+
+
+
+ ER_QUERY_ON_FOREIGN_DATA_SOURCE
+
+
+
+ ER_FOREIGN_DATA_SOURCE_DOESNT_EXIST
+
+
+
+ ER_FOREIGN_DATA_STRING_INVALID_CANT_CREATE
+
+
+
+ ER_FOREIGN_DATA_STRING_INVALID
+
+
+
+ ER_CANT_CREATE_FEDERATED_TABLE
+
+
+
+ ER_TRG_IN_WRONG_SCHEMA
+
+
+
+ ER_STACK_OVERRUN_NEED_MORE
+
+
+
+ ER_TOO_LONG_BODY
+
+
+
+ ER_WARN_CANT_DROP_DEFAULT_KEYCACHE
+
+
+
+ ER_TOO_BIG_DISPLAYWIDTH
+
+
+
+ ER_XAER_DUPID
+
+
+
+ ER_DATETIME_FUNCTION_OVERFLOW
+
+
+
+ ER_CANT_UPDATE_USED_TABLE_IN_SF_OR_TRG
+
+
+
+ ER_VIEW_PREVENT_UPDATE
+
+
+
+ ER_PS_NO_RECURSION
+
+
+
+ ER_SP_CANT_SET_AUTOCOMMIT
+
+
+
+ ER_MALFORMED_DEFINER
+
+
+
+ ER_VIEW_FRM_NO_USER
+
+
+
+ ER_VIEW_OTHER_USER
+
+
+
+ ER_NO_SUCH_USER
+
+
+
+ ER_FORBID_SCHEMA_CHANGE
+
+
+
+ ER_ROW_IS_REFERENCED_2
+
+
+
+ ER_NO_REFERENCED_ROW_2
+
+
+
+ ER_SP_BAD_VAR_SHADOW
+
+
+
+ ER_TRG_NO_DEFINER
+
+
+
+ ER_OLD_FILE_FORMAT
+
+
+
+ ER_SP_RECURSION_LIMIT
+
+
+
+ ER_SP_PROC_TABLE_CORRUPT
+
+
+
+ ER_SP_WRONG_NAME
+
+
+
+ ER_TABLE_NEEDS_UPGRADE
+
+
+
+ ER_SP_NO_AGGREGATE
+
+
+
+ ER_MAX_PREPARED_STMT_COUNT_REACHED
+
+
+
+ ER_VIEW_RECURSIVE
+
+
+
+ ER_NON_GROUPING_FIELD_USED
+
+
+
+ ER_TABLE_CANT_HANDLE_SPKEYS
+
+
+
+ ER_NO_TRIGGERS_ON_SYSTEM_SCHEMA
+
+
+
+ ER_REMOVED_SPACES
+
+
+
+ ER_AUTOINC_READ_FAILED
+
+
+
+ ER_USERNAME
+
+
+
+ ER_HOSTNAME
+
+
+
+ ER_WRONG_STRING_LENGTH
+
+
+
+ ER_NON_INSERTABLE_TABLE
+
+
+
+ ER_ADMIN_WRONG_MRG_TABLE
+
+
+
+ ER_TOO_HIGH_LEVEL_OF_NESTING_FOR_SELECT
+
+
+
+ ER_NAME_BECOMES_EMPTY
+
+
+
+ ER_AMBIGUOUS_FIELD_TERM
+
+
+
+ ER_FOREIGN_SERVER_EXISTS
+
+
+
+ ER_FOREIGN_SERVER_DOESNT_EXIST
+
+
+
+ ER_ILLEGAL_HA_CREATE_OPTION
+
+
+
+ ER_PARTITION_REQUIRES_VALUES_ERROR
+
+
+
+ ER_PARTITION_WRONG_VALUES_ERROR
+
+
+
+ ER_PARTITION_MAXVALUE_ERROR
+
+
+
+ ER_PARTITION_SUBPARTITION_ERROR
+
+
+
+ ER_PARTITION_SUBPART_MIX_ERROR
+
+
+
+ ER_PARTITION_WRONG_NO_PART_ERROR
+
+
+
+ ER_PARTITION_WRONG_NO_SUBPART_ERROR
+
+
+
+ ER_WRONG_EXPR_IN_PARTITION_FUNC_ERROR
+
+
+
+ ER_NO_CONST_EXPR_IN_RANGE_OR_LIST_ERROR
+
+
+
+ ER_FIELD_NOT_FOUND_PART_ERROR
+
+
+
+ ER_LIST_OF_FIELDS_ONLY_IN_HASH_ERROR
+
+
+
+ ER_INCONSISTENT_PARTITION_INFO_ERROR
+
+
+
+ ER_PARTITION_FUNC_NOT_ALLOWED_ERROR
+
+
+
+ ER_PARTITIONS_MUST_BE_DEFINED_ERROR
+
+
+
+ ER_RANGE_NOT_INCREASING_ERROR
+
+
+
+ ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR
+
+
+
+ ER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR
+
+
+
+ ER_PARTITION_ENTRY_ERROR
+
+
+
+ ER_MIX_HANDLER_ERROR
+
+
+
+ ER_PARTITION_NOT_DEFINED_ERROR
+
+
+
+ ER_TOO_MANY_PARTITIONS_ERROR
+
+
+
+ ER_SUBPARTITION_ERROR
+
+
+
+ ER_CANT_CREATE_HANDLER_FILE
+
+
+
+ ER_BLOB_FIELD_IN_PART_FUNC_ERROR
+
+
+
+ ER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF
+
+
+
+ ER_NO_PARTS_ERROR
+
+
+
+ ER_PARTITION_MGMT_ON_NONPARTITIONED
+
+
+
+ ER_FOREIGN_KEY_ON_PARTITIONED
+
+
+
+ ER_DROP_PARTITION_NON_EXISTENT
+
+
+
+ ER_DROP_LAST_PARTITION
+
+
+
+ ER_COALESCE_ONLY_ON_HASH_PARTITION
+
+
+
+ ER_REORG_HASH_ONLY_ON_SAME_NO
+
+
+
+ ER_REORG_NO_PARAM_ERROR
+
+
+
+ ER_ONLY_ON_RANGE_LIST_PARTITION
+
+
+
+ ER_ADD_PARTITION_SUBPART_ERROR
+
+
+
+ ER_ADD_PARTITION_NO_NEW_PARTITION
+
+
+
+ ER_COALESCE_PARTITION_NO_PARTITION
+
+
+
+ ER_REORG_PARTITION_NOT_EXIST
+
+
+
+ ER_SAME_NAME_PARTITION
+
+
+
+ ER_NO_BINLOG_ERROR
+
+
+
+ ER_CONSECUTIVE_REORG_PARTITIONS
+
+
+
+ ER_REORG_OUTSIDE_RANGE
+
+
+
+ ER_PARTITION_FUNCTION_FAILURE
+
+
+
+ ER_PART_STATE_ERROR
+
+
+
+ ER_LIMITED_PART_RANGE
+
+
+
+ ER_PLUGIN_IS_NOT_LOADED
+
+
+
+ ER_WRONG_VALUE
+
+
+
+ ER_NO_PARTITION_FOR_GIVEN_VALUE
+
+
+
+ ER_FILEGROUP_OPTION_ONLY_ONCE
+
+
+
+ ER_CREATE_FILEGROUP_FAILED
+
+
+
+ ER_DROP_FILEGROUP_FAILED
+
+
+
+ ER_TABLESPACE_AUTO_EXTEND_ERROR
+
+
+
+ ER_WRONG_SIZE_NUMBER
+
+
+
+ ER_SIZE_OVERFLOW_ERROR
+
+
+
+ ER_ALTER_FILEGROUP_FAILED
+
+
+
+ ER_BINLOG_ROW_LOGGING_FAILED
+
+
+
+ ER_BINLOG_ROW_WRONG_TABLE_DEF
+
+
+
+ ER_BINLOG_ROW_RBR_TO_SBR
+
+
+
+ ER_EVENT_ALREADY_EXISTS
+
+
+
+ ER_EVENT_STORE_FAILED
+
+
+
+ ER_EVENT_DOES_NOT_EXIST
+
+
+
+ ER_EVENT_CANT_ALTER
+
+
+
+ ER_EVENT_DROP_FAILED
+
+
+
+ ER_EVENT_INTERVAL_NOT_POSITIVE_OR_TOO_BIG
+
+
+
+ ER_EVENT_ENDS_BEFORE_STARTS
+
+
+
+ ER_EVENT_EXEC_TIME_IN_THE_PAST
+
+
+
+ ER_EVENT_OPEN_TABLE_FAILED
+
+
+
+ ER_EVENT_NEITHER_M_EXPR_NOR_M_AT
+
+
+
+ ER_COL_COUNT_DOESNT_MATCH_CORRUPTED
+
+
+
+ ER_CANNOT_LOAD_FROM_TABLE
+
+
+
+ ER_EVENT_CANNOT_DELETE
+
+
+
+ ER_EVENT_COMPILE_ERROR
+
+
+
+ ER_EVENT_SAME_NAME
+
+
+
+ ER_EVENT_DATA_TOO_LONG
+
+
+
+ ER_DROP_INDEX_FK
+
+
+
+ ER_WARN_DEPRECATED_SYNTAX_WITH_VER
+
+
+
+ ER_CANT_WRITE_LOCK_LOG_TABLE
+
+
+
+ ER_CANT_LOCK_LOG_TABLE
+
+
+
+ ER_FOREIGN_DUPLICATE_KEY
+
+
+
+ ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE
+
+
+
+ ER_TEMP_TABLE_PREVENTS_SWITCH_OUT_OF_RBR
+
+
+
+ ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_FORMAT
+
+
+
+ ER_NDB_CANT_SWITCH_BINLOG_FORMAT
+
+
+
+ ER_PARTITION_NO_TEMPORARY
+
+
+
+ ER_PARTITION_CONST_DOMAIN_ERROR
+
+
+
+ ER_PARTITION_FUNCTION_IS_NOT_ALLOWED
+
+
+
+ ER_DDL_LOG_ERROR
+
+
+
+ ER_NULL_IN_VALUES_LESS_THAN
+
+
+
+ ER_WRONG_PARTITION_NAME
+
+
+
+ ER_CANT_CHANGE_TRANSACTION_ISOLATION
+
+
+
+ ER_DUP_ENTRY_AUTOINCREMENT_CASE
+
+
+
+ ER_EVENT_MODIFY_QUEUE_ERROR
+
+
+
+ ER_EVENT_SET_VAR_ERROR
+
+
+
+ ER_PARTITION_MERGE_ERROR
+
+
+
+ ER_CANT_ACTIVATE_LOG
+
+
+
+ ER_RBR_NOT_AVAILABLE
+
+
+
+ ER_BASE64_DECODE_ERROR
+
+
+
+ ER_EVENT_RECURSION_FORBIDDEN
+
+
+
+ ER_EVENTS_DB_ERROR
+
+
+
+ ER_ONLY_INTEGERS_ALLOWED
+
+
+
+ ER_UNSUPORTED_LOG_ENGINE
+
+
+
+ ER_BAD_LOG_STATEMENT
+
+
+
+ ER_CANT_RENAME_LOG_TABLE
+
+
+
+ ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT
+
+
+
+ ER_WRONG_PARAMETERS_TO_NATIVE_FCT
+
+
+
+ ER_WRONG_PARAMETERS_TO_STORED_FCT
+
+
+
+ ER_NATIVE_FCT_NAME_COLLISION
+
+
+
+ ER_DUP_ENTRY_WITH_KEY_NAME
+
+
+
+ ER_BINLOG_PURGE_EMFILE
+
+
+
+ ER_EVENT_CANNOT_CREATE_IN_THE_PAST
+
+
+
+ ER_EVENT_CANNOT_ALTER_IN_THE_PAST
+
+
+
+ ER_SLAVE_INCIDENT
+
+
+
+ ER_NO_PARTITION_FOR_GIVEN_VALUE_SILENT
+
+
+
+ ER_BINLOG_UNSAFE_STATEMENT
+
+
+
+ ER_SLAVE_FATAL_ERROR
+
+
+
+ ER_SLAVE_RELAY_LOG_READ_FAILURE
+
+
+
+ ER_SLAVE_RELAY_LOG_WRITE_FAILURE
+
+
+
+ ER_SLAVE_CREATE_EVENT_FAILURE
+
+
+
+ ER_SLAVE_MASTER_COM_FAILURE
+
+
+
+ ER_BINLOG_LOGGING_IMPOSSIBLE
+
+
+
+ ER_VIEW_NO_CREATION_CTX
+
+
+
+ ER_VIEW_INVALID_CREATION_CTX
+
+
+
+ ER_SR_INVALID_CREATION_CTX
+
+
+
+ ER_TRG_CORRUPTED_FILE
+
+
+
+ ER_TRG_NO_CREATION_CTX
+
+
+
+ ER_TRG_INVALID_CREATION_CTX
+
+
+
+ ER_EVENT_INVALID_CREATION_CTX
+
+
+
+ ER_TRG_CANT_OPEN_TABLE
+
+
+
+ ER_CANT_CREATE_SROUTINE
+
+
+
+ ER_SLAVE_AMBIGOUS_EXEC_MODE
+
+
+
+ ER_NO_FORMAT_DESCRIPTION_EVENT_BEFORE_BINLOG_STATEMENT
+
+
+
+ ER_SLAVE_CORRUPT_EVENT
+
+
+
+ ER_LOAD_DATA_INVALID_COLUMN
+
+
+
+ ER_LOG_PURGE_NO_FILE
+
+
+
+ ER_XA_RBTIMEOUT
+
+
+
+ ER_XA_RBDEADLOCK
+
+
+
+ ER_NEED_REPREPARE
+
+
+
+ ER_DELAYED_NOT_SUPPORTED
+
+
+
+ WARN_NO_MASTER_INFO
+
+
+
+ WARN_OPTION_IGNORED
+
+
+
+ WARN_PLUGIN_DELETE_BUILTIN
+
+
+
+ WARN_PLUGIN_BUSY
+
+
+
+ ER_VARIABLE_IS_READONLY
+
+
+
+ ER_WARN_ENGINE_TRANSACTION_ROLLBACK
+
+
+
+ ER_SLAVE_HEARTBEAT_FAILURE
+
+
+
+ ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE
+
+
+
+ ER_NDB_REPLICATION_SCHEMA_ERROR
+
+
+
+ ER_CONFLICT_FN_PARSE_ERROR
+
+
+
+ ER_EXCEPTIONS_WRITE_ERROR
+
+
+
+ ER_TOO_LONG_TABLE_COMMENT
+
+
+
+ ER_TOO_LONG_FIELD_COMMENT
+
+
+
+ ER_FUNC_INEXISTENT_NAME_COLLISION
+
+
+
+ ER_DATABASE_NAME
+
+
+
+ ER_TABLE_NAME
+
+
+
+ ER_PARTITION_NAME
+
+
+
+ ER_SUBPARTITION_NAME
+
+
+
+ ER_TEMPORARY_NAME
+
+
+
+ ER_RENAMED_NAME
+
+
+
+ ER_TOO_MANY_CONCURRENT_TRXS
+
+
+
+ WARN_NON_ASCII_SEPARATOR_NOT_IMPLEMENTED
+
+
+
+ ER_DEBUG_SYNC_TIMEOUT
+
+
+
+ ER_DEBUG_SYNC_HIT_LIMIT
+
+
+
+ ER_ERROR_LAST
+
+
+
+ WriteInteger
+
+
+
+
+
+
+ Summary description for MySqlPool.
+
+
+
+
+ It is assumed that this property will only be used from inside an active
+ lock.
+
+
+
+
+ Indicates whether this pool is being cleared.
+
+
+
+
+ It is assumed that this method is only called from inside an active lock.
+
+
+
+
+ It is assumed that this method is only called from inside an active lock.
+
+
+
+
+ Removes a connection from the in use pool. The only situations where this method
+ would be called are when a connection that is in use gets some type of fatal exception
+ or when the connection is being returned to the pool and it's too old to be
+ returned.
+
+
+
+
+
+ Clears this pool of all idle connections and marks this pool and being cleared
+ so all other connections are closed when they are returned.
+
+
+
+
+ Remove expired drivers from the idle pool
+
+
+
+ Closing driver is a potentially lengthy operation involving network
+ IO. Therefore we do not close expired drivers while holding
+ idlePool.SyncRoot lock. We just remove the old drivers from the idle
+ queue and return them to the caller. The caller will need to close
+ them (or let GC close them)
+
+
+
+
+ Summary description for MySqlPoolManager.
+
+
+
+
+ Queue of demoted hosts.
+
+
+
+
+ List of hosts that will be attempted to connect to.
+
+
+
+
+ Timer to be used when a host have been demoted.
+
+
+
+
+ Remove drivers that have been idle for too long.
+
+
+
+
+ Remove hosts that have been on the demoted list for more
+ than 120,000 milliseconds and add them to the available hosts list.
+
+
+
+
+ Provides a class capable of executing a SQL script containing
+ multiple SQL statements including CREATE PROCEDURE statements
+ that require changing the delimiter
+
+
+
+
+ Handles the event raised whenever a statement is executed.
+
+
+
+
+ Handles the event raised whenever an error is raised by the execution of a script.
+
+
+
+
+ Handles the event raised whenever a script execution is finished.
+
+
+
+
+ Initializes a new instance of the
+ class.
+
+
+
+
+ Initializes a new instance of the
+ class.
+
+ The connection.
+
+
+
+ Initializes a new instance of the
+ class.
+
+ The query.
+
+
+
+ Initializes a new instance of the
+ class.
+
+ The connection.
+ The query.
+
+
+
+ Gets or sets the connection.
+
+ The connection.
+
+
+
+ Gets or sets the query.
+
+ The query.
+
+
+
+ Gets or sets the delimiter.
+
+ The delimiter.
+
+
+
+ Executes this instance.
+
+ The number of statements executed as part of the script.
+
+
+
+ Initiates the asynchronous execution of SQL statements.
+
+ The number of statements executed as part of the script inside.
+
+
+
+ Initiates the asynchronous execution of SQL statements.
+
+ The cancellation token.
+ The number of statements executed as part of the script inside.
+
+
+
+ Represents the method that will handle errors when executing MySQL statements.
+
+
+
+
+ Represents the method that will handle errors when executing MySQL scripts.
+
+
+
+
+ Sets the arguments associated to MySQL scripts.
+
+
+
+
+ Gets the statement text.
+
+ The statement text.
+
+
+
+ Gets the line.
+
+ The line.
+
+
+
+ Gets the position.
+
+ The position.
+
+
+
+ Sets the arguments associated to MySQL script errors.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The exception.
+
+
+
+ Gets the exception.
+
+ The exception.
+
+
+
+ Gets or sets a value indicating whether this is ignored.
+
+ true if ignore; otherwise, false.
+
+
+
+ Summary description for MySqlStream.
+
+
+
+
+ ReadPacket is called by NativeDriver to start reading the next
+ packet on the stream.
+
+
+
+
+ Reads the specified number of bytes from the stream and stores them at given
+ offset in the buffer.
+ Throws EndOfStreamException if not all bytes can be read.
+
+ Stream to read from
+ Array to store bytes read from the stream
+ The offset in buffer at which to begin storing the data read from the current stream.
+ Number of bytes to read
+
+
+
+ LoadPacket loads up and decodes the header of the incoming packet.
+
+
+
+
+ Traces information about the client execution.
+
+
+
+
+ Gets the list of trace listeners.
+
+
+
+
+ Gets or sets the switch to control tracing and debugging.
+
+
+
+
+ Gets or sets a flag indicating if query analysis is enabled.
+
+
+
+
+ Enables query analysis.
+
+ The host on which to enable query analysis.
+ The interval of time for logging trace information.
+
+
+
+ Disables query analysis.
+
+
+
+
+ Specifies the types of warning flags.
+
+
+
+
+ No index exists.
+
+
+
+
+ Bad index exists.
+
+
+
+
+ Rows have been excluded from the result.
+
+
+
+
+ Columns have been excluded from the result.
+
+
+
+
+ Type conversions took place.
+
+
+
+
+ Specifies the event that triggered the trace.
+
+
+
+
+ A connection has been opened.
+
+
+
+
+ A connection has been closed.
+
+
+
+
+ A query has been executed.
+
+
+
+
+ Data has been retrieved from the resultset.
+
+
+
+
+ Data retrieval has ended.
+
+
+
+
+ Query execution has ended.
+
+
+
+
+ The statement to be executed has been created.
+
+
+
+
+ The statement has been executed.
+
+
+
+
+ The statement is no longer required.
+
+
+
+
+ The query provided is of a nonquery type.
+
+
+
+
+ Usage advisor warnings have been requested.
+
+
+
+
+ Noncritical problem.
+
+
+
+
+ An error has been raised during data retrieval.
+
+
+
+
+ The query has been normalized.
+
+
+
+
+ Summary description for Driver.
+
+
+
+
+ Sets the current database for the this connection
+
+
+
+
+
+ Return the appropriate set of connection flags for our
+ server capabilities and our user requested options.
+
+
+
+
+ Query is the method that is called to send all queries to the server
+
+
+
+
+ Sends the specified file to the server.
+ This supports the LOAD DATA LOCAL INFILE
+
+
+
+
+
+ FetchDataRow is the method that the data reader calls to see if there is another
+ row to fetch. In the non-prepared mode, it will simply read the next data packet.
+ In the prepared mode (statementId > 0), it will
+
+
+
+
+ Execution timeout, in milliseconds. When the accumulated time for network IO exceeds this value
+ TimeoutException is thrown. This timeout needs to be reset for every new command
+
+
+
+
+
+ Summary description for PreparedStatement.
+
+
+
+
+ Prepares CommandText for use with the Prepare method
+
+ Command text stripped of all paramter names
+
+ Takes the output of TokenizeSql and creates a single string of SQL
+ that only contains '?' markers for each parameter. It also creates
+ the parameterMap array list that includes all the paramter names in the
+ order they appeared in the SQL
+
+
+
+
+ Defines a replication configurarion element in the configuration file.
+
+
+
+
+ Gets a collection of objects representing the server groups.
+
+
+
+
+ Defines a replication server group in the configuration file.
+
+
+
+
+ Gets or sets the name of the replication server group configuration.
+
+
+
+
+ Gets or sets the group type of the replication server group configuration.
+
+
+
+
+ Gets or sets the number of seconds to wait for retry.
+
+
+
+
+ Gets a collection of objects representing the
+ server configurations associated to this group configuration.
+
+
+
+
+ Defines a replication server in configuration file.
+
+
+
+
+ Gets or sets the name of the replication server configuration.
+
+
+
+
+ Gets or sets whether the replication server is configured as master.
+
+
+
+
+ Gets or sets the connection string associated to this replication server.
+
+
+
+
+ Manager for Replication and Load Balancing features
+
+
+
+
+ Returns Replication Server Group List
+
+
+
+
+ Adds a Default Server Group to the list
+
+ Group name
+ Time between reconnections for failed servers
+ Replication Server Group added
+
+
+
+ Adds a Server Group to the list
+
+ Group name
+ ServerGroup type reference
+ Time between reconnections for failed servers
+ Server Group added
+
+
+
+ Gets the next server from a replication group
+
+ Group name
+ True if the server to return must be a master
+ Replication Server defined by the Load Balancing plugin
+
+
+
+ Gets a Server Group by name
+
+ Group name
+ Server Group if found, otherwise throws an MySqlException
+
+
+
+ Validates if the replication group name exists
+
+ Group name to validate
+ true if the replication group name is found; otherwise, false
+
+
+
+ Assigns a new server driver to the connection object
+
+ Group name
+ True if the server connection to assign must be a master
+ MySqlConnection object where the new driver will be assigned
+
+
+
+ Class that implements Round Robing Load Balancing technique.
+
+
+
+
+ Gets an available server based on Round Robin load balancing.
+
+ Flag indicating if the server to return must be a master.
+ A object representing the next available server.
+
+
+
+ Represents a server in a Replication environment.
+
+
+
+
+ Gets the server name.
+
+
+
+
+ Gets a value indicating whether the server is master or slave.
+
+
+
+
+ Gets the connection string used to connect to the server.
+
+
+
+
+ Gets a flag indicating if the server is available to be considered in load balancing.
+
+
+
+
+ Base class used to implement load balancing features.
+
+
+
+
+ List of servers available for replication.
+
+
+
+ The group name.
+ The number of seconds to perform a retry.
+
+
+
+ Gets the group name.
+
+
+
+
+ Gets the retry time between connections to failed servers.
+
+
+
+
+ Gets the server list in the group.
+
+
+
+
+ Adds a server into the group.
+
+ The server name.
+ A flag indicating if the server to add is master or slave.
+ The connection string used by this server.
+ A object representing the recently added object.
+
+
+
+ Removes a server from the group.
+
+ The server name.
+
+
+
+ Gets a server by name.
+
+ The server name.
+ The replication server.
+
+
+
+ Must be implemented. Defines the next server for a custom load balancing implementation.
+
+ Defines if the server to return is a master or any.
+ The next server based on the load balancing implementation.
+ Null if no available server is found.
+
+
+
+
+ Defines the next server for a custom load balancing implementation.
+
+ Defines if the server to return is a master or any.
+ Currently not being used.
+ The next server based on the load balancing implementation.
+ Null if no available server is found.
+
+
+
+
+ Handles a failed connection to a server.
+
+ The failed server.
+ This method can be overrided to implement a custom failover handling.
+
+
+
+ Handles a failed connection to a server.
+
+ The failed server.
+ The exception that caused the failover.
+
+
+
+ return the ordinal for the given column name
+
+
+
+
+
+
+ Retrieve the value as the given column index
+
+ The column value to retrieve
+ The value as the given column
+
+
+
+ Closes the current resultset, dumping any data still on the wire
+
+
+
+
+ Loads the column metadata for the current resultset
+
+
+
+
+ Represents a schema and its contents.
+
+
+
+
+ Gets or sets the name of the schema.
+
+
+
+
+ Gets the list of columns in the schema.
+
+
+
+
+ Gets the list of rows in the schema.
+
+
+
+
+ Represents a row within a schema.
+
+
+
+
+ Represents a column within a schema.
+
+
+
+
+ The name of the column.
+
+
+
+
+ The type of the column.
+
+
+
+
+ GetForeignKeysOnTable retrieves the foreign keys on the given table.
+ Since MySQL supports foreign keys on versions prior to 5.0, we can't use
+ information schema. MySQL also does not include any type of SHOW command
+ for foreign keys so we have to resort to use SHOW CREATE TABLE and parsing
+ the output.
+
+ The table to store the key info in.
+ The table to get the foeign key info for.
+ Only get foreign keys that match this name.
+ Should column information be included in the table.
+
+
+
+ Serializes the given parameter to the given memory stream
+
+
+ This method is called by PrepareSqlBuffers to convert the given
+ parameter to bytes and write those bytes to the given memory stream.
+
+
+ True if the parameter was successfully serialized, false otherwise.
+
+
+
+ Summary description for StoredProcedure.
+
+
+
+
+ Defines the basic operations to be performed on the table cache.
+
+
+
+
+ The maximum age allowed for cache entries.
+
+
+
+
+ Adds the given command and result set to the cache.
+
+ The command to store in the cache.
+ The resultset associated to the stored command.
+
+
+
+ Retrieves the specified command from the cache.
+
+ The command to retrieve.
+ The allowed age for the cache entry.
+
+
+
+
+ Removes the specified command from the cache.
+
+ The command to remove from the cache.
+
+
+
+ Clears the cache.
+
+
+
+
+ Removes cache entries older than the value defined by .
+
+
+
+
+ Stream that supports timeout of IO operations.
+ This class is used is used to support timeouts for SQL command, where a
+ typical operation involves several network reads/writes.
+ Timeout here is defined as the accumulated duration of all IO operations.
+
+
+
+
+ Construct a TimedStream
+
+ Undelying stream
+
+
+
+ Figure out whether it is necessary to reset timeout on stream.
+ We track the current value of timeout and try to avoid
+ changing it too often, because setting Read/WriteTimeout property
+ on network stream maybe a slow operation that involves a system call
+ (setsockopt). Therefore, we allow a small difference, and do not
+ reset timeout if current value is slightly greater than the requested
+ one (within 0.1 second).
+
+
+
+
+ Common handler for IO exceptions.
+ Resets timeout to infinity if timeout exception is
+ detected and stops the times.
+
+ original exception
+
+
+
+ Represents a SQL transaction to be made in a MySQL database. This class cannot be inherited.
+
+ The application creates a MySqlTransaction object by calling
+ on the object. All subsequent operations associated with the
+ transaction (for example, committing or aborting the transaction), are performed on the
+ MySqlTransaction object.
+
+ The following example creates a and a MySqlTransaction.
+ It also demonstrates how to use the ,
+ , and methods.
+
+ Public Sub RunTransaction(myConnString As String)
+ Dim myConnection As New MySqlConnection(myConnString)
+ myConnection.Open()
+
+ Dim myCommand As MySqlCommand = myConnection.CreateCommand()
+ Dim myTrans As MySqlTransaction
+
+ ' Start a local transaction
+ myTrans = myConnection.BeginTransaction()
+ ' Must assign both transaction object and connection
+ ' to Command object for a pending local transaction
+ myCommand.Connection = myConnection
+ myCommand.Transaction = myTrans
+
+ Try
+ myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')"
+ myCommand.ExecuteNonQuery()
+ myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')"
+ myCommand.ExecuteNonQuery()
+ myTrans.Commit()
+ Console.WriteLine("Both records are written to database.")
+ Catch e As Exception
+ Try
+ myTrans.Rollback()
+ Catch ex As MySqlException
+ If Not myTrans.Connection Is Nothing Then
+ Console.WriteLine("An exception of type " & ex.GetType().ToString() & _
+ " was encountered while attempting to roll back the transaction.")
+ End If
+ End Try
+
+ Console.WriteLine("An exception of type " & e.GetType().ToString() & _
+ "was encountered while inserting the data.")
+ Console.WriteLine("Neither record was written to database.")
+ Finally
+ myConnection.Close()
+ End Try
+ End Sub 'RunTransaction
+
+
+ public void RunTransaction(string myConnString)
+ {
+ MySqlConnection myConnection = new MySqlConnection(myConnString);
+ myConnection.Open();
+
+ MySqlCommand myCommand = myConnection.CreateCommand();
+ MySqlTransaction myTrans;
+
+ // Start a local transaction
+ myTrans = myConnection.BeginTransaction();
+ // Must assign both transaction object and connection
+ // to Command object for a pending local transaction
+ myCommand.Connection = myConnection;
+ myCommand.Transaction = myTrans;
+
+ try
+ {
+ myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (100, 'Description')";
+ myCommand.ExecuteNonQuery();
+ myCommand.CommandText = "Insert into Region (RegionID, RegionDescription) VALUES (101, 'Description')";
+ myCommand.ExecuteNonQuery();
+ myTrans.Commit();
+ Console.WriteLine("Both records are written to database.");
+ }
+ catch(Exception e)
+ {
+ try
+ {
+ myTrans.Rollback();
+ }
+ catch (MySqlException ex)
+ {
+ if (myTrans.Connection != null)
+ {
+ Console.WriteLine("An exception of type " + ex.GetType() +
+ " was encountered while attempting to roll back the transaction.");
+ }
+ }
+
+ Console.WriteLine("An exception of type " + e.GetType() +
+ " was encountered while inserting the data.");
+ Console.WriteLine("Neither record was written to database.");
+ }
+ finally
+ {
+ myConnection.Close();
+ }
+ }
+
+
+
+
+
+ Gets the object associated with the transaction, or a null reference (Nothing in Visual Basic) if the transaction is no longer valid.
+
+ The object associated with this transaction.
+
+ A single application may have multiple database connections, each
+ with zero or more transactions. This property enables you to
+ determine the connection object associated with a particular
+ transaction created by .
+
+
+
+
+ Specifies the for this transaction.
+
+
+ The for this transaction. The default is ReadCommitted.
+
+
+ Parallel transactions are not supported. Therefore, the IsolationLevel
+ applies to the entire transaction.
+
+
+
+
+ Commits the database transaction.
+
+ The Commit method is equivalent to the MySQL SQL statement
+ COMMIT.
+
+ The following example creates a and a
+ . It also demonstrates how to use the
+ , , and Rollback
+ methods.
+
+ Public Sub RunSqlTransaction(myConnString As String)
+ Dim myConnection As New MySqlConnection(myConnString)
+ myConnection.Open()
+
+ Dim myCommand As MySqlCommand = myConnection.CreateCommand()
+ Dim myTrans As MySqlTransaction
+
+ ' Start a local transaction
+ myTrans = myConnection.BeginTransaction()
+
+ ' Must assign both transaction object and connection
+ ' to Command object for a pending local transaction
+ myCommand.Connection = myConnection
+ myCommand.Transaction = myTrans
+
+ Try
+ myCommand.CommandText = "Insert into mytable (id, desc) VALUES (100, 'Description')"
+ myCommand.ExecuteNonQuery()
+ myCommand.CommandText = "Insert into mytable (id, desc) VALUES (101, 'Description')"
+ myCommand.ExecuteNonQuery()
+ myTrans.Commit()
+ Console.WriteLine("Success.")
+ Catch e As Exception
+ Try
+ myTrans.Rollback()
+ Catch ex As MySqlException
+ If Not myTrans.Connection Is Nothing Then
+ Console.WriteLine("An exception of type " & ex.GetType().ToString() & _
+ " was encountered while attempting to roll back the transaction.")
+ End If
+ End Try
+
+ Console.WriteLine("An exception of type " & e.GetType().ToString() & _
+ "was encountered while inserting the data.")
+ Console.WriteLine("Neither record was written to database.")
+ Finally
+ myConnection.Close()
+ End Try
+ End Sub
+
+
+ public void RunSqlTransaction(string myConnString)
+ {
+ MySqlConnection myConnection = new MySqlConnection(myConnString);
+ myConnection.Open();
+
+ MySqlCommand myCommand = myConnection.CreateCommand();
+ MySqlTransaction myTrans;
+
+ // Start a local transaction
+ myTrans = myConnection.BeginTransaction();
+ // Must assign both transaction object and connection
+ // to Command object for a pending local transaction
+ myCommand.Connection = myConnection;
+ myCommand.Transaction = myTrans;
+
+ try
+ {
+ myCommand.CommandText = "Insert into mytable (id, desc) VALUES (100, 'Description')";
+ myCommand.ExecuteNonQuery();
+ myCommand.CommandText = "Insert into mytable (id, desc) VALUES (101, 'Description')";
+ myCommand.ExecuteNonQuery();
+ myTrans.Commit();
+ Console.WriteLine("Both records are written to database.");
+ }
+ catch(Exception e)
+ {
+ try
+ {
+ myTrans.Rollback();
+ }
+ catch (MySqlException ex)
+ {
+ if (myTrans.Connection != null)
+ {
+ Console.WriteLine("An exception of type " + ex.GetType() +
+ " was encountered while attempting to roll back the transaction.");
+ }
+ }
+
+ Console.WriteLine("An exception of type " + e.GetType() +
+ " was encountered while inserting the data.");
+ Console.WriteLine("Neither record was written to database.");
+ }
+ finally
+ {
+ myConnection.Close();
+ }
+ }
+
+
+
+
+
+ Rolls back a transaction from a pending state.
+
+ The Rollback method is equivalent to the MySQL statement ROLLBACK.
+ The transaction can only be rolled back from a pending state
+ (after BeginTransaction has been called, but before Commit is
+ called).
+
+ The following example creates a and a
+ . It also demonstrates how to use the
+ , , and Rollback
+ methods.
+
+ Public Sub RunSqlTransaction(myConnString As String)
+ Dim myConnection As New MySqlConnection(myConnString)
+ myConnection.Open()
+
+ Dim myCommand As MySqlCommand = myConnection.CreateCommand()
+ Dim myTrans As MySqlTransaction
+
+ ' Start a local transaction
+ myTrans = myConnection.BeginTransaction()
+
+ ' Must assign both transaction object and connection
+ ' to Command object for a pending local transaction
+ myCommand.Connection = myConnection
+ myCommand.Transaction = myTrans
+
+ Try
+ myCommand.CommandText = "Insert into mytable (id, desc) VALUES (100, 'Description')"
+ myCommand.ExecuteNonQuery()
+ myCommand.CommandText = "Insert into mytable (id, desc) VALUES (101, 'Description')"
+ myCommand.ExecuteNonQuery()
+ myTrans.Commit()
+ Console.WriteLine("Success.")
+ Catch e As Exception
+ Try
+ myTrans.Rollback()
+ Catch ex As MySqlException
+ If Not myTrans.Connection Is Nothing Then
+ Console.WriteLine("An exception of type " & ex.GetType().ToString() & _
+ " was encountered while attempting to roll back the transaction.")
+ End If
+ End Try
+
+ Console.WriteLine("An exception of type " & e.GetType().ToString() & _
+ "was encountered while inserting the data.")
+ Console.WriteLine("Neither record was written to database.")
+ Finally
+ myConnection.Close()
+ End Try
+ End Sub
+
+
+ public void RunSqlTransaction(string myConnString)
+ {
+ MySqlConnection myConnection = new MySqlConnection(myConnString);
+ myConnection.Open();
+
+ MySqlCommand myCommand = myConnection.CreateCommand();
+ MySqlTransaction myTrans;
+
+ // Start a local transaction
+ myTrans = myConnection.BeginTransaction();
+ // Must assign both transaction object and connection
+ // to Command object for a pending local transaction
+ myCommand.Connection = myConnection;
+ myCommand.Transaction = myTrans;
+
+ try
+ {
+ myCommand.CommandText = "Insert into mytable (id, desc) VALUES (100, 'Description')";
+ myCommand.ExecuteNonQuery();
+ myCommand.CommandText = "Insert into mytable (id, desc) VALUES (101, 'Description')";
+ myCommand.ExecuteNonQuery();
+ myTrans.Commit();
+ Console.WriteLine("Both records are written to database.");
+ }
+ catch(Exception e)
+ {
+ try
+ {
+ myTrans.Rollback();
+ }
+ catch (MySqlException ex)
+ {
+ if (myTrans.Connection != null)
+ {
+ Console.WriteLine("An exception of type " + ex.GetType() +
+ " was encountered while attempting to roll back the transaction.");
+ }
+ }
+
+ Console.WriteLine("An exception of type " + e.GetType() +
+ " was encountered while inserting the data.");
+ Console.WriteLine("Neither record was written to database.");
+ }
+ finally
+ {
+ myConnection.Close();
+ }
+ }
+
+
+
+
+
+ DNS resolver that runs queries against a server.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets the DNS SVR records of the service name that is provided.
+
+ A list of s sorted as described in RFC2782.
+
+
+
+ Sorts a list of DNS SRV records according to the sorting rules described in RFC2782.
+
+ List of s to sort.
+ A new list of sorted s.
+
+
+
+ Resets the DnsSrvResolver
+
+
+
+
+ Class that represents a DNS SRV record.
+ RFC 2782 (https://tools.ietf.org/html/rfc2782)
+
+
+
+
+ Gets the port.
+
+
+
+
+ Gets the priority.
+
+
+
+
+ Gets the target domain name.
+
+
+
+
+ Gets the weight.
+
+
+
+
+ Initializes a new instance of class.
+
+ The port.
+ The priority.
+ The target.
+ The weight.
+
+
+
+ Initializes a new instance of class.
+
+ The DNS SRV record.
+
+
+
+ Compare two objects. First, using their priority and
+ if both have the same, then using their weights.
+
+ A to compare.
+ A to compare.
+
+
+
+
+ Initializes a new instance of the class from a .
+
+ The DNS SRV record.
+
+
+
+ This class is modeled after .NET Stopwatch. It provides better
+ performance (no system calls).It is however less precise than
+ .NET Stopwatch, measuring in milliseconds. It is adequate to use
+ when high-precision is not required (e.g for measuring IO timeouts),
+ but not for other tasks.
+
+
+
+
+ Wrapper around NetworkStream.
+
+ MyNetworkStream is equivalent to NetworkStream, except
+ 1. It throws TimeoutException if read or write timeout occurs, instead
+ of IOException, to match behavior of other streams (named pipe and
+ shared memory). This property comes handy in TimedStream.
+
+ 2. It implements workarounds for WSAEWOULDBLOCK errors, that can start
+ occuring after stream has times out. For a discussion about the CLR bug,
+ refer to http://tinyurl.com/lhgpyf. This error should never occur, as
+ we're not using asynchronous operations, but apparerntly it does occur
+ directly after timeout has expired.
+ The workaround is hinted in the URL above and implemented like this:
+ For each IO operation, if it throws WSAEWOULDBLOCK, we explicitely set
+ the socket to Blocking and retry the operation once again.
+
+
+
+
+ Set keepalive + timeout on socket.
+
+ socket
+ keepalive timeout, in seconds
+
+
+
+ Static class to manage SSH connections created with SSH .NET.
+
+
+
+
+ Gets or sets the SSH client initialized when calling the method.
+
+
+
+
+ Stores a list of SSH clients having different connection settings.
+
+
+
+
+ Initializes an instance if no SSH client with similar connection options has already been initialized.
+
+ The SSH host name.
+ The SSH user name.
+ The SSH password.
+ The SSH key file.
+ The SSH pass phrase.
+ The SSH port.
+ The local host name.
+ The local port number.
+ Flag to indicate if the connection will be created for the classic or X Protocol.
+
+
+
+
+ Read a single quoted identifier from the stream
+
+
+
+
+
+
+ Helper class to encapsulate shared memory functionality
+ Also cares of proper cleanup of file mapping object and cew
+
+
+
+
+ Summary description for SharedMemoryStream.
+
+
+
+
+ By creating a private ctor, we keep the compiler from creating a default ctor
+
+
+
+
+ Mark - or + signs that are unary ops as no output
+
+
+
+
+
+ Wrapper class used for handling SSH connections.
+
+
+
+
+ Starts the SSH client.
+
+
+
+
+ Stops the SSH client.
+
+
+
+
+ Handles SSL connections for the Classic and X protocols.
+
+
+
+
+ Contains the connection options provided by the user.
+
+
+
+
+ A flag to establish how certificates are to be treated and validated.
+
+
+
+
+ Defines the supported TLS protocols.
+
+
+
+
+ Retrieves a collection containing the client SSL PFX certificates.
+
+ Dependent on connection string settings.
+ Either file or store based certificates are used.
+
+
+
+ Initiates the SSL connection.
+
+ The base stream.
+ The encoding used in the SSL connection.
+ The connection string used to establish the connection.
+ A instance ready to initiate an SSL connection.
+
+
+
+ Verifies the SSL certificates used for authentication.
+
+ An object that contains state information for this validation.
+ The MySQL server certificate used to authenticate the remote party.
+ The chain of certificate authorities associated with the remote certificate.
+ One or more errors associated with the remote certificate.
+ true if no errors were found based on the selected SSL mode; false, otherwise.
+
+
+
+ Gets the extension of the specified file.
+
+ The path of the file.
+ Flag to indicate if the result should be converted to lower case.
+ The . character is ommited from the result.
+
+
+
+
+ Summary description for StreamCreator.
+
+
+
+
+ Set the keepalive timeout on the socket.
+
+ The socket object.
+ The keepalive timeout, in seconds.
+
+
+
+ Summary description for Version.
+
+
+
+
+ Provides functionality to read SSL PEM certificates and to perform multiple validations via Bouncy Castle.
+
+
+
+
+ Raises an exception if the specified connection option is null, empty or whitespace.
+
+ The connection option to verify.
+
+
+
+ Reads the specified file as a byte array.
+
+ The path of the file to read.
+ A byte array representing the read file.
+
+
+
+ Reads the SSL certificate file.
+
+ The path to the certificate file.
+ A instance representing the SSL certificate file.
+
+
+
+ Reads the SSL certificate key file.
+
+ The path to the certificate key file.
+ A instance representing the SSL certificate key file.
+
+
+
+ Verifies that the certificate has not yet expired.
+
+ The certificate to verify.
+
+
+
+ Verifies a certificate CA status.
+
+ The certificate to validate.
+ A flag indicating the expected CA status.
+
+
+
+ Verifies that the certificate was signed using the private key that corresponds to the specified public key
+
+ The client side certificate containing the public key.
+ The server certificate.
+
+
+
+ Verifies that no SSL policy errors regarding the identitfy of the host were raised.
+
+ A instance set with the raised SSL errors.
+
+
+
+ Verifies that the issuer matches the CA by comparing the CA certificate issuer and the server certificate issuer.
+
+ The CA certificate.
+ The server certificate.
+
+
+
+
+ Gets and sets the host list.
+
+
+
+
+ Gets the active host.
+
+
+
+
+ Active host.
+
+
+
+
+ Sets the initial active host.
+
+
+
+
+ Determines the next host.
+
+ object that represents the next available host.
+
+
+
+ Implements common elements that allow to manage the hosts available for client side failover.
+
+
+
+
+ Gets and sets the failover group which consists of a host list.
+
+
+
+
+ Resets the manager.
+
+
+
+
+ Sets the host list to be used during failover operations.
+
+ The host list.
+ The failover method.
+
+
+
+ Attempts to establish a connection to a host specified from the list.
+
+ The original connection string set by the user.
+ An out parameter that stores the updated connection string.
+ A object in case this is a pooling scenario.
+ An instance if the connection was succesfully established, a exception is thrown otherwise.
+
+
+
+
+ Creates a if more than one host is found.
+
+ A string containing an unparsed list of hosts.
+ true if the connection is X Protocol; otherwise false.
+ true if the connection data is a URI; otherwise false.
+ The number of hosts found, -1 if an error was raised during parsing.
+
+
+
+ Creates a object based on the provided parameters.
+
+ The host string that can be a simple host name or a host name and port.
+ The priority of the host.
+ The port number of the host.
+ true if the connection data is a URI; otherwise false.
+
+
+
+
+ Attempts the next host in the list. Moves to the first element if the end of the list is reached.
+
+
+
+
+ Determines the next host on which to attempt a connection by checking the value of the Priority property in descending order.
+
+
+
+
+ Determines the next host on which to attempt a connection randomly.
+
+
+
+
+ Depicts a host which can be failed over to.
+
+
+
+
+ Gets and sets the name or address of the host.
+
+
+
+
+ Gets and sets the port number.
+
+
+
+
+ Gets a value between 0 and 100 which represents the priority of the host.
+
+
+
+
+ Flag to indicate if this host is currently being used.
+
+
+
+
+ Flag to indicate if this host has been attempted to connection.
+
+
+
+
+ Time since the host has been demoted.
+
+
+
+
+ Initializes a object.
+
+ The host.
+ The port.
+ The priority.
+
+
+
+ Compares two objects of type .
+
+ FailoverServer object to compare.
+ True if host properties are the same. Otherwise, false.
+
+
+
+ Manages the hosts available for client side failover using the Random Failover method.
+ The Random Failover method attempts to connect to the hosts specified in the list randomly until all the hosts have been attempted.
+
+
+
+
+ The initial host taken from the list.
+
+
+
+
+ The host for the current connection attempt.
+
+
+
+
+ Random object to get the next host.
+
+
+
+
+ Sets the initial active host.
+
+
+
+
+ Determines the next host.
+
+ A object that represents the next available host.
+
+
+
+ Manages the hosts available for client side failover using the Sequential Failover method.
+ The Sequential Failover method attempts to connect to the hosts specified in the list one after another until the initial host is reached.
+
+
+
+
+ The initial host taken from the list.
+
+
+
+
+ The index of the current host.
+
+
+
+
+ The host for the current connection attempt.
+
+
+
+
+ Sets the initial active host.
+
+
+
+
+ Determines the next host.
+
+ A object that represents the next available host.
+
+
+
+ A strongly-typed resource class, for looking up localized strings, etc.
+
+
+
+
+ Returns the cached ResourceManager instance used by this class.
+
+
+
+
+ Overrides the current thread's CurrentUICulture property for all
+ resource lookups using this strongly typed resource class.
+
+
+
+
+ Looks up a localized string similar to Improper MySqlCommandBuilder state: adapter is null.
+
+
+
+
+ Looks up a localized string similar to Improper MySqlCommandBuilder state: adapter's SelectCommand is null.
+
+
+
+
+ Looks up a localized string similar to Invalid attempt to access a field before calling Read().
+
+
+
+
+ Looks up a localized string similar to Authentication to host '{0}' for user '{1}' using method '{2}' failed with message: {3}.
+
+
+
+
+ Looks up a localized string similar to Authentication method '{0}' not supported by any of the available plugins..
+
+
+
+
+ Looks up a localized string similar to Version string not in acceptable format.
+
+
+
+
+ Looks up a localized string similar to The buffer cannot be null.
+
+
+
+
+ Looks up a localized string similar to Buffer is not large enough.
+
+
+
+
+ Looks up a localized string similar to Canceling an executing query requires MySQL 5.0 or higher..
+
+
+
+
+ Looks up a localized string similar to Canceling an active query is only supported on MySQL 5.0.0 and above. .
+
+
+
+
+ Looks up a localized string similar to Parameters can only be derived for commands using the StoredProcedure command type..
+
+
+
+
+ Looks up a localized string similar to MySqlCommandBuilder does not support multi-table statements.
+
+
+
+
+ Looks up a localized string similar to MySqlCommandBuilder cannot operate on tables with no unique or key columns.
+
+
+
+
+ Looks up a localized string similar to Chaos isolation level is not supported .
+
+
+
+
+ Looks up a localized string similar to The CommandText property has not been properly initialized..
+
+
+
+
+ Looks up a localized string similar to Compression is not supported..
+
+
+
+
+ Looks up a localized string similar to The connection is already open..
+
+
+
+
+ Looks up a localized string similar to Connection unexpectedly terminated..
+
+
+
+
+ Looks up a localized string similar to Connection must be valid and open.
+
+
+
+
+ Looks up a localized string similar to The connection is not open..
+
+
+
+
+ Looks up a localized string similar to The connection property has not been set or is null..
+
+
+
+
+ Looks up a localized string similar to Could not find specified column in results: {0}.
+
+
+
+
+ Looks up a localized string similar to Count cannot be negative.
+
+
+
+
+ Looks up a localized string similar to SetLength is not a valid operation on CompressedStream.
+
+
+
+
+ Looks up a localized string similar to The given value was not in a supported format..
+
+
+
+
+ Looks up a localized string similar to There is already an open DataReader associated with this Connection which must be closed first..
+
+
+
+
+ Looks up a localized string similar to The default connection encoding was not found. Please report this as a bug along with your connection string and system details..
+
+
+
+
+ Looks up a localized string similar to MySQL Connector/NET does not currently support distributed transactions..
+
+
+
+
+ Looks up a localized string similar to Specifying multiple host names with DNS SRV lookup is not permitted..
+
+
+
+
+ Looks up a localized string similar to Specifying a port number with DNS SRV lookup is not permitted..
+
+
+
+
+ Looks up a localized string similar to Using Unix domain sockets with DNS SRV lookup is not permitted..
+
+
+
+
+ Looks up a localized string similar to Unable to locate any hosts for {0}..
+
+
+
+
+ Looks up a localized string similar to Connection option '{0}' is duplicated..
+
+
+
+
+ Looks up a localized string similar to SSL connection option '{0}' is duplicated..
+
+
+
+
+ Looks up a localized string similar to Encoding error during validation..
+
+
+
+
+ Looks up a localized string similar to Error creating socket connection.
+
+
+
+
+ Looks up a localized string similar to Fatal error encountered during command execution..
+
+
+
+
+ Looks up a localized string similar to Fatal error encountered during data read..
+
+
+
+
+ Looks up a localized string similar to Fatal error encountered attempting to read the resultset..
+
+
+
+
+ Looks up a localized string similar to File based certificates are only supported when connecting to MySQL Server 5.1 or greater..
+
+
+
+
+ Looks up a localized string similar to The specified file cannot be converted to a certificate..
+
+
+
+
+ Looks up a localized string similar to The specified file cannot be converted to a key..
+
+
+
+
+ Looks up a localized string similar to Failed to read file at the specified location..
+
+
+
+
+ Looks up a localized string similar to No file path has been provided for the connection option {0}..
+
+
+
+
+ Looks up a localized string similar to From index and length use more bytes than from contains.
+
+
+
+
+ Looks up a localized string similar to From index must be a valid index inside the from buffer.
+
+
+
+
+ Looks up a localized string similar to Call to GetHostEntry failed after {0} while querying for hostname '{1}': SocketErrorCode={2}, ErrorCode={3}, NativeErrorCode={4}..
+
+
+
+
+ Looks up a localized string similar to Retrieving procedure metadata for {0} from server..
+
+
+
+
+ Looks up a localized string similar to Value has an unsupported format..
+
+
+
+
+ Looks up a localized string similar to An incorrect response was received from the server..
+
+
+
+
+ Looks up a localized string similar to Index and length use more bytes than to has room for.
+
+
+
+
+ Looks up a localized string similar to Index must be a valid position in the buffer.
+
+
+
+
+ Looks up a localized string similar to The provided key is invalid..
+
+
+
+
+ Looks up a localized string similar to You have specified an invalid column ordinal..
+
+
+
+
+ Looks up a localized string similar to The requested value '{0}' is invalid for the given keyword '{1}'..
+
+
+
+
+ Looks up a localized string similar to The host name or IP address is invalid..
+
+
+
+
+ Looks up a localized string similar to Microsecond must be a value between 0 and 999999..
+
+
+
+
+ Looks up a localized string similar to Millisecond must be a value between 0 and 999. For more precision use Microsecond..
+
+
+
+
+ Looks up a localized string similar to No other SSL options are accepted when SSL Mode is set to None..
+
+
+
+
+ Looks up a localized string similar to Procedure or function '{0}' cannot be found in database '{1}'..
+
+
+
+
+ Looks up a localized string similar to The certificate is invalid..
+
+
+
+
+ Looks up a localized string similar to Unable to validate the signature..
+
+
+
+
+ Looks up a localized string similar to Unable to verify the signature..
+
+
+
+
+ Looks up a localized string similar to Value '{0}' is not of the correct type..
+
+
+
+
+ Looks up a localized string similar to Option "tls-version" can not be specified when SSL connections are disabled..
+
+
+
+
+ Looks up a localized string similar to '{0}' not recognized as a valid TLS protocol version (should be one of TLSv1, TLSv1.1, TLSv1.2{1})..
+
+
+
+
+ Looks up a localized string similar to '{0}' is an illegal value for a boolean option..
+
+
+
+
+ Looks up a localized string similar to Keyword does not allow null values..
+
+
+
+
+ Looks up a localized string similar to Option not supported..
+
+
+
+
+ Looks up a localized string similar to ACCESSIBLE
+ ADD
+ ALL
+ ALTER
+ ANALYZE
+ AND
+ AS
+ ASC
+ ASENSITIVE
+ BEFORE
+ BEGIN
+ BETWEEN
+ BIGINT
+ BINARY
+ BLOB
+ BOTH
+ BY
+ CALL
+ CASCADE
+ CASE
+ CHANGE
+ CHAR
+ CHARACTER
+ CHECK
+ COLLATE
+ COLUMN
+ COMMIT
+ CONDITION
+ CONNECTION
+ CONSTRAINT
+ CONTINUE
+ CONVERT
+ CREATE
+ CROSS
+ CURRENT_DATE
+ CURRENT_TIME
+ CURRENT_TIMESTAMP
+ CURRENT_USER
+ CURSOR
+ DATABASE
+ DATABASES
+ DAY_HOUR
+ DAY_MICROSECOND
+ DAY_MINUTE
+ DAY_SECOND
+ DEC
+ DECIMAL
+ DECLARE
+ DEFAULT
+ DELAYED
+ DELETE
+ DESC
+ DESCRIBE
+ DETERMINISTIC
+ DISTINCT
+ DISTINCTROW
+ D [rest of string was truncated]";.
+
+
+
+
+ Looks up a localized string similar to Server asked for stream in response to LOAD DATA LOCAL INFILE, but the functionality is disabled by the client setting 'allowlocalinfile' to 'false'..
+
+
+
+
+ Looks up a localized string similar to Mixing named and unnamed parameters is not allowed..
+
+
+
+
+ Looks up a localized string similar to INTERNAL ERROR: More than one output parameter row detected..
+
+
+
+
+ Looks up a localized string similar to Multiple simultaneous connections or connections with different connection strings inside the same transaction are not currently supported..
+
+
+
+
+ Looks up a localized string similar to NamedPipeStream does not support seeking.
+
+
+
+
+ Looks up a localized string similar to NamedPipeStream doesn't support SetLength.
+
+
+
+
+ Looks up a localized string similar to The new value must be a MySqlParameter object..
+
+
+
+
+ Looks up a localized string similar to Invalid attempt to call NextResult when the reader is closed..
+
+
+
+
+ Looks up a localized string similar to When calling stored procedures and 'Use Procedure Bodies' is false, all parameters must have their type explicitly set..
+
+
+
+
+ Looks up a localized string similar to Nested transactions are not supported..
+
+
+
+
+ Looks up a localized string similar to The host {0} does not support SSL connections..
+
+
+
+
+ Looks up a localized string similar to Unix sockets are not supported on Windows..
+
+
+
+
+ Looks up a localized string similar to Cannot retrieve Windows identity for current user. Connections that use IntegratedSecurity cannot be pooled. Use either 'ConnectionReset=true' or 'Pooling=false' in the connection string to fix..
+
+
+
+
+ Looks up a localized string similar to The object is not open or has been disposed..
+
+
+
+
+ Looks up a localized string similar to Offset cannot be negative.
+
+
+
+
+ Looks up a localized string similar to Offset must be a valid position in buffer.
+
+
+
+
+ Looks up a localized string similar to Authentication with old password no longer supported, use 4.1 style passwords..
+
+
+
+
+ Looks up a localized string similar to The option '{0}' is not currently supported..
+
+
+
+
+ Looks up a localized string similar to Parameter '{0}' has already been defined..
+
+
+
+
+ Looks up a localized string similar to Parameter cannot have a negative value.
+
+
+
+
+ Looks up a localized string similar to Parameter cannot be null.
+
+
+
+
+ Looks up a localized string similar to Parameter '{0}' can't be null or empty..
+
+
+
+
+ Looks up a localized string similar to Parameter index was not found in Parameter Collection..
+
+
+
+
+ Looks up a localized string similar to Parameter is invalid..
+
+
+
+
+ Looks up a localized string similar to Parameter '{0}' must be defined..
+
+
+
+
+ Looks up a localized string similar to Parameter '{0}' was not found during prepare..
+
+
+
+
+ Looks up a localized string similar to Parameter can't be null or empty..
+
+
+
+
+ Looks up a localized string similar to Password must be valid and contain length characters.
+
+
+
+
+ Looks up a localized string similar to This category includes a series of counters for MySQL.
+
+
+
+
+ Looks up a localized string similar to .NET Data Provider for MySQL.
+
+
+
+
+ Looks up a localized string similar to The number of times a procedures metadata had to be queried from the server..
+
+
+
+
+ Looks up a localized string similar to Hard Procedure Queries.
+
+
+
+
+ Looks up a localized string similar to The number of times a procedures metadata was retrieved from the client-side cache..
+
+
+
+
+ Looks up a localized string similar to Soft Procedure Queries.
+
+
+
+
+ Looks up a localized string similar to same name are not supported..
+
+
+
+
+ Looks up a localized string similar to Packets larger than max_allowed_packet are not allowed..
+
+
+
+
+ Looks up a localized string similar to Reading from the stream has failed..
+
+
+
+
+ Looks up a localized string similar to Invalid attempt to read a prior column using SequentialAccess.
+
+
+
+
+ Looks up a localized string similar to Replicated connections allow only readonly statements..
+
+
+
+
+ Looks up a localized string similar to Attempt to connect to '{0}' server failed..
+
+
+
+
+ Looks up a localized string similar to No available server found..
+
+
+
+
+ Looks up a localized string similar to Replication group '{0}' not found..
+
+
+
+
+ Looks up a localized string similar to Replicated server not found: '{0}'.
+
+
+
+
+ Looks up a localized string similar to Routine '{0}' cannot be found. Either check the spelling or make sure you have sufficient rights to execute the routine..
+
+
+
+
+ Looks up a localized string similar to Attempt to call stored function '{0}' without specifying a return parameter.
+
+
+
+
+ Looks up a localized string similar to Retrieval of the RSA public key is not enabled for insecure connections..
+
+
+
+
+ Looks up a localized string similar to Connector/NET no longer supports server versions prior to 5.0.
+
+
+
+
+ Looks up a localized string similar to Snapshot isolation level is not supported..
+
+
+
+
+ Looks up a localized string similar to Socket streams do not support seeking.
+
+
+
+
+ Looks up a localized string similar to Retrieving procedure metadata for {0} from procedure cache..
+
+
+
+
+ Looks up a localized string similar to Stored procedures are not supported on this version of MySQL.
+
+
+
+
+ Looks up a localized string similar to The SSH Key File and/or SSH Password must be provided..
+
+
+
+
+ Looks up a localized string similar to The provided passphrase is invalid..
+
+
+
+
+ Looks up a localized string similar to The certificate authority (CA) does not match..
+
+
+
+
+ Looks up a localized string similar to The host name does not match the name on the certificate..
+
+
+
+
+ Looks up a localized string similar to The certificate is not a certificate authority (CA)..
+
+
+
+
+ Looks up a localized string similar to SSL Connection error..
+
+
+
+
+ Looks up a localized string similar to The stream has already been closed.
+
+
+
+
+ Looks up a localized string similar to The stream does not support reading.
+
+
+
+
+ Looks up a localized string similar to The stream does not support writing.
+
+
+
+
+ Looks up a localized string similar to String can't be empty..
+
+
+
+
+ Looks up a localized string similar to Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding..
+
+
+
+
+ Looks up a localized string similar to error connecting: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached..
+
+
+
+
+ Looks up a localized string similar to All server connection attempts were aborted. Timeout of {0} seconds was exceeded for each selected server..
+
+
+
+
+ Looks up a localized string similar to TLSv1.3 is supported in .NET Framework 4.8 or .NET Core 3.0..
+
+
+
+
+ Looks up a localized string similar to No supported TLS protocol version found in the 'tls-versions' list..
+
+
+
+
+ Looks up a localized string similar to {0}: Connection Closed.
+
+
+
+
+ Looks up a localized string similar to Unable to trace. There are more than Int32.MaxValue connections in use..
+
+
+
+
+ Looks up a localized string similar to {0}: Error encountered during row fetch. Number = {1}, Message={2}.
+
+
+
+
+ Looks up a localized string similar to {0}: Connection Opened: connection string = '{1}'.
+
+
+
+
+ Looks up a localized string similar to {0}: Error encountered attempting to open result: Number={1}, Message={2}.
+
+
+
+
+ Looks up a localized string similar to {0}: Query Closed.
+
+
+
+
+ Looks up a localized string similar to {0}: Query Normalized: {2}.
+
+
+
+
+ Looks up a localized string similar to {0}: Query Opened: {2}.
+
+
+
+
+ Looks up a localized string similar to {0}: Resultset Opened: field(s) = {1}, affected rows = {2}, inserted id = {3}.
+
+
+
+
+ Looks up a localized string similar to {0}: Resultset Closed. Total rows={1}, skipped rows={2}, size (bytes)={3}.
+
+
+
+
+ Looks up a localized string similar to {0}: Set Database: {1}.
+
+
+
+
+ Looks up a localized string similar to {0}: Statement closed: statement id = {1}.
+
+
+
+
+ Looks up a localized string similar to {0}: Statement executed: statement id = {1}.
+
+
+
+
+ Looks up a localized string similar to {0}: Statement prepared: sql='{1}', statement id={2}.
+
+
+
+
+ Looks up a localized string similar to {0}: Usage Advisor Warning: Query is using a bad index.
+
+
+
+
+ Looks up a localized string similar to {0}: Usage Advisor Warning: The field '{2}' was converted to the following types: {3}.
+
+
+
+
+ Looks up a localized string similar to {0}: Usage Advisor Warning: Query does not use an index.
+
+
+
+
+ Looks up a localized string similar to {0}: Usage Advisor Warning: The following columns were not accessed: {2}.
+
+
+
+
+ Looks up a localized string similar to {0}: Usage Advisor Warning: Skipped {2} rows. Consider a more focused query..
+
+
+
+
+ Looks up a localized string similar to {0}: MySql Warning: Level={1}, Code={2}, Message={3}.
+
+
+
+
+ Looks up a localized string similar to Type '{0}' is not derived from BaseCommandInterceptor.
+
+
+
+
+ Looks up a localized string similar to Type '{0}' is not derived from BaseExceptionInterceptor.
+
+
+
+
+ Looks up a localized string similar to Unable to connect to any of the specified MySQL hosts..
+
+
+
+
+ Looks up a localized string similar to Unable to create plugin for authentication method '{0}'. Please see inner exception for details..
+
+
+
+
+ Looks up a localized string similar to Unable to derive stored routine parameters. The 'Parameters' information schema table is not available and access to the stored procedure body has been disabled..
+
+
+
+
+ Looks up a localized string similar to Unable to enable query analysis. Be sure the MySql.Data.EMTrace assembly is properly located and registered..
+
+
+
+
+ Looks up a localized string similar to An error occured attempting to enumerate the user-defined functions. Do you have SELECT privileges on the mysql.func table?.
+
+
+
+
+ Looks up a localized string similar to Unable to execute stored procedure '{0}'..
+
+
+
+
+ Looks up a localized string similar to There was an error parsing the foreign key definition..
+
+
+
+
+ Looks up a localized string similar to Error encountered reading the RSA public key..
+
+
+
+
+ Looks up a localized string similar to Unable to retrieve stored procedure metadata for routine '{0}'. Either grant SELECT privilege to mysql.proc for this user or use "check parameters=false" with your connection string..
+
+
+
+
+ Looks up a localized string similar to Unable to start a second async operation while one is running..
+
+
+
+
+ Looks up a localized string similar to Unix sockets are not supported on Windows.
+
+
+
+
+ Looks up a localized string similar to Unknown authentication method '{0}' was requested..
+
+
+
+
+ Looks up a localized string similar to Unknown connection protocol.
+
+
+
+
+ Looks up a localized string similar to Value '{0}' is not of the correct type..
+
+
+
+
+ Looks up a localized string similar to The requested column value could not be treated as or conveted to a Guid..
+
+
+
+
+ Looks up a localized string similar to Windows authentication connections are not supported on {0}.
+
+
+
+
+ Looks up a localized string similar to Writing to the stream failed..
+
+
+
+
+ Looks up a localized string similar to Parameter '{0}' is not found but a parameter with the name '{1}' is found. Parameter names must include the leading parameter marker..
+
+
+
+
+ A strongly-typed resource class, for looking up localized strings, etc.
+
+
+
+
+ Returns the cached ResourceManager instance used by this class.
+
+
+
+
+ Overrides the current thread's CurrentUICulture property for all
+ resource lookups using this strongly typed resource class.
+
+
+
+
+ Looks up a localized string similar to Appdata path is not defined..
+
+
+
+
+ Looks up a localized string similar to Authentication failed using MYSQL41 and SHA256_MEMORY. Check the user name and password or try using a secure connection..
+
+
+
+
+ Looks up a localized string similar to You can't get more sessions because Client is closed..
+
+
+
+
+ Looks up a localized string similar to Client option '{0}' does not support value '{1}'..
+
+
+
+
+ Looks up a localized string similar to Client option '{0}' is not recognized as valid..
+
+
+
+
+ Looks up a localized string similar to {0} '{1}' does not exist in schema '{2}'..
+
+
+
+
+ Looks up a localized string similar to '{0}' cannot be set to false with DNS SRV lookup enabled..
+
+
+
+
+ Looks up a localized string similar to Scheme '{0}' is not valid..
+
+
+
+
+
+ Looks up a localized string similar to Compression using {0} is not supported..
+
+
+
+
+ Looks up a localized string similar to Failed to load libzstd.dll. Removing zstd_stream from the client supported compression algorithms..
+
+
+
+
+ Looks up a localized string similar to Compression using {0} is not supported in .NET Framework..
+
+
+
+
+ Looks up a localized string similar to The connection property 'compression' acceptable values are: 'preferred', 'required' or 'disabled'. The value '{0}' is not acceptable..
+
+
+
+
+ Looks up a localized string similar to Compression is not enabled..
+
+
+
+
+ Looks up a localized string similar to Compression requested but the server does not support it..
+
+
+
+
+ Looks up a localized string similar to There are still decompressed messages pending to be processed..
+
+
+
+
+ Looks up a localized string similar to Duplicate key '{0}' used in "connection-attributes"..
+
+
+
+
+ Looks up a localized string similar to Key name in connection attribute cannot be an empty string..
+
+
+
+
+ Looks up a localized string similar to At least one option must be specified..
+
+
+
+
+ Looks up a localized string similar to This feature is currently not supported..
+
+
+
+
+ Looks up a localized string similar to This functionality is only supported in MySQL {0} and higher..
+
+
+
+
+ Looks up a localized string similar to Collation with id '{0}' not found..
+
+
+
+
+ Looks up a localized string similar to The value of "connection-attributes" must be either a boolean or a list of key-value pairs..
+
+
+
+
+ Looks up a localized string similar to Connection Data is incorrect..
+
+
+
+
+ Looks up a localized string similar to The connection string is invalid..
+
+
+
+
+ Looks up a localized string similar to '{0}' is not a valid connection string attribute..
+
+
+
+
+ Looks up a localized string similar to The connection timeout value must be a positive integer (including 0)..
+
+
+
+
+ Looks up a localized string similar to Decimal (BCD) format is invalid..
+
+
+
+
+ Looks up a localized string similar to Field type with name '{0}' not found..
+
+
+
+
+ Looks up a localized string similar to Index type with name '{0}' not found..
+
+
+
+
+ Looks up a localized string similar to The value provided is not a valid JSON document. {0}.
+
+
+
+
+ Looks up a localized string similar to {0} is not a valid column name in the row..
+
+
+
+
+ Looks up a localized string similar to {0} is not a valid index for the row..
+
+
+
+
+ Looks up a localized string similar to Session state is not valid..
+
+
+
+
+ Looks up a localized string similar to Invalid Uri .
+
+
+
+
+ Looks up a localized string similar to Invalid uri query value.
+
+
+
+
+ Looks up a localized string similar to Key names in "connection-attributes" cannot start with "_"..
+
+
+
+
+ Looks up a localized string similar to Json configuration must contain 'uri' or 'host' but not both..
+
+
+
+
+ Looks up a localized string similar to Keyword '{0}' not found..
+
+
+
+
+ Looks up a localized string similar to Keyword not supported..
+
+
+
+
+ Looks up a localized string similar to Field '{0}' is mandatory..
+
+
+
+
+ Looks up a localized string similar to Missed required 'schema' option..
+
+
+
+
+ Looks up a localized string similar to More than one document id was generated. Please use the DocumentIds property instead..
+
+
+
+
+ Looks up a localized string similar to There is no data at index {0}.
+
+
+
+
+ Looks up a localized string similar to No 'host' has been specified..
+
+
+
+
+ Looks up a localized string similar to No more data in resultset..
+
+
+
+
+ Looks up a localized string similar to Object '{0}' not found.
+
+
+
+
+ Looks up a localized string similar to No placeholders..
+
+
+
+
+ Looks up a localized string similar to {0} must be a value greater than 0..
+
+
+
+
+ Looks up a localized string similar to Path not found '{0}'..
+
+
+
+
+ Looks up a localized string similar to Queue timeout expired. The timeout period elapsed prior to getting a session from the pool..
+
+
+
+
+ Looks up a localized string similar to Providing a port number as part of the host address isn't supported when using connection strings in basic format or anonymous objects. Use URI format instead..
+
+
+
+
+ Looks up a localized string similar to You must either assign no priority to any of the hosts or give a priority for every host..
+
+
+
+
+ Looks up a localized string similar to The priority must be between 0 and 100..
+
+
+
+
+ Looks up a localized string similar to ProgramData path is not defined..
+
+
+
+
+ Looks up a localized string similar to The server doesn't support the requested operation. Please update the MySQL Server and/or Client library.
+
+
+
+
+ Looks up a localized string similar to The process of closing the resultset and resulted in results being lost..
+
+
+
+
+ Looks up a localized string similar to All server connection attempts were aborted. Timeout of {0} milliseconds was exceeded for each selected server..
+
+
+
+
+ Looks up a localized string similar to All server connection attempts were aborted. Timeout was exceeded for each selected server..
+
+
+
+
+ Looks up a localized string similar to Connection attempt to the server was aborted. Timeout of {0} milliseconds was exceeded..
+
+
+
+
+ Looks up a localized string similar to Connection attempt to the server was aborted. Timeout was exceeded..
+
+
+
+
+ Looks up a localized string similar to Unable to connect to any specified host..
+
+
+
+
+ Looks up a localized string similar to Unable to read or decode data value..
+
+
+
+
+ Looks up a localized string similar to Unable to open a session..
+
+
+
+
+ Looks up a localized string similar to Unexpected end of packet found while reading data values.
+
+
+
+
+ Looks up a localized string similar to Field name '{0}' is not allowed..
+
+
+
+
+ Looks up a localized string similar to Unknown placeholder :{0}.
+
+
+
+
+ Looks up a localized string similar to Value '{0}' is not of the correct type..
+
+
+
+
+ Summary description for MySqlUInt64.
+
+
+
+
+ An exception thrown by MySQL when a type conversion does not succeed.
+
+
+
+ Initializes a new instance of the class with a specified error message.
+ Message describing the error.
+
+
+
+ Represents a datetime data type object in a MySql database.
+
+
+
+
+ Defines whether the UTF or local timezone will be used.
+
+
+
+
+ Constructs a new MySqlDateTime object by setting the individual time properties to
+ the given values.
+
+ The year to use.
+ The month to use.
+ The day to use.
+ The hour to use.
+ The minute to use.
+ The second to use.
+ The microsecond to use.
+
+
+
+ Constructs a new MySqlDateTime object by using values from the given object.
+
+ The object to copy.
+
+
+
+ Constructs a new MySqlDateTime object by copying the current value of the given object.
+
+ The MySqlDateTime object to copy.
+
+
+
+ Enables the contruction of a MySqlDateTime object by parsing a string.
+
+
+
+
+ Indicates if this object contains a value that can be represented as a DateTime
+
+
+
+ Returns the year portion of this datetime
+
+
+ Returns the month portion of this datetime
+
+
+ Returns the day portion of this datetime
+
+
+ Returns the hour portion of this datetime
+
+
+ Returns the minute portion of this datetime
+
+
+ Returns the second portion of this datetime
+
+
+
+ Returns the milliseconds portion of this datetime
+ expressed as a value between 0 and 999
+
+
+
+
+ Returns the microseconds portion of this datetime (6 digit precision)
+
+
+
+
+ Returns true if this datetime object has a null value
+
+
+
+
+ Retrieves the value of this as a DateTime object.
+
+
+
+ Returns this value as a DateTime
+
+
+ Returns a MySQL specific string representation of this value
+
+
+
+
+
+
+
+
+ Represents a decimal data type object in a MySql database.
+
+
+
+
+ Gets a boolean value signaling if the type is null.
+
+
+
+
+ Gets or sets the decimal precision of the type.
+
+
+
+
+ Gets or sets the scale of the type.
+
+
+
+
+ Gets the decimal value associated to this type.
+
+
+
+
+ Converts this decimal value to a double value.
+
+ The value of this type converted to a dobule value.
+
+
+
+ Represents a geometry data type object in a MySql database.
+
+
+
+
+ Gets the x coordinate.
+
+
+
+
+ Gets the y coordinate.
+
+
+
+
+ Gets the SRID value.
+
+
+
+
+ Gets a boolean value that signals if the type is null.
+
+
+
+
+ Gets the value associated to this type.
+
+
+
+
+ Gets the value associated to this type.
+
+
+
+ Returns the Well-Known Text representation of this value
+ POINT({0} {1})", longitude, latitude
+ http://dev.mysql.com/doc/refman/4.1/en/gis-wkt-format.html
+
+
+
+ Get value from WKT format
+ SRID=0;POINT (x y) or POINT (x y)
+
+ WKT string format
+
+
+
+ Try to get value from WKT format
+ SRID=0;POINT (x y) or POINT (x y)
+
+ WKT string format
+ Out mysqlGeometryValue
+
+
+
+ Sets the DSInfo when GetSchema is called for the DataSourceInformation collection.
+
+
+
+
+ Gets the well-known text representation of the geomtry object.
+
+ A string representation of the WKT.
+
+
+
+ Provides functionality for loading unmanaged libraries.
+
+
+
+
+ Loads the specified unmanaged library from the embedded resources.
+
+ The application name.
+ The library name.
+
+
+
+ Provides support for configuring X Protocol compressed messages.
+
+
+
+
+ The capabilities sub-key used to specify the compression algorithm.
+
+
+
+
+ The capabilities key used to specify the compression capability.
+
+
+
+
+ Messages with a value lower than this threshold will not be compressed.
+
+
+
+
+ Default value for enabling or disabling combined compressed messages.
+
+
+
+
+ Default value for the maximum number of combined compressed messages contained in a compression message.
+
+
+
+
+ deflate_stream compression algorithm.
+
+
+
+
+ lz4_message compression algorithm.
+
+
+
+
+ The capabilities sub-key used to specify if combining compressed messages is permitted.
+
+
+
+
+ The capabilities sub-key used to specify the maximum number of compressed messages contained in a compression message.
+
+
+
+
+ zstd_stream compression algorithm.
+
+
+
+
+ Buffer used to store the data received from the server.
+
+
+
+
+ Deflate stream used for compressing data.
+
+
+
+
+ Deflate stream used for decompressing data.
+
+
+
+
+ Flag indicating if the initialization is for compression or decompression.
+
+
+
+
+ Stores the communication packet generated the last time ReadNextBufferedMessage method was called.
+
+
+
+
+ Indicates if the libzstd.dll has been loaded.
+
+
+
+
+ Stream used to store multiple X Protocol messages.
+
+
+
+
+ ZStandard stream used for decompressing data.
+
+
+
+
+ Static constructor used to initialize the client supported compression algorithms.
+
+
+
+
+ Main constructor used to set the compression algorithm and initialize the list of messages to
+ be compressed by the client.
+
+ The compression algorithm to use.
+ Flag indicating if the initialization is for compression or decompression.
+
+
+
+ Gets or sets the list of messages that should be compressed by the client when compression is enabled.
+
+
+
+
+ Gets or sets an array containing the compression algorithms supported by the client.
+
+
+
+
+ Gets or sets the compression algorithm.
+
+
+
+
+ Flag indicating if compression is enabled.
+
+
+
+
+ Flag indicating if the last decompressed message contains multiple messages.
+
+
+
+
+ General method used to compress data using the compression algorithm defined in the constructor.
+
+ The data to compress.
+ A compressed byte array.
+
+
+
+ Compresses data using the deflate_stream algorithm.
+
+ The data to compress.
+ A compressed byte array.
+
+
+
+ Compresses data using the lz4_message algorithm.
+
+ The data to compress.
+ A compressed byte array.
+
+
+
+ Compresses data using the zstd_stream algorithm.
+
+ The data to compress.
+ A compressed byte array.
+
+
+
+ General method used to decompress data using the compression algorithm defined in the constructor.
+
+ The data to decompress.
+ The expected length of the decompressed data.
+ A decompressed byte array.
+
+
+
+ Decompresses data using the deflate_stream compression algorithm.
+
+ The data to decompress.
+ The expected length of the decompressed data.
+ A decompressed byte array.
+
+
+
+ Decompresses data using the lz4_message compression algorithm.
+
+ The data to decompress.
+ The expected length of the decompressed data.
+ A decompressed byte array.
+
+
+
+ Decompresses data using the zstd_stream compression algorithm.
+
+ The data to decompress.
+ The expected length of the decompressed data.
+ A decompressed byte array.
+
+
+
+ Closes and disposes of any open streams.
+
+
+
+
+ Gets the byte array representing the next X Protocol frame that is stored in cache.
+
+ A byte array representing an X Protocol frame.
+
+
+
+ Gets a representing the next X Protocol frame that is stored in cache.
+
+ A with the next X Protocol frame.
+
+
+
+ Loads the libzstd.dll assembly.
+
+
+
+
+ This object store the required parameters to create a Collection with schema validation.
+
+ If false, throws an exception if the collection exists.
+ Object which hold the Level and Schema parameters
+
+
+
+
+ This object store the required parameters to Modify a Collection with schema validation.
+
+ Object which hold the Level and Schema parameters
+
+
+
+
+ This object store the required parameters to create a Collection with schema validation.
+
+ It can be STRICT to enable schema validation or OFF to disable
+ The JSON which define the rules to be validated in the collection
+
+
+
+ The possible values for parameter Level in Validation object.
+
+ Enforce schema validation.
+ Schema validation disabled.
+
+
+
+ Implementation of EXTERNAL authentication type.
+
+
+
+
+ Implementation of MySQL41 authentication type.
+
+
+
+
+ Implementation of PLAIN authentication type.
+
+
+
+
+ Compares two Guids in string format.
+
+ The first string to compare.
+ The first string to compare.
+ An integer that indicates the lexical relationship between the two comparands, similar to
+
+
+
+ Compares two objects.
+
+ The first to compare.
+ The second to compare.
+ An integer that indicates the lexical relationship between the two comparands, similar to
+
+
+
+ Constructor that sets the stream used to read or write data.
+
+ The stream used to read or write data.
+
+
+
+ Constructor that sets the stream used to read or write data and the compression controller.
+
+ The stream used to read or write data.
+ The compression controller.
+
+
+
+ Gets or sets the compression controller uses to manage compression operations.
+
+
+
+
+ Writes X Protocol frames to the X Plugin.
+
+ The integer representation of the client message identifier used for the message.
+ The message to include in the X Protocol frame.
+
+
+
+ Writes X Protocol frames to the X Plugin.
+
+ The client message identifier used for the message.
+ The message to include in the X Protocol frame.
+
+
+
+ Reads X Protocol frames incoming from the X Plugin.
+
+ A instance representing the X Protocol frame that was read.
+
+
+
+ Abstract class for the protocol base operations in client/server communication.
+
+
+
+
+ Expression parser for MySQL-X protocol.
+
+
+ string being parsed.
+
+
+ Token stream produced by lexer.
+
+
+ Parser's position in token stream.
+
+
+ Mapping of names to positions for named placeholders. Used for both string values ":arg" and numeric values ":2".
+
+
+ Number of positional placeholders.
+
+
+ Are relational columns identifiers allowed?
+
+
+ Token types used by the lexer.
+
+
+ Token. Includes type and string value of the token.
+
+
+ Mapping of reserved words to token types.
+
+
+ Does the next character equal the given character? (respects bounds)
+
+
+ Helper function to match integer or floating point numbers. This function should be called when the position is on the first character of the number (a
+ digit or '.').
+
+ @param i The current position in the string
+ @return the next position in the string after the number.
+
+
+ Lexer for MySQL-X expression language.
+
+
+ Assert that the token at pos is of type type.
+
+
+ Does the current token have type `t'?
+
+
+ Does the next token have type `t'?
+
+
+ Does the token at position `pos' have type `t'?
+
+
+ Consume token.
+
+ @return the string value of the consumed token
+
+
+ Parse a paren-enclosed expression list. This is used for function params or IN params.
+
+ @return a List of expressions
+
+
+ Parse a function call of the form: IDENTIFIER PAREN_EXPR_LIST.
+
+ @return an Expr representing the function call.
+
+
+ Parse an identifier for a function call: [schema.]name
+
+
+ Parse a document path member.
+
+
+ Parse a document path array index.
+
+
+ Parse a JSON-style document path, like WL#7909, but prefix by @. instead of $.
+
+
+ Parse a document field.
+
+
+ Parse a column identifier (which may optionally include a JSON document path).
+
+
+ Build a unary operator expression.
+
+
+ Parse an atomic expression. (c.f. grammar at top)
+
+
+ Parse a left-associated binary operator.
+
+ @param types
+ The token types that denote this operator.
+ @param innerParser
+ The inner parser that should be called to parse operands.
+ @return an expression tree of the binary operator or a single operand
+
+
+ Parse the entire string as an expression.
+
+ @return an X-protocol expression tree
+
+
+
+ Parse an ORDER BY specification which is a comma-separated list of expressions, each may be optionally suffixed by ASC/DESC.
+
+
+ Parse a SELECT projection which is a comma-separated list of expressions, each optionally suffixed with a target alias.
+
+
+ Parse an INSERT field name.
+ @todo unit test
+
+
+ Parse an UPDATE field which can include can document paths.
+
+
+ Parse a document projection which is similar to SELECT but with document paths as the target alias.
+
+
+ Parse a list of expressions used for GROUP BY.
+
+
+ @return the number of positional placeholders in the expression.
+
+
+ @return a mapping of parameter names to positions.
+
+
+ Proto-buf helper to build a LITERAL Expr with a Scalar NULL type.
+
+
+ Proto-buf helper to build a LITERAL Expr with a Scalar DOUBLE type (wrapped in Any).
+
+
+ Proto-buf helper to build a LITERAL Expr with a Scalar SINT (signed int) type (wrapped in Any).
+
+
+ Proto-buf helper to build a LITERAL Expr with a Scalar UINT (unsigned int) type (wrapped in Any).
+
+
+ Proto-buf helper to build a LITERAL Expr with a Scalar STRING type (wrapped in Any).
+
+
+ Proto-buf helper to build a LITERAL Expr with a Scalar OCTETS type (wrapped in Any).
+
+
+ Proto-buf helper to build a LITERAL Expr with a Scalar BOOL type (wrapped in Any).
+
+
+ Wrap an Any value in a LITERAL expression.
+
+
+ Build an Any with a string value.
+
+
+
+ Parses an anonymous object into a dictionary.
+
+ The object to parse.
+ A dictionary if the provided object is an anonymous object; otherwise, null.
+
+
+ List of operators which will be serialized as infix operators.
+
+
+ Scalar to string.
+
+
+ JSON document path to string.
+
+
+ Column identifier (or JSON path) to string.
+
+
+ Function call to string.
+
+
+ Create a string from a list of (already stringified) parameters. Surround by parens and separate by commas.
+
+
+ Convert an operator to a string. Includes special cases for chosen infix operators (AND, OR) and special forms such as LIKE and BETWEEN.
+
+
+ Escape a string literal.
+
+
+ Quote a named identifer.
+
+
+ Serialize an expression to a string.
+
+
+
+ Build the message to be sent to MySQL Server to execute statement "Create" or "Modify" collection with schema options
+
+ The namespace
+ The name of the command to be executed on MySql Server
+ Array of KeyValuePairs with the parameters required to build the message
+ void.
+
+
+
+ Sends the delete documents message
+
+
+
+
+ Sends the CRUD modify message
+
+
+
+
+ Class implementation for a default communication kind.
+
+
+
+
+ Constructor method for the communication routing service
+
+ A MySqlXConnectionStringBuilder setted with the information to use in the connection
+
+
+
+ Gets the current connection base on the connection mode
+
+ One of the values of ConnectionMode Offline, ReadOnly, WriteOnly, ReadWrite
+
+
+
+
+ Abstract class used to define the kind of server in environments with multiple types of distributed systems.
+
+
+
+
+ Main class for parsing json strings.
+
+
+
+
+ Initializes a new instance of the JsonParser class.
+
+
+
+
+ Parses the received string into a dictionary.
+
+ The string to parse.
+ A object that represents the parsed string.
+
+
+
+ Abstract class to manage and encapsulate one or more actual connections.
+
+
+
+
+ Creates a new session object with the values of the settings parameter.
+
+ Settings to be used in the session object
+
+
+
+ Sets the connection's charset default collation.
+
+ The opened session.
+ The character set.
+
+
+
+ Gets the version of the server.
+
+ An instance of containing the server version.
+
+
+
+ Gets the thread Id of the connection.
+
+ Thread Id
+
+
+
+ Implementation class for object that manages low-level work of queuing tasks onto threads.
+
+
+
+
+ Implementation class of InternalSession to manage connections using the Xprotocol type object.
+
+
+
+
+ Defines the compression controller that will be passed on the instance when
+ compression is enabled.
+
+
+
+
+ Defines the compression controller that will be passed on the instance when
+ compression is enabled.
+
+
+
+
+ The used client to handle SSH connections.
+
+
+
+
+ Negotiates compression capabilities with the server.
+
+ An array containing the compression algorithms supported by the server.
+
+
+
+ Prepare the dictionary of arguments required to create a MySQL message.
+
+ The name of the MySQL schema.
+ The name of the collection.
+ This object hold the parameters required to create the collection.
+
+ Collection referente.
+
+
+
+ Prepare the dictionary of arguments required to Modify a MySQL message.
+
+ The name of the MySQL schema.
+ The name of the collection.
+ This object hold the parameters required to Modify the collection.
+
+ Collection referente.
+
+
+
+ Gets the compression algorithm being used to compress or decompress data.
+
+ Flag to indicate if the compression algorithm should be
+ retrieved from the reader or writer controller.
+ The name of the compression algorithm being used if any.
+ null if no compression algorithm is being used.
+
+
+
+ Represents a base class for a Session.
+
+
+
+
+ Flag to set if prepared statements are supported.
+
+
+
+
+ Gets the connection settings for this session.
+
+
+
+
+ Gets the currently active schema.
+
+
+
+
+ Gets the default schema provided when creating the session.
+
+
+
+
+ Gets the connection uri representation of the connection options provided during the creation of the session.
+
+
+
+
+ Initializes a new instance of the BaseSession class based on the specified connection string.
+
+ The connection used to create the session.
+ is null.
+ Unable to parse the when
+ in URI format.
+
+ When using Unix sockets the protocol=unix or protocol=unixsocket connection option is required.
+ This will enable elements passed in the server connection option to be treated as Unix sockets. The user is also required
+ to explicitly set sslmode to none since X Plugin does not support SSL when using Unix sockets. Note that
+ protocol=unix and protocol=unixsocket are synonyms.
+
+ Multiple hosts can be specified as part of the ,
+ which enables client-side failover when trying to establish a connection.
+
+ Connection URI examples:
+ - mysqlx://test:test@[192.1.10.10,localhost]
+ - mysqlx://test:test@[192.1.10.10,127.0.0.1]
+ - mysqlx://root:@[../tmp/mysqlx.sock,/tmp/mysqld.sock]?protocol=unix&sslmode=none
+ - mysqlx://test:test@[192.1.10.10:33060,127.0.0.1:33060]
+ - mysqlx://test:test@[192.1.10.10,120.0.0.2:22000,[::1]:33060]/test?connectiontimeout=10
+ - mysqlx://test:test@[(address=server.example,priority=20),(address=127.0.0.1,priority=100)]
+ - mysqlx://test:test@[(address=server.example,priority=100),(address=127.0.0.1,priority=75),(address=192.0.10.56,priority=25)]
+
+
+ Connection string examples:
+ - server=10.10.10.10,localhost;port=33060;uid=test;password=test;
+ - host=10.10.10.10,192.101.10.2,localhost;port=5202;uid=test;password=test;
+ - host=./tmp/mysqld.sock,/var/run/mysqldx.sock;port=5202;uid=root;protocol=unix;sslmode=none;
+ - server=(address=server.example,priority=20),(address=127.0.0.1,priority=100);port=33060;uid=test;password=test;
+ - server=(address=server.example,priority=100),(address=127.0.0.1,priority=75),(address=192.0.10.56,priority=25);port=33060;uid=test;password=test;
+
+
+ Failover methods
+ - Sequential: Connection attempts will be performed in a sequential order, that is, one after another until
+ a connection is successful or all the elements from the list have been tried.
+
+ - Priority based: If a priority is provided, the connection attemps will be performed in descending order, starting
+ with the host with the highest priority. Priority must be a value between 0 and 100. Additionally, it is required to either
+ give a priority for every host or no priority to any host.
+
+
+
+
+
+ Initializes a new instance of the BaseSession class based on the specified anonymous type object.
+
+ The connection data as an anonymous type used to create the session.
+ is null.
+
+ Multiple hosts can be specified as part of the , which enables client-side failover when trying to
+ establish a connection.
+
+ To assign multiple hosts, create a property similar to the connection string examples shown in
+ . Note that the value of the property must be a string.
+
+
+
+
+
+ Drops the database/schema with the given name.
+
+ The name of the schema.
+ is null.
+
+
+
+ Creates a schema/database with the given name.
+
+ The name of the schema/database.
+ A object that matches the recently created schema/database.
+
+
+
+ Gets the schema with the given name.
+
+ The name of the schema.
+ A object set with the provided schema name.
+
+
+
+ Gets a list of schemas (or databases) in this session.
+
+ A list containing all existing schemas (or databases).
+
+
+
+ Starts a new transaction.
+
+
+
+
+ Commits the current transaction.
+
+ A object containing the results of the commit operation.
+
+
+
+ Rolls back the current transaction.
+
+
+
+
+ Closes this session or releases it to the pool.
+
+
+
+
+ Closes this session
+
+
+
+
+ Sets a transaction savepoint with an autogenerated name.
+
+ The autogenerated name of the transaction savepoint.
+
+
+
+ Sets a named transaction savepoint.
+
+ The name of the transaction savepoint.
+ The name of the transaction savepoint.
+
+
+
+ Removes the named savepoint from the set of savepoints within the current transaction.
+
+ The name of the transaction savepoint.
+
+
+
+ Rolls back a transaction to the named savepoint without terminating the transaction.
+
+ The name of the transaction savepoint.
+
+
+
+ Parses the connection data.
+
+ The connection string or connection URI.
+ An updated connection string representation of the provided connection string or connection URI.
+
+
+
+ Parses a connection URI.
+
+ The connection URI to parse.
+ The connection string representation of the provided .
+
+
+
+ Validates if the string provided is a Unix socket file.
+
+ The Unix socket to evaluate.
+ true if is a valid Unix socket; otherwise, false.
+
+
+
+ Converts the URI object into a connection string.
+
+ An instance with the values for the provided connection options.
+ The path of the Unix socket file.
+ If true the replaces the value for the server connection option; otherwise, false
+ A connection string.
+
+
+
+ Parses a connection string.
+
+ The connection string to parse.
+ The parsed connection string.
+
+
+
+ Normalizes the Unix socket by removing leading and ending parenthesis as well as removing special characters.
+
+ The Unix socket to normalize.
+ A normalized Unix socket.
+
+
+
+ Disposes the current object. Disposes of the managed state if the flag is set to true.
+
+ Flag to indicate if the managed state is to be disposed.
+
+
+
+ Disposes the current object. Code added to correctly implement the disposable pattern.
+
+
+
+
+ Describes the state of the session.
+
+
+
+
+ The session is closed.
+
+
+
+
+ The session is open.
+
+
+
+
+ The session object is connecting to the data source.
+
+
+
+
+ The session object is executing a command.
+
+
+
+
+ Class encapsulating a session pooling functionality.
+
+
+
+
+ Queue of demoted hosts.
+
+
+
+
+ List of hosts that will be attempted to connect to.
+
+
+
+
+ Timer to be used when a host have been demoted.
+
+
+
+
+ Remove hosts from the demoted list that have already been there for more
+ than 120,000 milliseconds and add them to the available hosts list.
+
+
+
+
+ Get a session from pool or create a new one.
+
+
+
+
+
+ Closes all sessions the Client object created and destroys the managed pool.
+
+
+
+
+ Represents a collection of documents.
+
+
+
+
+ Creates an containing the provided objects that can be used to add
+ one or more items to a collection.
+
+ The objects to add.
+ An object containing the objects to add.
+ is null.
+ This method can take anonymous objects, domain objects, or just plain JSON strings.
+ The statement can be further modified before execution.
+
+
+
+ Creates a with the given condition that can be used to remove
+ one or more documents from a collection.The statement can then be further modified before execution.
+
+ The condition to match documents.
+ A object set with the given condition.
+ is null or white space.
+ The statement can then be further modified before execution.
+
+
+
+ Removes the document with the given identifier.
+
+ The unique identifier of the document to replace.
+ A object containing the results of the execution.
+ is null or white space.
+ This is a direct execution method.
+
+
+
+ Creates a with the given condition that can be used to modify one or more
+ documents from a collection.
+
+ The condition to match documents.
+ A object set with the given condition.
+ is null or white space.
+ The statement can then be further modified before execution.
+
+
+
+ Replaces the document matching the given identifier.
+
+ The unique identifier of the document to replace.
+ The document to replace the matching document.
+ A object containing the results of the execution.
+ is null or whitespace.
+ is null.
+ This is a direct execution method. Operation succeeds even if no matching document was found;
+ in which case, the Result.RecordsAffected property is zero. If the new document contains an identifier, the value
+ is ignored.
+
+
+
+ Adds the given document to the collection unless the identifier or any other field that has a unique index
+ already exists, in which case it will update the matching document.
+
+ The unique identifier of the document to replace.
+ The document to replace the matching document.
+ A object containing the results of the execution.
+ The server version is lower than 8.0.3.
+ is null or white space.
+ is null.
+ The is different from the one in .
+ This is a direct execution method.
+
+
+
+ Returns the number of documents in this collection on the server.
+
+ The number of documents found.
+
+
+
+ Creates a with the given condition which can be used to find documents in a
+ collection.
+
+ An optional condition to match documents.
+ A object set with the given condition.
+ The statement can then be further modified before execution.
+
+
+
+ Creates an index based on the properties provided in the JSON document.
+
+ The index name.
+ JSON document describing the index to be created.
+
+ is a JSON document with the following fields:
+
+ - fields: array of IndexField objects, each describing a single document member to be
+ included in the index (see below).
+ - type: string, (optional) the type of index. One of INDEX or SPATIAL. Default is INDEX and may
+ be omitted.
+
+
+ A single IndexField description consists of the following fields:
+
+ - field: string, the full document path to the document member or field to be indexed.
+ - type: string, one of the supported SQL column types to map the field into (see the following list).
+ For numeric types, the optional UNSIGNED keyword may follow. For the TEXT type, the length to consider for
+ indexing may be added.
+ - required: bool, (optional) true if the field is required to exist in the document. defaults to
+ false, except for GEOJSON where it defaults to true.
+ - options: int, (optional) special option flags for use when decoding GEOJSON data.
+ - srid: int, (optional) srid value for use when decoding GEOJSON data.
+
+
+ Supported SQL column types:
+
+ - INT [UNSIGNED]
+ - TINYINT [UNSIGNED]
+ - SMALLINT [UNSIGNED]
+ - MEDIUMINT [UNSIGNED]
+ - INTEGER [UNSIGNED]
+ - BIGINT [UNSIGNED]
+ - REAL [UNSIGNED]
+ - FLOAT [UNSIGNED]
+ - DOUBLE [UNSIGNED]
+ - DECIMAL [UNSIGNED]
+ - NUMERIC [UNSIGNED]
+ - DATE
+ - TIME
+ - TIMESTAMP
+ - DATETIME
+ - TEXT[(length)]
+ - CHAR[(lenght)]
+ - GEOJSON (extra options: options, srid)
+
+
+
+
+
+ Drops a collection index.
+
+ The index name.
+ is null or white space.
+
+
+
+ Verifies if the current collection exists in the server schema.
+
+ true if the collection exists; otherwise, false.
+
+
+
+ Returns the document with the given identifier.
+
+ The unique identifier of the document to replace.
+ A object if a document matching given identifier exists; otherwise, null.
+ is null or white space.
+ This is a direct execution method.
+
+
+
+ Base abstract class that defines elements inherited by all result types.
+
+
+
+
+ Gets the number of records affected by the statement that generated this result.
+
+
+
+
+ Gets the object of the session.
+
+
+
+
+ Gets a read-only collection of objects derived from statement execution.
+
+
+
+
+ Gets the number of warnings in the collection derived from statement execution.
+
+
+
+
+ No action is performed by this method. It is intended to be overriden by child classes if required.
+
+
+
+
+ Base abstract class for API statement.
+
+
+
+
+
+ Initializes a new instance of the BaseStatement class based on the specified session.
+
+ The session where the statement will be executed.
+
+
+
+ Gets the that owns the statement.
+
+
+
+
+ Executes the base statements. This method is intended to be defined by child classes.
+
+ A result object containing the details of the execution.
+
+
+
+ Executes a statement asynchronously.
+
+ A result object containing the details of the execution.
+
+
+
+ Validates if the session is open and valid.
+
+
+
+
+ Sets the status as Changed for prepared statement validation.
+
+
+
+
+ Converts a statement to prepared statement for a second execution
+ without any change but Bind, Limit, or Offset.
+
+
+
+
+ Abstract class for buffered results.
+
+ Generic result type.
+
+
+
+ Index of the current item.
+
+
+
+
+ List of generic items in this buffered result.
+
+
+
+
+ Flag that indicates if all items have been read.
+
+
+
+
+ Gets a dictionary containing the column names and their index.
+
+
+
+
+ Gets the page size set for this buffered result.
+
+
+
+
+ Loads the column data into the field.
+
+
+
+
+ Retrieves a read-only list of the generic items associated to this buffered result.
+
+ A generic list representing items in this buffered result.
+
+
+
+ Retrieves one element from the generic items associated to this buffered result.
+
+ A generic object that corresponds to the current or default item.
+
+
+
+ Determines if all items have already been read.
+
+ True if all items have been retrived, false otherwise.
+
+
+
+ Gets the current item.
+
+ All items have already been read.
+
+
+
+ Determines if all items have already been read.
+
+ True if all items have been retrived, false otherwise.
+
+
+
+ Resets the value of the field to zero.
+
+
+
+
+ Gets an representation of this object.
+
+ An representation of this object.
+
+
+
+ Gets an representation of this object.
+
+ An representation of this object.
+
+
+
+ Retrieves a read-only list of the generic items associated to this buffered result.
+
+ A generic list representing items in this buffered result.
+
+
+
+ No body has been defined for this method.
+
+
+
+
+ Class to represent an error in this result.
+
+
+
+
+ Numeric code.
+
+
+
+
+ Return code indicating the outcome of the executed SQL statement.
+
+
+
+
+ Error message.
+
+
+
+
+ Initializes a new instance of the ErrorInfo class.
+
+
+
+
+ Abstract class for filterable statements.
+
+ The filterable statement.
+ The database object.
+ The type of result.
+
+
+
+ Initializes a new instance of the FiltarableStatement class based on the target and condition.
+
+ The database object.
+ The optional filter condition.
+
+
+
+ Enables the setting of Where condition for this operation.
+
+ The Where condition.
+ The implementing statement type.
+
+
+
+ Sets the number of items to be returned by the operation.
+
+ The number of items to be returned.
+ The implementing statement type.
+ is equal or lower than 0.
+
+
+
+ Sets the number of items to be skipped before including them into the result.
+
+ The number of items to be skipped.
+ The implementing statement type.
+
+
+
+ Binds the parameter values in filter expression.
+
+ The parameter name.
+ The value of the parameter.
+ A generic object representing the implementing statement type.
+
+
+
+ Binds the parameter values in filter expression.
+
+ The parameters as a DbDoc object.
+ A generic object representing the implementing statement type.
+
+
+
+ Binds the parameter values in filter expression.
+
+ The parameters as a JSON string.
+ The implementing statement type.
+
+
+
+ Binds the parameter values in filter expression.
+
+ The parameters as an anonymous object: new { param1 = value1, param2 = value2, ... }.
+ The implementing statement type.
+
+
+
+ Executes the statement.
+
+ The function to execute.
+ The generic object to use.
+ A generic result object containing the results of the execution.
+
+
+
+ Clones the filterable data but Session and Target remain the
+ same.
+
+ A clone of this filterable statement.
+
+
+
+ Represents a general statement result.
+
+
+
+
+ Gets the last inserted identifier (if there is one) by the statement that generated this result.
+
+
+
+
+ Gets the list of generated identifiers in the order of the Add() calls.
+
+
+
+
+ Abstract class to select a database object target.
+
+ The database object.
+ The execution result.
+
+
+
+ Initializes a new instance of the TargetedBaseStatement class based on the provided target.
+
+ The database object.
+
+
+
+ Gets the database target.
+
+
+
+
+ Represents a warning in this result.
+
+
+
+
+ Numeric value associated to the warning message.
+
+
+
+
+ Error message.
+
+
+
+
+ Strict level for the warning.
+
+
+
+
+ Initializes a new instance of the WarningInfo class based on the code and msg.
+
+ The code for the warning.
+ The error message for the warning.
+
+
+
+ Represents a chaining collection insert statement.
+
+
+
+
+ Adds documents to the collection.
+
+ The documents to add.
+ This object.
+ The array is null.
+
+
+
+ Executes the Add statement.
+
+ A object containing the results of the execution.
+
+
+
+ Implementation class for CRUD statements with collections using an index.
+
+
+
+
+ Executes this statement.
+
+ A object containing the results of the execution.
+
+
+
+ Represents a collection statement.
+
+
+
+
+
+ Converts base s into objects.
+
+ Array of objects to be converted to objects.
+ An enumerable collection of objects.
+
+
+
+ Represents the result of an operation that includes a collection of documents.
+
+
+
+
+ Represents a chaining collection find statement.
+
+
+
+
+ List of column projections that shall be returned.
+
+ List of columns.
+ This object set with the specified columns or fields.
+
+
+
+ Executes the Find statement.
+
+ A object containing the results of execution and data.
+
+
+
+ Locks matching rows against updates.
+
+ Optional row lock option to use.
+ This same object set with the lock shared option.
+ The server version is lower than 8.0.3.
+
+
+
+ Locks matching rows so no other transaction can read or write to it.
+
+ Optional row lock option to use.
+ This same object set with the lock exclusive option.
+ The server version is lower than 8.0.3.
+
+
+
+ Sets the collection aggregation.
+
+ The field list for aggregation.
+ This same object set with the specified group-by criteria.
+
+
+
+ Filters criteria for aggregated groups.
+
+ The filter criteria for aggregated groups.
+ This same object set with the specified filter criteria.
+
+
+
+ Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like
+ "order ASC" or "pages DESC, age ASC".
+
+ The order criteria.
+ A generic object representing the implementing statement type.
+
+
+
+ Enables the setting of Where condition for this operation.
+
+ The Where condition.
+ The implementing statement type.
+
+
+
+ Represents a chaining collection modify statement.
+
+
+
+
+ Sets key and value.
+
+ The document path key.
+ The new value.
+ This object.
+
+
+
+ Changes value for a key.
+
+ The document path key.
+ The new value.
+ This object.
+
+
+
+ Removes keys or values from a document.
+
+ An array of document paths representing the keys to be removed.
+ This object.
+
+
+
+ Creates a object set with the changes to be applied to all matching documents.
+
+ The JSON-formatted object describing the set of changes.
+ A object set with the changes described in .
+ can be a object, an anonymous object, or a JSON string.
+ is null.
+ is null or white space.
+
+
+
+ Inserts an item into the specified array.
+
+ The document path key including the index on which the item will be inserted.
+ The value to insert into the array.
+ A object containing the updated array.
+
+
+
+ Appends an item to the specified array.
+
+ The document path key.
+ The value to append to the array.
+ A object containing the updated array.
+
+
+
+ Allows the user to set the sorting criteria for the operation. The strings use normal SQL syntax like
+ "order ASC" or "pages DESC, age ASC".
+
+ The order criteria.
+ A generic object representing the implementing statement type.
+
+
+
+ Enables the setting of Where condition for this operation.
+
+ The Where condition.
+ The implementing statement type.
+
+
+
+ Executes the modify statement.
+
+ A object containing the results of the execution.
+
+
+
+ Represents a chaining collection remove statement.
+
+
+
+
+ Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like
+ "order ASC" or "pages DESC, age ASC".
+
+ The order criteria.
+ A generic object representing the implementing statement type.
+
+
+
+ Enables the setting of Where condition for this operation.
+
+ The Where condition.
+ The implementing statement type.
+
+
+
+ Executes the remove statement.
+
+ A object containing the results of the execution.
+
+
+
+ Represents a database object.
+
+
+
+
+ Gets the session that owns the database object.
+
+
+
+
+ Gets the schema that owns the database object.
+
+
+
+
+ Gets the database object name.
+
+
+
+
+ Verifies that the database object exists in the database.
+
+ True if the object exists in database, false otherwise.
+
+
+
+ Represents a generic document in JSON format.
+
+
+
+
+ Initializes a new instance of the DbDoc class based on the object provided. The value can be a domain object, anonymous object, or JSON string.
+
+ The value for this DbDoc.
+
+
+
+ Gets the value of a document property.
+
+ The key path for the property.
+
+
+
+
+ Gets the identifier of the document.
+
+
+
+
+ Gets a value indicating if this document has an identifier (property named _id with a value).
+
+
+
+
+ Sets a property on this document.
+
+ The key of the property.
+ The new property value.
+
+
+
+ Returns this document in Json format.
+
+ A Json formatted string.
+
+
+
+ Compares this DbDoc with another one.
+
+ The DbDoc to compare to.
+ True if they are equal, false otherwise.
+
+
+
+ Gets a value that serves as a hash function for a particular type.
+
+ A hash code for the current object.
+
+
+
+ Represents a collection of documents with a generic type.
+
+
+
+
+ Initializes a new instance of the generic Collection class based on the specified schema
+ and name.
+
+ The object associated to this collection.
+ The name of the collection.
+
+
+
+ Creates an containing the provided generic object. The add
+ statement can be further modified before execution.
+
+ The generic object to add.
+ An object containing the object to add.
+
+
+
+ Defines elements that allow to iterate through the contents of various items.
+
+
+
+
+ Initializes a new instance of the Iterator class.
+
+
+
+
+ This method is not yet implemented.
+
+
+
+ Exception is always thrown since the body of the method is not yet implemented.
+
+
+
+ Main class for session operations related to Connector/NET implementation of the X DevAPI.
+
+
+
+
+ Opens a session to the server given or to the first available server if multiple servers were specified.
+
+ The connection string or URI string format.
+ A object representing the established session.
+ Multiple hosts can be specified as part of the which
+ will enable client side failover when trying to establish a connection. For additional details and syntax
+ examples refer to the remarks section.
+
+
+
+ Opens a session to the server given.
+
+ The connection data for the server.
+ A object representing the established session.
+
+
+
+ Creates a new instance.
+
+ The connection string or URI string format.
+ The connection options in JSON string format.
+ A object representing a session pool.
+
+
+
+ Creates a new instance.
+
+ The connection string or URI string format.
+ The connection options in object format.
+
+
+ new { pooling = new
+ {
+ enabled = true,
+ maxSize = 15,
+ maxIdleTime = 60000,
+ queueTimeout = 60000
+ }
+ }
+
+
+
+ A object representing a session pool.
+
+
+
+ Creates a new instance.
+
+ The connection data.
+ The connection options in JSON string format.
+ A object representing a session pool.
+
+
+
+ Creates a new instance.
+
+ The connection data.
+ The connection options in object format.
+
+
+ new { pooling = new
+ {
+ enabled = true,
+ maxSize = 15,
+ maxIdleTime = 60000,
+ queueTimeout = 60000
+ }
+ }
+
+
+
+ A object representing a session pool.
+
+
+
+ Enables the creation of connection strings by exposing the connection options as properties.
+ Contains connection options specific to the X protocol.
+
+
+
+
+ Main constructor.
+
+
+
+
+ Constructor accepting a connection string.
+
+ The connection string.
+
+
+
+ Readonly field containing a collection of classic protocol and protocol shared connection options.
+
+
+
+
+ Gets or sets the connection timeout.
+
+
+
+
+ Gets or sets the connection attributes.
+
+
+
+
+ Path to a local file containing certificate revocation lists.
+
+
+
+
+ Gets or sets the compression type between client and server.
+
+
+
+
+ Gets or sets a connection option.
+
+ The keyword that identifies the connection option to modify.
+
+
+
+ Represents a table column.
+
+
+
+
+ Gets the original column name.
+
+
+
+
+ Gets the alias of the column name.
+
+
+
+
+ Gets the table name the column orginates from.
+
+
+
+
+ Gets the alias of the table name .
+
+
+
+
+ Gets the schema name the column originates from.
+
+
+
+
+ Gets the catalog the schema originates from.
+ In MySQL protocol this is `def` by default.
+
+
+
+
+ Gets the collation used for this column.
+
+
+
+
+ Gets the character set used for this column.
+
+
+
+
+ Gets the column length.
+
+
+
+
+ Gets the fractional decimal digits for floating point and fixed point numbers.
+
+
+
+
+ Gets the Mysql data type.
+
+
+
+
+ Gets the .NET Clr data type.
+
+
+
+
+ True if it's a signed number.
+
+
+
+
+ True if column is UINT zerofill or BYTES rightpad.
+
+
+
+
+ Initializes a new instance of the Column class.
+
+
+
+
+ Represents a resultset that contains rows of data.
+
+
+
+
+ Gets the columns in this resultset.
+
+
+
+
+ Gets the number of columns in this resultset.
+
+
+
+
+ Gets a list containing the column names in this resultset.
+
+
+
+
+ Gets the rows of this resultset. This collection will be incomplete unless all the rows have been read
+ either by using the Next method or the Buffer method.
+
+
+
+
+ Gets the value of the column value at the current index.
+
+ The column index.
+ The CLR value at the column index.
+
+
+
+ Allows getting the value of the column value at the current index.
+
+ The column index.
+ The CLR value at the column index.
+
+
+
+ Returns the index of the given column name.
+
+ The name of the column to find.
+ The numeric index of column.
+
+
+
+ Represents a single row of data in a table.
+
+
+
+
+ Gets the value of the row at the given index.
+
+ The column index to retrieve the value.
+ The value at the index.
+
+
+
+ Gets the value of the column as a string.
+
+ The name of the column.
+ The value of the column as a string.
+
+
+
+ Gets a string based indexer into the row. Returns the value as a CLR type.
+
+ The column index to get.
+ The CLR value for the column.
+
+
+
+ Inherits from . Creates a resultset that contains rows of data.
+
+
+
+
+ Represents a resultset that contains rows of data for relational operations.
+
+
+
+
+ Gets a boolean value indicating if this result has data.
+
+
+
+
+ Moves to next resultset.
+
+ True if there is a new resultset, false otherwise.
+
+
+
+ Represents a sql statement.
+
+
+
+
+ Initializes a new instance of the SqlStament class bassed on the session and sql statement.
+
+ The session the Sql statement belongs to.
+ The Sql statement.
+
+
+
+ Gets the current Sql statement.
+
+
+
+
+ Gets the list of parameters associated to this Sql statement.
+
+
+
+
+ Executes the current Sql statement.
+
+ A object with the resultset and execution status.
+
+
+
+ Binds the parameters values by position.
+
+ The parameter values.
+ This set with the binded parameters.
+
+
+
+ Represents a server Table or View.
+
+
+
+
+ Gets a value indicating whether the object is
+ a View (True) or a Table (False).
+
+
+
+
+ Creates a set with the columns to select. The table select
+ statement can be further modified before execution. This method is intended to select a set
+ of table rows.
+
+ The optional column names to select.
+ A object for select chain operations.
+
+
+
+ Creates a set with the fileds to insert to. The table
+ insert statement can be further modified before exeuction. This method is intended to
+ insert one or multiple rows into a table.
+
+ The list of fields to insert.
+ A object for insert chain operations.
+
+
+
+ Creates a . This method is intended to update table rows
+ values.
+
+ A object for update chain operations.
+
+
+
+ Creates a . This method is intended to delete rows from a
+ table.
+
+ A object for delete chain operations.
+
+
+
+ Returns the number of rows in the table on the server.
+
+ The number of rows.
+
+
+
+ Verifies if the table exists in the database.
+
+ true if the table exists; otherwise, false.
+
+
+
+ Represents a chaining table delete statement.
+
+
+
+
+ Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like
+ "order ASC" or "pages DESC, age ASC".
+
+ The order criteria.
+ A generic object representing the implementing statement type.
+
+
+
+ Executes the delete statement.
+
+ A object containing the results of the delete execution.
+
+
+
+ Represents a chaining table insert statement.
+
+
+
+
+ Executes the insert statement.
+
+ A object containing the results of the insert statement.
+
+
+
+ Values to be inserted.
+ Multiple rows supported.
+
+ The values to be inserted.
+ This same object.
+
+
+
+ Represents a chaining table select statement.
+
+
+
+
+ Executes the select statement.
+
+ A object containing the results of the execution and data.
+
+
+
+ Locks matching rows against updates.
+
+ Optional row lock option to use.
+ This same object set with lock shared option.
+ The server version is lower than 8.0.3.
+
+
+
+ Locks matching rows so no other transaction can read or write to it.
+
+ Optional row lock option to use.
+ This same object set with the lock exclusive option.
+ The server version is lower than 8.0.3.
+
+
+
+ Sets the table aggregation.
+
+ The column list for aggregation.
+ This same object set with the specified group-by criteria.
+
+
+
+ Filters criteria for aggregated groups.
+
+ The filter criteria for aggregated groups.
+ This same object set with the specified filter criteria.
+
+
+
+ Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like
+ "order ASC" or "pages DESC, age ASC".
+
+ The order criteria.
+ A generic object that represents the implementing statement type.
+
+
+
+ Represents a chaining table update statement.
+
+
+
+
+ Executes the update statement.
+
+ A object ocntaining the results of the update statement execution.
+
+
+
+ Column and value to be updated.
+
+ Column name.
+ Value to be updated.
+ This same object.
+
+
+
+ Sets user-defined sorting criteria for the operation. The strings use normal SQL syntax like
+ "order ASC" or "pages DESC, age ASC".
+
+ The order criteria.
+ A generic object that represents the implementing statement type.
+
+
+
+ Represents a schema or database.
+
+
+
+
+ Session related to current schema.
+
+
+
+
+ Returns a list of all collections in this schema.
+
+ A list representing all found collections.
+
+
+
+ Returns a list of all tables in this schema.
+
+ A list representing all found tables.
+
+
+
+ Gets a collection by name.
+
+ The name of the collection to get.
+ Ensures the collection exists in the schema.
+ A object matching the given name.
+
+
+
+ Gets a typed collection object. This is useful for using domain objects.
+
+ The type of collection returned.
+ The name of collection to get.
+ A generic object set with the given name.
+
+
+
+ Gets the given collection as a table.
+
+ The name of the collection.
+ A object set with the given name.
+
+
+
+ Gets a table object. Upon return the object may or may not be valid.
+
+ The name of the table object.
+ A object set with the given name.
+
+
+
+ Creates a collection.
+
+ The name of the collection to create.
+ If false, throws an exception if the collection exists.
+ Collection referente.
+
+
+
+ Creates a collection including a schema validation.
+
+ The name of the collection to create.
+ This object hold the parameters required to create the collection.
+
+ Collection referente.
+
+
+
+ Modify a collection adding or removing schema validation parameters.
+
+ The name of the collection to create.
+ This object encapsulate the Validation parameters level and schema.
+ Collection referente.
+
+
+
+ Drops the given collection.
+
+ The name of the collection to drop.
+ is null.
+
+
+
+ Determines if this schema actually exists.
+
+ True if exists, false otherwise.
+
+
+
+ Represents a single server session.
+
+
+
+
+ Returns a object that can be used to execute the given SQL.
+
+ The SQL to execute.
+ A object set with the provided SQL.
+
+
+
+ Sets the schema in the database.
+
+ The schema name to be set.
+
+
+
+ Executes a query in the database to get the current schema.
+
+ Current database object or null if no schema is selected.
+
+
+ Holder for reflection information generated from mysqlx.proto
+
+
+ File descriptor for mysqlx.proto
+
+
+
+ IDs of messages that can be sent from client to the server
+
+ .. note::
+ this message is never sent on the wire. It is only used to let ``protoc``
+
+ * generate constants
+ * check for uniqueness
+
+
+
+ Container for nested types declared in the ClientMessages message type.
+
+
+
+ IDs of messages that can be sent from server to client
+
+ .. note::
+ this message is never sent on the wire. It is only used to let ``protoc``
+
+ * generate constants
+ * check for uniqueness
+
+
+
+ Container for nested types declared in the ServerMessages message type.
+
+
+
+ NOTICE has to stay at 11 forever
+
+
+
+
+ generic Ok message
+
+
+
+ Field number for the "msg" field.
+
+
+
+ generic Error message
+
+ A ``severity`` of ``ERROR`` indicates the current message sequence is
+ aborted for the given error and the session is ready for more.
+
+ In case of a ``FATAL`` error message the client should not expect
+ the server to continue handling any further messages and should
+ close the connection.
+
+ :param severity: severity of the error message
+ :param code: error-code
+ :param sql_state: SQL state
+ :param msg: human readable error message
+
+
+
+ Field number for the "severity" field.
+
+
+ Field number for the "code" field.
+
+
+ Field number for the "sql_state" field.
+
+
+ Field number for the "msg" field.
+
+
+ Container for nested types declared in the Error message type.
+
+
+ Holder for reflection information generated from mysqlx_connection.proto
+
+
+ File descriptor for mysqlx_connection.proto
+
+
+
+ a Capability
+
+ a tuple of a ``name`` and a :protobuf:msg:`Mysqlx.Datatypes::Any`
+
+
+
+ Field number for the "name" field.
+
+
+ Field number for the "value" field.
+
+
+
+ Capabilities
+
+
+
+ Field number for the "capabilities" field.
+
+
+
+ get supported connection capabilities and their current state
+
+ :returns: :protobuf:msg:`Mysqlx.Connection::Capabilities` or :protobuf:msg:`Mysqlx::Error`
+
+
+
+
+ sets connection capabilities atomically
+
+ only provided values are changed, other values are left unchanged.
+ If any of the changes fails, all changes are discarded.
+
+ :precond: active sessions == 0
+ :returns: :protobuf:msg:`Mysqlx::Ok` or :protobuf:msg:`Mysqlx::Error`
+
+
+
+ Field number for the "capabilities" field.
+
+
+
+ announce to the server that the client wants to close the connection
+
+ it discards any session state of the server
+
+ :Returns: :protobuf:msg:`Mysqlx::Ok`
+
+
+
+ Field number for the "uncompressed_size" field.
+
+
+ Field number for the "server_messages" field.
+
+
+ Field number for the "client_messages" field.
+
+
+ Field number for the "payload" field.
+
+
+ Holder for reflection information generated from mysqlx_crud.proto
+
+
+ File descriptor for mysqlx_crud.proto
+
+
+
+ DataModel to use for filters, names, ...
+
+
+
+
+ ViewAlgorithm defines how MySQL Server processes the view
+
+
+
+
+ MySQL chooses which algorithm to use
+
+
+
+
+ the text of a statement that refers to the view and the view definition are merged
+
+
+
+
+ the view are retrieved into a temporary table
+
+
+
+
+ ViewSqlSecurity defines the security context in which the view is going to be
+ executed, this means that VIEW can be executed with current user permissions or
+ with permissions of the uses who defined the VIEW
+
+
+
+
+ ViewCheckOption limits the write operations done on a `VIEW`
+ (`INSERT`, `UPDATE`, `DELETE`) to rows in which the `WHERE` clause is `TRUE`
+
+
+
+
+ the view WHERE clause is checked, but no underlying views are checked
+
+
+
+
+ the view WHERE clause is checked, then checking recurses to underlying views
+
+
+
+
+ column definition
+
+
+
+ Field number for the "name" field.
+
+
+
+ optional
+
+
+
+ Field number for the "alias" field.
+
+
+
+ optional
+
+
+
+ Field number for the "document_path" field.
+
+
+
+ a projection
+
+ :param source: the expression identifying an element from the source data
+ which can include a column identifier or any expression
+ :param alias: optional alias. Required for DOCUMENTs (clients may use
+ the source string as default)
+
+
+
+ Field number for the "source" field.
+
+
+
+ required
+
+
+
+ Field number for the "alias" field.
+
+
+
+ optional
+
+
+
+
+ collection
+
+
+
+ Field number for the "name" field.
+
+
+
+ required
+
+
+
+ Field number for the "schema" field.
+
+
+
+ optional
+
+
+
+
+ limit
+
+ :param row_count: maximum rows to filter
+ :param offset: maximum rows to skip before applying the row_count
+
+
+
+ Field number for the "row_count" field.
+
+
+
+ required
+
+
+
+ Field number for the "offset" field.
+
+
+
+ optional
+
+
+
+
+ limit expression
+
+ LimitExpr in comparison to Limit, is able to specify that row_count and
+ offset are placeholders.
+ This message support expressions of following types Expr/literal/UINT,
+ Expr/PLACEHOLDER.
+
+ :param row_count: maximum rows to filter
+ :param offset: maximum rows to skip before applying the row_count
+
+
+
+ Field number for the "row_count" field.
+
+
+
+ required
+
+
+
+ Field number for the "offset" field.
+
+
+
+ optional
+
+
+
+
+ sort order
+
+
+
+ Field number for the "expr" field.
+
+
+
+ required
+
+
+
+ Field number for the "direction" field.
+
+
+
+ optional//[ default=ASC ]
+
+
+
+ Container for nested types declared in the Order message type.
+
+
+
+ update operations
+
+ :param source: specification of the value to be updated
+ if data_model is TABLE, a column name may be specified and also a document path, if the column has type JSON
+ if data_model is DOCUMENT, only document paths are allowed
+ in both cases, schema and table must be not set
+ :param operation: the type of operation to be performed
+ :param value: an expression to be computed as the new value for the operation
+
+
+
+ Field number for the "source" field.
+
+
+
+ required
+
+
+
+ Field number for the "operation" field.
+
+
+
+ required
+
+
+
+ Field number for the "value" field.
+
+
+
+ optional
+
+
+
+ Container for nested types declared in the UpdateOperation message type.
+
+
+
+ only allowed for TABLE
+
+
+
+
+ no value (removes the identified path from a object or array)
+
+
+
+
+ sets the new value on the identified path
+
+
+
+
+ replaces a value if the path exists
+
+
+
+
+ source and value must be documents
+
+
+
+
+ insert the value in the array at the index identified in the source path
+
+
+
+
+ append the value on the array at the identified path
+
+
+
+
+ merge JSON object value with the provided patch expression
+
+
+
+
+ Find Documents/Rows in a Collection/Table
+
+ .. uml::
+
+ client -> server: Find
+ ... one or more Resultset ...
+
+ :param collection: collection to insert into
+ :param data_model: datamodel that the operations refer to
+ :param projection: list of column projections that shall be returned
+ :param args: values for parameters used in filter expression
+ :param criteria: filter criteria
+ :param limit: numbers of rows that shall be skipped and returned (user can set one of: limit, limit_expr)
+ :param order: sort-order in which the rows/document shall be returned in
+ :param grouping: column expression list for aggregation (GROUP BY)
+ :param grouping_criteria: filter criteria for aggregated groups
+ :param locking: perform row locking on matches
+ :param locking_options: additional options how to handle locked rows
+ :param limit_expr: numbers of rows that shall be skipped and returned (user can set one of: limit, limit_expr)
+ :Returns: :protobuf:msg:`Mysqlx.Resultset::`
+
+
+
+ Field number for the "collection" field.
+
+
+
+ required
+
+
+
+ Field number for the "data_model" field.
+
+
+
+ optional
+
+
+
+ Field number for the "projection" field.
+
+
+ Field number for the "criteria" field.
+
+
+
+ optional
+
+
+
+ Field number for the "args" field.
+
+
+ Field number for the "order" field.
+
+
+ Field number for the "grouping" field.
+
+
+ Field number for the "grouping_criteria" field.
+
+
+
+ optional
+
+
+
+ Field number for the "locking" field.
+
+
+
+ optional
+
+
+
+ Field number for the "locking_options" field.
+
+
+
+ optional
+
+
+
+ Field number for the "limit" field.
+
+
+
+ optional
+
+
+
+ Field number for the "limit_expr" field.
+
+
+
+ optional
+
+
+
+ Container for nested types declared in the Find message type.
+
+
+
+ Lock matching rows against updates
+
+
+
+
+ Lock matching rows so no other transaction can read or write to it
+
+
+
+
+ Do not wait to acquire row lock, fail with an error if a requested row is locked
+
+
+
+
+ Do not wait to acquire a row lock, remove locked rows from the result set
+
+
+
+
+ Insert documents/rows into a collection/table
+
+ :param collection: collection to insert into
+ :param data_model: datamodel that the operations refer to
+ :param projection: name of the columns to insert data into (empty if data_model is DOCUMENT)
+ :param row: set of rows to insert into the collection/table (a single expression with a JSON document literal or an OBJECT expression)
+ :param args: values for parameters used in row expressions
+ :param upsert: true if this should be treated as an Upsert (that is, update on duplicate key)
+ :Returns: :protobuf:msg:`Mysqlx.Resultset::`
+
+
+
+ Field number for the "collection" field.
+
+
+
+ required
+
+
+
+ Field number for the "data_model" field.
+
+
+
+ optional
+
+
+
+ Field number for the "projection" field.
+
+
+ Field number for the "row" field.
+
+
+ Field number for the "args" field.
+
+
+ Field number for the "upsert" field.
+
+
+
+ optional//[default = false]
+
+
+
+ Container for nested types declared in the Insert message type.
+
+
+ Field number for the "field" field.
+
+
+
+ Update documents/rows in a collection/table
+
+ :param collection: collection to change
+ :param data_model: datamodel that the operations refer to
+ :param criteria: filter expression to match rows that the operations will apply on
+ :param args: values for parameters used in filter expression
+ :param limit: limits the number of rows to match (user can set one of: limit, limit_expr)
+ :param order: specifies order of matched rows
+ :param operation: list of operations to be applied. Valid operations will depend on the data_model.
+ :param limit_expr: limits the number of rows to match (user can set one of: limit, limit_expr)
+ :Returns: :protobuf:msg:`Mysqlx.Resultset::`
+
+
+
+ Field number for the "collection" field.
+
+
+
+ required
+
+
+
+ Field number for the "data_model" field.
+
+
+
+ optional
+
+
+
+ Field number for the "criteria" field.
+
+
+
+ optional
+
+
+
+ Field number for the "args" field.
+
+
+ Field number for the "order" field.
+
+
+ Field number for the "operation" field.
+
+
+ Field number for the "limit" field.
+
+
+
+ optional
+
+
+
+ Field number for the "limit_expr" field.
+
+
+
+ optional
+
+
+
+
+ Delete documents/rows from a Collection/Table
+
+ :param collection: collection to change
+ :param data_model: datamodel that the operations refer to
+ :param criteria: filter expression to match rows that the operations will apply on
+ :param args: values for parameters used in filter expression
+ :param limit: limits the number of rows to match (user can set one of: limit, limit_expr)
+ :param order: specifies order of matched rows
+ :param limit_expr: limits the number of rows to match (user can set one of: limit, limit_expr)
+ :Returns: :protobuf:msg:`Mysqlx.Resultset::`
+
+
+
+ Field number for the "collection" field.
+
+
+
+ required
+
+
+
+ Field number for the "data_model" field.
+
+
+
+ optional
+
+
+
+ Field number for the "criteria" field.
+
+
+
+ optional
+
+
+
+ Field number for the "args" field.
+
+
+ Field number for the "order" field.
+
+
+ Field number for the "limit" field.
+
+
+
+ optional
+
+
+
+ Field number for the "limit_expr" field.
+
+
+
+ optional
+
+
+
+ Field number for the "collection" field.
+
+
+
+ required
+
+
+
+ Field number for the "definer" field.
+
+
+
+ optional
+
+
+
+ Field number for the "algorithm" field.
+
+
+
+ optional//[default = UNDEFINED]
+
+
+
+ Field number for the "security" field.
+
+
+
+ optional//[default = DEFINER]
+
+
+
+ Field number for the "check" field.
+
+
+
+ optional
+
+
+
+ Field number for the "column" field.
+
+
+ Field number for the "stmt" field.
+
+
+
+ required
+
+
+
+ Field number for the "replace_existing" field.
+
+
+
+ optional//[default = false]
+
+
+
+ Field number for the "collection" field.
+
+
+
+ required
+
+
+
+ Field number for the "definer" field.
+
+
+
+ optional
+
+
+
+ Field number for the "algorithm" field.
+
+
+
+ optional
+
+
+
+ Field number for the "security" field.
+
+
+
+ optional
+
+
+
+ Field number for the "check" field.
+
+
+
+ optional
+
+
+
+ Field number for the "column" field.
+
+
+ Field number for the "stmt" field.
+
+
+
+ optional
+
+
+
+ Field number for the "collection" field.
+
+
+
+ required
+
+
+
+ Field number for the "if_exists" field.
+
+
+
+ optional//[ default = false ]
+
+
+
+ Holder for reflection information generated from mysqlx_cursor.proto
+
+
+ File descriptor for mysqlx_cursor.proto
+
+
+
+ Open a cursor
+
+ .. uml::
+
+ client -> server: Open
+ alt Success
+ ... none or partial Resultsets or full Resultsets ...
+ client <- server: StmtExecuteOk
+ else Failure
+ client <- server: Error
+ end
+
+ :param cursor_id: client side assigned cursor id, the ID is going to represent new cursor and assigned to it statement
+ :param stmt: statement which resultset is going to be iterated through the cursor
+ :param fetch_rows: number of rows which should be retrieved from sequential cursor
+ :Returns: :protobuf:msg:`Mysqlx.Ok::`
+
+
+
+ Field number for the "cursor_id" field.
+
+
+
+ required
+
+
+
+ Field number for the "stmt" field.
+
+
+
+ required
+
+
+
+ Field number for the "fetch_rows" field.
+
+
+
+ optional
+
+
+
+ Container for nested types declared in the Open message type.
+
+
+ Field number for the "type" field.
+
+
+
+ required
+
+
+
+ Field number for the "prepare_execute" field.
+
+
+
+ optional
+
+
+
+ Container for nested types declared in the OneOfMessage message type.
+
+
+
+ Fetch next portion of data from a cursor
+
+ .. uml::
+
+ client -> server: Fetch
+ alt Success
+ ... none or partial Resultsets or full Resultsets ...
+ client <- server: StmtExecuteOk
+ else
+ client <- server: Error
+ end
+
+ :param cursor_id: client side assigned cursor id, must be already open
+ :param fetch_rows: number of rows which should be retrieved from sequential cursor
+
+
+
+ Field number for the "cursor_id" field.
+
+
+
+ required
+
+
+
+ Field number for the "fetch_rows" field.
+
+
+
+ optional
+
+
+
+
+ Close cursor
+
+ .. uml::
+
+ client -> server: Close
+ alt Success
+ client <- server: Ok
+ else Failure
+ client <- server: Error
+ end
+
+ :param cursor_id: client side assigned cursor id, must be allocated/open
+ :Returns: :protobuf:msg:`Mysqlx.Ok|Mysqlx.Error`
+
+
+
+ Field number for the "cursor_id" field.
+
+
+
+ required
+
+
+
+ Holder for reflection information generated from mysqlx_datatypes.proto
+
+
+ File descriptor for mysqlx_datatypes.proto
+
+
+
+ a scalar
+
+
+
+ Field number for the "type" field.
+
+
+
+ required
+
+
+
+ Field number for the "v_signed_int" field.
+
+
+ Field number for the "v_unsigned_int" field.
+
+
+ Field number for the "v_octets" field.
+
+
+
+ 4 is unused, was Null which doesn't have a storage anymore
+
+
+
+ Field number for the "v_double" field.
+
+
+ Field number for the "v_float" field.
+
+
+ Field number for the "v_bool" field.
+
+
+ Field number for the "v_string" field.
+
+
+ Enum of possible cases for the "DefaultOneOf" oneof.
+
+
+ Container for nested types declared in the Scalar message type.
+
+
+
+ a string with a charset/collation
+
+
+
+ Field number for the "value" field.
+
+
+
+ required
+
+
+
+ Field number for the "collation" field.
+
+
+ Enum of possible cases for the "String_present" oneof.
+
+
+
+ an opaque octet sequence, with an optional content_type
+ See ``Mysqlx.Resultset.ColumnMetadata`` for list of known values.
+
+
+
+ Field number for the "value" field.
+
+
+
+ required
+
+
+
+ Field number for the "content_type" field.
+
+
+
+ a object
+
+
+
+ Field number for the "fld" field.
+
+
+ Container for nested types declared in the Object message type.
+
+
+ Field number for the "key" field.
+
+
+
+ required
+
+
+
+ Field number for the "value" field.
+
+
+
+ required
+
+
+
+
+ a Array
+
+
+
+ Field number for the "value" field.
+
+
+
+ a helper to allow all field types
+
+
+
+ Field number for the "type" field.
+
+
+
+ required
+
+
+
+ Field number for the "scalar" field.
+
+
+ Field number for the "obj" field.
+
+
+ Field number for the "array" field.
+
+
+ Container for nested types declared in the Any message type.
+
+
+ Holder for reflection information generated from mysqlx_expect.proto
+
+
+ File descriptor for mysqlx_expect.proto
+
+
+
+ open an Expect block and set/unset the conditions that have to be fulfilled
+
+ if any of the conditions fail, all enclosed messages will fail with
+ a Mysqlx.Error message.
+
+ :returns: :protobuf:msg:`Mysqlx::Ok` on success, :protobuf:msg:`Mysqlx::Error` on error
+
+
+
+ Field number for the "op" field.
+
+
+
+ [ default = EXPECT_CTX_COPY_PREV ];//optional
+
+
+
+ Field number for the "cond" field.
+
+
+ Container for nested types declared in the Open message type.
+
+
+
+ copy the operations from the parent Expect-block
+
+
+
+
+ start with a empty set of operations
+
+
+
+ Field number for the "condition_key" field.
+
+
+
+ required
+
+
+
+ Field number for the "condition_value" field.
+
+
+
+ optional
+
+
+
+ Field number for the "op" field.
+
+
+
+ [ default = EXPECT_OP_SET ];//optional
+
+
+
+ Container for nested types declared in the Condition message type.
+
+
+
+ Change error propagation behaviour
+
+
+
+
+ Check if X Protocol field exists
+
+
+
+
+ Check if X Protocol support document _id generation
+
+
+
+
+ set the condition
+
+ set, if not set
+ overwrite, if set
+
+
+
+
+ unset the condition
+
+
+
+
+ close a Expect block
+
+ closing a Expect block restores the state of the previous Expect block
+ for the following messages
+
+ :returns: :protobuf:msg:`Mysqlx::Ok` on success, :protobuf:msg:`Mysqlx::Error` on error
+
+
+
+ Holder for reflection information generated from mysqlx_expr.proto
+
+
+ File descriptor for mysqlx_expr.proto
+
+
+
+ Expressions
+
+ the "root" of the expression tree
+
+ .. productionlist::
+ expr: `operator` |
+ : `identifier` |
+ : `function_call` |
+ : variable |
+ : `literal` |
+ : placeholder
+
+ If expression type is PLACEHOLDER then it refers to the value of a parameter
+ specified when executing a statement (see `args` field of `StmtExecute` command).
+ Field `position` (which must be present for such an expression) gives 0-based
+ position of the parameter in the parameter list.
+
+
+
+ Field number for the "type" field.
+
+
+
+ required
+
+
+
+ Field number for the "identifier" field.
+
+
+ Field number for the "variable" field.
+
+
+ Field number for the "literal" field.
+
+
+ Field number for the "function_call" field.
+
+
+ Field number for the "operator" field.
+
+
+ Field number for the "position" field.
+
+
+ Field number for the "object" field.
+
+
+ Field number for the "array" field.
+
+
+ Container for nested types declared in the Expr message type.
+
+
+
+ identifier: name, schame.name
+
+ .. productionlist::
+ identifier: string "." string |
+ : string
+
+
+
+ Field number for the "name" field.
+
+
+
+ required
+
+
+
+ Field number for the "schema_name" field.
+
+
+
+ DocumentPathItem
+
+ .. productionlist::
+ document_path: path_item | path_item document_path
+ path_item : member | array_index | "**"
+ member : "." string | "." "*"
+ array_index : "[" number "]" | "[" "*" "]"
+
+
+
+ Field number for the "type" field.
+
+
+
+ required
+
+
+
+ Field number for the "value" field.
+
+
+ Field number for the "index" field.
+
+
+ Container for nested types declared in the DocumentPathItem message type.
+
+
+
+ .member
+
+
+
+
+ .*
+
+
+
+
+ [index]
+
+
+
+
+ [*]
+
+
+
+
+ **
+
+
+
+
+ col_identifier (table): col@doc_path, tbl.col@doc_path col, tbl.col, schema.tbl.col
+ col_identifier (document): doc_path
+
+ .. productionlist::
+ col_identifier: string "." string "." string |
+ : string "." string |
+ : string |
+ : string "." string "." string "@" document_path |
+ : string "." string "@" document_path |
+ : string "@" document_path |
+ : document_path
+ document_path: member | arrayLocation | doubleAsterisk
+ member = "." string | "." "*"
+ arrayLocation = "[" index "]" | "[" "*" "]"
+ doubleAsterisk = "**"
+
+
+
+ Field number for the "document_path" field.
+
+
+ Field number for the "name" field.
+
+
+ Field number for the "table_name" field.
+
+
+ Field number for the "schema_name" field.
+
+
+
+ function call: ``func(a, b, "1", 3)``
+
+ .. productionlist::
+ function_call: `identifier` "(" [ `expr` ["," `expr` ]* ] ")"
+
+
+
+ Field number for the "name" field.
+
+
+
+ required
+
+
+
+ Field number for the "param" field.
+
+
+
+ operator: ``<<(a, b)``
+
+ .. note::
+
+ Non-authoritative list of operators implemented (case sensitive):
+
+ Nullary
+ * ``*``
+ * ``default``
+
+ Unary
+ * ``!``
+ * ``sign_plus``
+ * ``sign_minus``
+ * ``~``
+
+ Binary
+ * ``&&``
+ * ``||``
+ * ``xor``
+ * ``==``
+ * ``!=``
+ * ``>``
+ * ``>=``
+ * ``<``
+ * ``<=``
+ * ``&``
+ * ``|``
+ * ``^``
+ * ``<<``
+ * ``>>``
+ * ``+``
+ * ``-``
+ * ``*``
+ * ``/``
+ * ``div``
+ * ``%``
+ * ``is``
+ * ``is_not``
+ * ``regexp``
+ * ``not_regexp``
+ * ``like``
+ * ``not_like``
+ * ``cast``
+ * ``cont_in``
+ * ``not_cont_in``
+
+ Using special representation, with more than 2 params
+ * ``in`` (param[0] IN (param[1], param[2], ...))
+ * ``not_in`` (param[0] NOT IN (param[1], param[2], ...))
+
+ Ternary
+ * ``between``
+ * ``between_not``
+ * ``date_add``
+ * ``date_sub``
+
+ Units for date_add/date_sub
+ * ``MICROSECOND``
+ * ``SECOND``
+ * ``MINUTE``
+ * ``HOUR``
+ * ``DAY``
+ * ``WEEK``
+ * ``MONTH``
+ * ``QUARTER``
+ * ``YEAR``
+ * ``SECOND_MICROSECOND``
+ * ``MINUTE_MICROSECOND``
+ * ``MINUTE_SECOND``
+ * ``HOUR_MICROSECOND``
+ * ``HOUR_SECOND``
+ * ``HOUR_MINUTE``
+ * ``DAY_MICROSECOND``
+ * ``DAY_SECOND``
+ * ``DAY_MINUTE``
+ * ``DAY_HOUR``
+
+ Types for cast
+ * ``BINARY[(N)]``
+ * ``CHAR[(N)]``
+ * ``DATE``
+ * ``DATETIME``
+ * ``DECIMAL[(M[,D])]``
+ * ``JSON``
+ * ``SIGNED [INTEGER]``
+ * ``TIME``
+ * ``UNSIGNED [INTEGER]``
+
+ .. productionlist::
+ operator: `name` "(" [ `expr` ["," `expr` ]* ] ")"
+
+
+
+ Field number for the "name" field.
+
+
+
+ required
+
+
+
+ Field number for the "param" field.
+
+
+
+ an object (with expression values)
+
+
+
+ Field number for the "fld" field.
+
+
+ Container for nested types declared in the Object message type.
+
+
+ Field number for the "key" field.
+
+
+
+ required
+
+
+
+ Field number for the "value" field.
+
+
+
+ required
+
+
+
+
+ a Array of expressions
+
+
+
+ Field number for the "value" field.
+
+
+ Holder for reflection information generated from mysqlx_notice.proto
+
+
+ File descriptor for mysqlx_notice.proto
+
+
+
+ Common Frame for all Notices
+
+ ===================================================== =====
+ .type value
+ ===================================================== =====
+ :protobuf:msg:`Mysqlx.Notice::Warning` 1
+ :protobuf:msg:`Mysqlx.Notice::SessionVariableChanged` 2
+ :protobuf:msg:`Mysqlx.Notice::SessionStateChanged` 3
+ ===================================================== =====
+
+ :param type: the type of the payload
+ :param payload: the payload of the notification
+ :param scope: global or local notification
+
+
+
+ Field number for the "type" field.
+
+
+
+ required
+
+
+
+ Field number for the "scope" field.
+
+
+
+ [ default = GLOBAL ];//optional
+
+
+
+ Field number for the "payload" field.
+
+
+
+ optional
+
+
+
+ Container for nested types declared in the Frame message type.
+
+
+
+ Server-side warnings and notes
+
+ ``.scope`` == ``local``
+ ``.level``, ``.code`` and ``.msg`` map the content of
+
+ .. code-block:: sql
+
+ SHOW WARNINGS
+
+ ``.scope`` == ``global``
+ (undefined) will be used for global, unstructured messages like:
+
+ * server is shutting down
+ * a node disconnected from group
+ * schema or table dropped
+
+ ========================================== =======================
+ :protobuf:msg:`Mysqlx.Notice::Frame` field value
+ ========================================== =======================
+ ``.type`` 1
+ ``.scope`` ``local`` or ``global``
+ ========================================== =======================
+
+ :param level: warning level: Note or Warning
+ :param code: warning code
+ :param msg: warning message
+
+
+
+ Field number for the "level" field.
+
+
+
+ [ default = WARNING ];//optional
+
+
+
+ Field number for the "code" field.
+
+
+
+ required
+
+
+
+ Field number for the "msg" field.
+
+
+
+ required
+
+
+
+ Container for nested types declared in the Warning message type.
+
+
+
+ Notify clients about changes to the current session variables
+
+ Every change to a variable that is accessible through:
+
+ .. code-block:: sql
+
+ SHOW SESSION VARIABLES
+
+ ========================================== =========
+ :protobuf:msg:`Mysqlx.Notice::Frame` field value
+ ========================================== =========
+ ``.type`` 2
+ ``.scope`` ``local``
+ ========================================== =========
+
+ :param namespace: namespace that param belongs to
+ :param param: name of the variable
+ :param value: the changed value of param
+
+
+
+ Field number for the "param" field.
+
+
+
+ required
+
+
+
+ Field number for the "value" field.
+
+
+
+ optional
+
+
+
+
+ Notify clients about changes to the internal session state
+
+ ========================================== =========
+ :protobuf:msg:`Mysqlx.Notice::Frame` field value
+ ========================================== =========
+ ``.type`` 3
+ ``.scope`` ``local``
+ ========================================== =========
+
+ :param param: parameter key
+ :param value: updated value
+
+
+
+ Field number for the "param" field.
+
+
+
+ required
+
+
+
+ Field number for the "value" field.
+
+
+ Container for nested types declared in the SessionStateChanged message type.
+
+
+
+ .. more to be added
+
+
+
+ Holder for reflection information generated from mysqlx_prepare.proto
+
+
+ File descriptor for mysqlx_prepare.proto
+
+
+
+ Prepare a new statement
+
+ .. uml::
+
+ client -> server: Prepare
+ alt Success
+ client <- server: Ok
+ else Failure
+ client <- server: Error
+ end
+
+ :param stmt_id: client side assigned statement id, which is going to identify the result of preparation
+ :param stmt: defines one of following messages to be prepared - Crud.Find, Crud.Insert, Crud.Delete, Crud.Upsert, Sql.StmtExecute
+ :Returns: :protobuf:msg:`Mysqlx.Ok|Mysqlx.Error`
+
+
+
+ Field number for the "stmt_id" field.
+
+
+
+ required
+
+
+
+ Field number for the "stmt" field.
+
+
+
+ required
+
+
+
+ Container for nested types declared in the Prepare message type.
+
+
+ Field number for the "type" field.
+
+
+
+ required
+
+
+
+ Field number for the "find" field.
+
+
+
+ optional
+
+
+
+ Field number for the "insert" field.
+
+
+
+ optional
+
+
+
+ Field number for the "update" field.
+
+
+
+ optional
+
+
+
+ Field number for the "delete" field.
+
+
+
+ optional
+
+
+
+ Field number for the "stmt_execute" field.
+
+
+
+ optional
+
+
+
+ Enum of possible cases for the "Type_present" oneof.
+
+
+ Container for nested types declared in the OneOfMessage message type.
+
+
+
+ Determine which of optional fields was set by the client
+ (Workaround for missing "oneof" keyword in pb2.5)
+
+
+
+
+ Execute already prepared statement
+
+ .. uml::
+
+ client -> server: Execute
+ alt Success
+ ... Resultsets...
+ client <- server: StmtExecuteOk
+ else Failure
+ client <- server: Error
+ end
+
+ :param stmt_id: client side assigned statement id, must be already prepared
+ :param args_list: Arguments to bind to the prepared statement
+ :param compact_metadata: send only type information for :protobuf:msg:`Mysqlx.Resultset::ColumnMetadata`, skipping names and others
+ :Returns: :protobuf:msg:`Mysqlx.Ok::`
+
+
+
+ Field number for the "stmt_id" field.
+
+
+
+ required
+
+
+
+ Field number for the "args" field.
+
+
+ Field number for the "compact_metadata" field.
+
+
+
+ [ default = false ]; optional
+
+
+
+
+ Deallocate already prepared statement
+
+ Deallocating the statement.
+
+ .. uml::
+
+ client -> server: Deallocate
+ alt Success
+ client <- server: Ok
+ else Failure
+ client <- server: Error
+ end
+
+ :param stmt_id: client side assigned statement id, must be already prepared
+ :Returns: :protobuf:msg:`Mysqlx.Ok|Mysqlx.Error`
+
+
+
+ Field number for the "stmt_id" field.
+
+
+
+ required
+
+
+
+ Holder for reflection information generated from mysqlx_resultset.proto
+
+
+ File descriptor for mysqlx_resultset.proto
+
+
+
+ a hint about the higher-level encoding of a BYTES field
+
+ ====== ====== ===========
+ type value description
+ ====== ====== ===========
+ BYTES 0x0001 GEOMETRY (WKB encoding)
+ BYTES 0x0002 JSON (text encoding)
+ BYTES 0x0003 XML (text encoding)
+ ====== ====== ===========
+
+ .. note::
+ this list isn't comprehensive. As guideline: the field's value is expected
+ to pass a validator check on client and server if this field is set.
+ If the server adds more internal datatypes that rely on BLOB storage
+ like image manipulation, seeking into complex types in BLOBs, ... more
+ types will be added.
+
+
+
+
+ a hint about the higher-level encoding of a DATETIME field
+
+ ====== ====== ===========
+ type value description
+ ======== ====== ===========
+ DATE 0x0001 DATETIME contains only date part
+ DATETIME 0x0002 DATETIME contains both date and time parts
+ ====== ====== ===========
+
+
+
+
+ resultsets are finished, OUT paramset is next
+
+
+
+
+ resultset and out-params are finished, but more resultsets available
+
+
+
+
+ all resultsets are finished
+
+
+
+
+ cursor is opened still the execution of PrepFetch or PrepExecute ended
+
+
+
+
+ meta data of a Column
+
+ .. note:: the encoding used for the different ``bytes`` fields in the meta data is externally
+ controlled.
+ .. seealso:: https://dev.mysql.com/doc/refman/8.0/en/charset-connection.html
+
+ .. note::
+ The server may not set the ``original_{table|name}`` fields if they are equal to the plain
+ ``{table|name}`` field.
+
+ A client has to reconstruct it like::
+
+ if .original_name is empty and .name is not empty:
+ .original_name = .name
+
+ if .original_table is empty and .table is not empty:
+ .original_table = .table
+
+ .. note::
+ ``compact metadata format`` can be requested by the client. In that case only ``.type`` is set and
+ all other fields are empty.
+
+ :param type:
+ .. table:: Expected Datatype of Mysqlx.Resultset.Row per SQL Type for non NULL values
+
+ ================= ============ ======= ========== ====== ========
+ SQL Type .type .length .frac_dig .flags .charset
+ ================= ============ ======= ========== ====== ========
+ TINY SINT x
+ TINY UNSIGNED UINT x x
+ SHORT SINT x
+ SHORT UNSIGNED UINT x x
+ INT24 SINT x
+ INT24 UNSIGNED UINT x x
+ INT SINT x
+ INT UNSIGNED UINT x x
+ LONGLONG SINT x
+ LONGLONG UNSIGNED UINT x x
+ DOUBLE DOUBLE x x x
+ FLOAT FLOAT x x x
+ DECIMAL DECIMAL x x x
+ VARCHAR,CHAR,... BYTES x x x
+ GEOMETRY BYTES
+ TIME TIME x
+ DATE DATETIME x
+ DATETIME DATETIME x
+ YEAR UINT x x
+ TIMESTAMP DATETIME x
+ SET SET x
+ ENUM ENUM x
+ NULL BYTES
+ BIT BIT x
+ ================= ============ ======= ========== ====== ========
+
+ .. note:: the SQL "NULL" value is sent as an empty field value in :protobuf:msg:`Mysqlx.Resultset::Row`
+ .. seealso:: protobuf encoding of primitive datatypes are decribed in https://developers.google.com/protocol-buffers/docs/encoding
+
+ SINT
+
+ ``.length``
+ maximum number of displayable decimal digits (including minus sign) of the type
+
+ .. note::
+ valid range is 0-255, but usually you'll see 1-20
+
+ =============== ==
+ SQL Type max digits per type
+ =============== ==
+ TINY SIGNED 4
+ SHORT SIGNED 6
+ INT24 SIGNED 8
+ INT SIGNED 11
+ LONGLONG SIGNED 20
+ =============== ==
+
+ .. seealso:: definition of ``M`` in https://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html
+
+ ``value``
+ variable length encoded signed 64 integer
+
+ UINT
+
+ ``.flags & 1`` (zerofill)
+ the client has to left pad with 0's up to .length
+
+ ``.length``
+ maximum number of displayable decimal digits of the type
+
+ .. note::
+ valid range is 0-255, but usually you'll see 1-20
+
+ ================= ==
+ SQL Type max digits per type
+ ================= ==
+ TINY UNSIGNED 3
+ SHORT UNSIGNED 5
+ INT24 UNSIGNED 8
+ INT UNSIGNED 10
+ LONGLONG UNSIGNED 20
+ ================= ==
+
+ .. seealso:: definition of ``M`` in https://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html
+
+ ``value``
+ variable length encoded unsigned 64 integer
+
+ BIT
+
+ ``.length``
+ maximum number of displayable binary digits
+
+ .. note:: valid range for M of the ``BIT`` type is 1 - 64
+ .. seealso:: https://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html
+
+ ``value``
+ variable length encoded unsigned 64 integer
+
+ DOUBLE
+
+ ``.length``
+ maximum number of displayable decimal digits (including the decimal point and ``.fractional_digits``)
+
+ ``.fractional_digits``
+ maximum number of displayable decimal digits following the decimal point
+
+ ``value``
+ encoded as Protobuf's 'double'
+
+ FLOAT
+
+ ``.length``
+ maximum number of displayable decimal digits (including the decimal point and ``.fractional_digits``)
+
+ ``.fractional_digits``
+ maximum number of displayable decimal digits following the decimal point
+
+ ``value``
+ encoded as Protobuf's 'float'
+
+ BYTES, ENUM
+ BYTES is used for all opaque byte strings that may have a charset
+
+ * TINYBLOB, BLOB, MEDIUMBLOB, LONGBLOB
+ * TINYTEXT, TEXT, MEDIUMTEXT, LONGTEXT
+ * VARCHAR, VARBINARY
+ * CHAR, BINARY
+ * ENUM
+
+ ``.length``
+ the maximum length of characters of the underlying type
+
+ ``.flags & 1`` (rightpad)
+ if the length of the field is less than ``.length``, the receiver is
+ supposed to add padding characters to the right end of the string.
+ If the ``.charset`` is "binary", the padding character is ``0x00``,
+ otherwise it is a space character as defined by that character set.
+
+ ============= ======= ======== =======
+ SQL Type .length .charset .flags
+ ============= ======= ======== =======
+ TINYBLOB 256 binary
+ BLOB 65535 binary
+ VARCHAR(32) 32 utf8
+ VARBINARY(32) 32 utf8_bin
+ BINARY(32) 32 binary rightpad
+ CHAR(32) 32 utf8 rightpad
+ ============= ======= ======== =======
+
+ ``value``
+ sequence of bytes with added one extra '\0' byte at the end. To obtain the
+ original string, the extra '\0' should be removed.
+ .. note:: the length of the string can be acquired with protobuf's field length() method
+ length of sequence-of-bytes = length-of-field - 1
+ .. note:: the extra byte allows to distinguish between a NULL and empty byte sequence
+
+ TIME
+ A time value.
+
+ ``value``
+ the following bytes sequence:
+
+ ``| negate [ | hour | [ | minutes | [ | seconds | [ | useconds | ]]]]``
+
+ * negate - one byte, should be one of: 0x00 for "+", 0x01 for "-"
+ * hour - optional variable length encoded unsigned64 value for the hour
+ * minutes - optional variable length encoded unsigned64 value for the minutes
+ * seconds - optional variable length encoded unsigned64 value for the seconds
+ * useconds - optional variable length encoded unsigned64 value for the microseconds
+
+ .. seealso:: protobuf encoding in https://developers.google.com/protocol-buffers/docs/encoding
+ .. note:: hour, minutes, seconds, useconds are optional if all the values to the right are 0
+
+ Example: 0x00 -> +00:00:00.000000
+
+ DATETIME
+ A date or date and time value.
+
+ ``value``
+ a sequence of variants, arranged as follows:
+
+ ``| year | month | day | [ | hour | [ | minutes | [ | seconds | [ | useconds | ]]]]``
+
+ * year - variable length encoded unsigned64 value for the year
+ * month - variable length encoded unsigned64 value for the month
+ * day - variable length encoded unsigned64 value for the day
+ * hour - optional variable length encoded unsigned64 value for the hour
+ * minutes - optional variable length encoded unsigned64 value for the minutes
+ * seconds - optional variable length encoded unsigned64 value for the seconds
+ * useconds - optional variable length encoded unsigned64 value for the microseconds
+
+ .. note:: hour, minutes, seconds, useconds are optional if all the values to the right are 0
+
+ ``.flags & 1`` (timestamp)
+
+ ============= =======
+ SQL Type .flags
+ ============= =======
+ DATETIME
+ TIMESTAMP 1
+
+ DECIMAL
+ An arbitrary length number. The number is encoded as a single byte
+ indicating the position of the decimal point followed by the Packed BCD
+ encoded number. Packed BCD is used to simplify conversion to and
+ from strings and other native arbitrary precision math datatypes.
+ .. seealso:: packed BCD in https://en.wikipedia.org/wiki/Binary-coded_decimal
+
+ ``.length``
+ maximum number of displayable decimal digits (*excluding* the decimal point and sign, but including ``.fractional_digits``)
+
+ .. note:: should be in the range of 1 - 65
+
+ ``.fractional_digits``
+ is the decimal digits to display out of length
+
+ .. note:: should be in the range of 0 - 30
+
+ ``value``
+ the following bytes sequence:
+
+ ``| scale | BCD | sign | [0x0] |``
+
+ * scale - 8bit scale value (number of decimal digit after the '.')
+ * BCD - BCD encoded digits (4 bits for each digit)
+ * sign - sign encoded on 4 bits (0xc = "+", 0xd = "-")
+ * 0x0 - last 4bits if length(digits) % 2 == 0
+
+ Example: x04 0x12 0x34 0x01 0xd0 -> -12.3401
+
+ SET
+ A list of strings representing a SET of values.
+
+ ``value``
+ A sequence of 0 or more of protobuf's bytes (length prepended octets) or one of
+ the special sequences with a predefined meaning listed below.
+
+ Example (length of the bytes array shown in brackets):
+ * ``[0]`` - the NULL value
+ * ``[1] 0x00`` - a set containing a blank string ''
+ * ``[1] 0x01`` - this would be an invalid value, but is to be treated as the empty set
+ * ``[2] 0x01 0x00`` - a set with a single item, which is the '\0' character
+ * ``[8] 0x03 F O O 0x03 B A R`` - a set with 2 items: FOO,BAR
+
+ :param name: name of the column
+ :param original_name: name of the column before an alias was applied
+ :param table: name of the table the column orginates from
+ :param original_table: name of the table the column orginates from before an alias was applied
+ :param schema: schema the column originates from
+ :param catalog:
+ catalog the schema originates from
+
+ .. note::
+ as there is current no support for catalogs in MySQL, don't expect this field to be set.
+ In the MySQL C/S protocol the field had the value ``def`` all the time.
+
+ :param fractional_digits: displayed factional decimal digits for floating point and fixed point numbers
+ :param length: maximum count of displayable characters of .type
+ :param flags:
+ ``.type`` specific flags
+
+ ======= ====== ===========
+ type value description
+ ======= ====== ===========
+ UINT 0x0001 zerofill
+ DOUBLE 0x0001 unsigned
+ FLOAT 0x0001 unsigned
+ DECIMAL 0x0001 unsigned
+ BYTES 0x0001 rightpad
+ ======= ====== ===========
+
+ ====== ================
+ value description
+ ====== ================
+ 0x0010 NOT_NULL
+ 0x0020 PRIMARY_KEY
+ 0x0040 UNIQUE_KEY
+ 0x0080 MULTIPLE_KEY
+ 0x0100 AUTO_INCREMENT
+ ====== ================
+
+ default: 0
+ :param content_type:
+ a hint about the higher-level encoding of a BYTES field, for more informations
+ please refer to Mysqlx.Resultset.ContentType_BYTES enum.
+
+
+
+ Field number for the "type" field.
+
+
+
+ datatype of the field in a row
+
+
+
+ Field number for the "name" field.
+
+
+ Field number for the "original_name" field.
+
+
+ Field number for the "table" field.
+
+
+ Field number for the "original_table" field.
+
+
+ Field number for the "schema" field.
+
+
+ Field number for the "catalog" field.
+
+
+ Field number for the "collation" field.
+
+
+ Field number for the "fractional_digits" field.
+
+
+ Field number for the "length" field.
+
+
+ Field number for the "flags" field.
+
+
+ Field number for the "content_type" field.
+
+
+ Container for nested types declared in the ColumnMetaData message type.
+
+
+
+ Row in a Resultset
+
+ a row is represented as a list of fields encoded as byte blobs.
+ Blob of size 0 represents the NULL value. Otherwise, if it contains at least
+ one byte, it encodes a non-null value of the field using encoding appropriate for the
+ type of the value given by ``ColumnMetadata``, as specified
+ in the :protobuf:msg:`Mysqlx.Resultset::ColumnMetaData` description.
+
+
+
+ Field number for the "field" field.
+
+
+ Holder for reflection information generated from mysqlx_session.proto
+
+
+ File descriptor for mysqlx_session.proto
+
+
+
+ the initial message send from the client to the server to start the
+ authentication proccess
+
+ :param mech_name: authentication mechanism name
+ :param auth_data: authentication data
+ :param initial_response: initial response
+ :Returns: :protobuf:msg:`Mysqlx.Session::AuthenticateContinue`
+
+
+
+ Field number for the "mech_name" field.
+
+
+
+ required
+
+
+
+ Field number for the "auth_data" field.
+
+
+ Field number for the "initial_response" field.
+
+
+
+ send by client or server after a :protobuf:msg:`Mysqlx.Session::AuthenticateStart` to
+ exchange more auth data
+
+ :param auth_data: authentication data
+ :Returns: :protobuf:msg:`Mysqlx.Session::AuthenticateContinue`
+
+
+
+ Field number for the "auth_data" field.
+
+
+
+ required
+
+
+
+
+ sent by the server after successful authentication
+
+ :param auth_data: authentication data
+
+
+
+ Field number for the "auth_data" field.
+
+
+
+ reset the current session
+ param keep_open: if is true the session will be reset, but stays authenticated.
+ otherwise, the session will be closed and needs to be authenticated again.
+
+ :Returns: :protobuf:msg:`Mysqlx::Ok`
+
+
+
+ Field number for the "keep_open" field.
+
+
+
+ close the current session
+
+ :Returns: :protobuf:msg:`Mysqlx::Ok`
+
+
+
+ Holder for reflection information generated from mysqlx_sql.proto
+
+
+ File descriptor for mysqlx_sql.proto
+
+
+
+ execute a statement in the given namespace
+
+ .. uml::
+
+ client -> server: StmtExecute
+ ... zero or more Resultsets ...
+ server --> client: StmtExecuteOk
+
+ Notices:
+ This message may generate a notice containing WARNINGs generated by its execution.
+ This message may generate a notice containing INFO messages generated by its execution.
+
+ :param namespace: namespace of the statement to be executed
+ :param stmt: statement that shall be executed.
+ :param args: values for wildcard replacements
+ :param compact_metadata: send only type information for :protobuf:msg:`Mysqlx.Resultset::ColumnMetadata`, skipping names and others
+ :returns:
+ * zero or one :protobuf:msg:`Mysqlx.Resultset::` followed by :protobuf:msg:`Mysqlx.Sql::StmtExecuteOk`
+
+
+
+ Field number for the "namespace" field.
+
+
+
+ optional [ default = "sql" ]
+
+
+
+ Field number for the "stmt" field.
+
+
+
+ required
+
+
+
+ Field number for the "args" field.
+
+
+ Field number for the "compact_metadata" field.
+
+
+
+ optional [ default = false ]
+
+
+
+
+ statement executed successful
+
+
+
+
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Newtonsoft.Json.dll b/SalesPacking_MES_API_Project/bin/Debug/Newtonsoft.Json.dll
new file mode 100644
index 0000000..7af125a
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/Newtonsoft.Json.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Newtonsoft.Json.xml b/SalesPacking_MES_API_Project/bin/Debug/Newtonsoft.Json.xml
new file mode 100644
index 0000000..008e0ca
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/Newtonsoft.Json.xml
@@ -0,0 +1,11305 @@
+
+
+
+ Newtonsoft.Json
+
+
+
+
+ Represents a BSON Oid (object id).
+
+
+
+
+ Gets or sets the value of the Oid.
+
+ The value of the Oid.
+
+
+
+ Initializes a new instance of the class.
+
+ The Oid value.
+
+
+
+ Represents a reader that provides fast, non-cached, forward-only access to serialized BSON data.
+
+
+
+
+ Gets or sets a value indicating whether binary data reading should be compatible with incorrect Json.NET 3.5 written binary.
+
+
+ true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether the root object will be read as a JSON array.
+
+
+ true if the root object will be read as a JSON array; otherwise, false.
+
+
+
+
+ Gets or sets the used when reading values from BSON.
+
+ The used when reading values from BSON.
+
+
+
+ Initializes a new instance of the class.
+
+ The containing the BSON data to read.
+
+
+
+ Initializes a new instance of the class.
+
+ The containing the BSON data to read.
+
+
+
+ Initializes a new instance of the class.
+
+ The containing the BSON data to read.
+ if set to true the root object will be read as a JSON array.
+ The used when reading values from BSON.
+
+
+
+ Initializes a new instance of the class.
+
+ The containing the BSON data to read.
+ if set to true the root object will be read as a JSON array.
+ The used when reading values from BSON.
+
+
+
+ Reads the next JSON token from the underlying .
+
+
+ true if the next token was read successfully; false if there are no more tokens to read.
+
+
+
+
+ Changes the reader's state to .
+ If is set to true, the underlying is also closed.
+
+
+
+
+ Represents a writer that provides a fast, non-cached, forward-only way of generating BSON data.
+
+
+
+
+ Gets or sets the used when writing values to BSON.
+ When set to no conversion will occur.
+
+ The used when writing values to BSON.
+
+
+
+ Initializes a new instance of the class.
+
+ The to write to.
+
+
+
+ Initializes a new instance of the class.
+
+ The to write to.
+
+
+
+ Flushes whatever is in the buffer to the underlying and also flushes the underlying stream.
+
+
+
+
+ Writes the end.
+
+ The token.
+
+
+
+ Writes a comment /*...*/ containing the specified text.
+
+ Text to place inside the comment.
+
+
+
+ Writes the start of a constructor with the given name.
+
+ The name of the constructor.
+
+
+
+ Writes raw JSON.
+
+ The raw JSON to write.
+
+
+
+ Writes raw JSON where a value is expected and updates the writer's state.
+
+ The raw JSON to write.
+
+
+
+ Writes the beginning of a JSON array.
+
+
+
+
+ Writes the beginning of a JSON object.
+
+
+
+
+ Writes the property name of a name/value pair on a JSON object.
+
+ The name of the property.
+
+
+
+ Closes this writer.
+ If is set to true, the underlying is also closed.
+ If is set to true, the JSON is auto-completed.
+
+
+
+
+ Writes a value.
+ An error will raised if the value cannot be written as a single JSON token.
+
+ The value to write.
+
+
+
+ Writes a null value.
+
+
+
+
+ Writes an undefined value.
+
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a [] value.
+
+ The [] value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a [] value that represents a BSON object id.
+
+ The Object ID value to write.
+
+
+
+ Writes a BSON regex.
+
+ The regex pattern.
+ The regex options.
+
+
+
+ Specifies how constructors are used when initializing objects during deserialization by the .
+
+
+
+
+ First attempt to use the public default constructor, then fall back to a single parameterized constructor, then to the non-public default constructor.
+
+
+
+
+ Json.NET will use a non-public default constructor before falling back to a parameterized constructor.
+
+
+
+
+ Converts a binary value to and from a base 64 string value.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Converts a to and from JSON and BSON.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Creates a custom object.
+
+ The object type to convert.
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Creates an object which will then be populated by the serializer.
+
+ Type of the object.
+ The created object.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Gets a value indicating whether this can write JSON.
+
+
+ true if this can write JSON; otherwise, false.
+
+
+
+
+ Converts a to and from JSON.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified value type.
+
+ Type of the value.
+
+ true if this instance can convert the specified value type; otherwise, false.
+
+
+
+
+ Converts a to and from JSON.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified value type.
+
+ Type of the value.
+
+ true if this instance can convert the specified value type; otherwise, false.
+
+
+
+
+ Provides a base class for converting a to and from JSON.
+
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Converts a F# discriminated union type to and from JSON.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Converts an Entity Framework to and from JSON.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Converts an to and from JSON.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Gets a value indicating whether this can write JSON.
+
+
+ true if this can write JSON; otherwise, false.
+
+
+
+
+ Converts a to and from the ISO 8601 date format (e.g. "2008-04-12T12:53Z").
+
+
+
+
+ Gets or sets the date time styles used when converting a date to and from JSON.
+
+ The date time styles used when converting a date to and from JSON.
+
+
+
+ Gets or sets the date time format used when converting a date to and from JSON.
+
+ The date time format used when converting a date to and from JSON.
+
+
+
+ Gets or sets the culture used when converting a date to and from JSON.
+
+ The culture used when converting a date to and from JSON.
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Converts a to and from a JavaScript Date constructor (e.g. new Date(52231943)).
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing property value of the JSON that is being converted.
+ The calling serializer.
+ The object value.
+
+
+
+ Converts a to and from JSON.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Converts a to and from JSON and BSON.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Converts an to and from its name string value.
+
+
+
+
+ Gets or sets a value indicating whether the written enum text should be camel case.
+ The default value is false.
+
+ true if the written enum text will be camel case; otherwise, false.
+
+
+
+ Gets or sets the naming strategy used to resolve how enum text is written.
+
+ The naming strategy used to resolve how enum text is written.
+
+
+
+ Gets or sets a value indicating whether integer values are allowed when serializing and deserializing.
+ The default value is true.
+
+ true if integers are allowed when serializing and deserializing; otherwise, false.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ true if the written enum text will be camel case; otherwise, false.
+
+
+
+ Initializes a new instance of the class.
+
+ The naming strategy used to resolve how enum text is written.
+ true if integers are allowed when serializing and deserializing; otherwise, false.
+
+
+
+ Initializes a new instance of the class.
+
+ The of the used to write enum text.
+
+
+
+ Initializes a new instance of the class.
+
+ The of the used to write enum text.
+
+ The parameter list to use when constructing the described by .
+ If null, the default constructor is used.
+ When non-null, there must be a constructor defined in the that exactly matches the number,
+ order, and type of these parameters.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The of the used to write enum text.
+
+ The parameter list to use when constructing the described by .
+ If null, the default constructor is used.
+ When non-null, there must be a constructor defined in the that exactly matches the number,
+ order, and type of these parameters.
+
+ true if integers are allowed when serializing and deserializing; otherwise, false.
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Converts a to and from Unix epoch time
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing property value of the JSON that is being converted.
+ The calling serializer.
+ The object value.
+
+
+
+ Converts a to and from a string (e.g. "1.2.3.4").
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing property value of the JSON that is being converted.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Converts XML to and from JSON.
+
+
+
+
+ Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produced multiple root elements.
+
+ The name of the deserialized root element.
+
+
+
+ Gets or sets a value to indicate whether to write the Json.NET array attribute.
+ This attribute helps preserve arrays when converting the written XML back to JSON.
+
+ true if the array attribute is written to the XML; otherwise, false.
+
+
+
+ Gets or sets a value indicating whether to write the root JSON object.
+
+ true if the JSON root object is omitted; otherwise, false.
+
+
+
+ Gets or sets a value indicating whether to encode special characters when converting JSON to XML.
+ If true, special characters like ':', '@', '?', '#' and '$' in JSON property names aren't used to specify
+ XML namespaces, attributes or processing directives. Instead special characters are encoded and written
+ as part of the XML element name.
+
+ true if special characters are encoded; otherwise, false.
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The calling serializer.
+ The value.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Checks if the is a namespace attribute.
+
+ Attribute name to test.
+ The attribute name prefix if it has one, otherwise an empty string.
+ true if attribute name is for a namespace attribute, otherwise false.
+
+
+
+ Determines whether this instance can convert the specified value type.
+
+ Type of the value.
+
+ true if this instance can convert the specified value type; otherwise, false.
+
+
+
+
+ Specifies how dates are formatted when writing JSON text.
+
+
+
+
+ Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".
+
+
+
+
+ Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".
+
+
+
+
+ Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.
+
+
+
+
+ Date formatted strings are not parsed to a date type and are read as strings.
+
+
+
+
+ Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to .
+
+
+
+
+ Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to .
+
+
+
+
+ Specifies how to treat the time value when converting between string and .
+
+
+
+
+ Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time.
+
+
+
+
+ Treat as a UTC. If the object represents a local time, it is converted to a UTC.
+
+
+
+
+ Treat as a local time if a is being converted to a string.
+ If a string is being converted to , convert to a local time if a time zone is specified.
+
+
+
+
+ Time zone information should be preserved when converting.
+
+
+
+
+ The default JSON name table implementation.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets a string containing the same characters as the specified range of characters in the given array.
+
+ The character array containing the name to find.
+ The zero-based index into the array specifying the first character of the name.
+ The number of characters in the name.
+ A string containing the same characters as the specified range of characters in the given array.
+
+
+
+ Adds the specified string into name table.
+
+ The string to add.
+ This method is not thread-safe.
+ The resolved string.
+
+
+
+ Specifies default value handling options for the .
+
+
+
+
+
+
+
+
+ Include members where the member value is the same as the member's default value when serializing objects.
+ Included members are written to JSON. Has no effect when deserializing.
+
+
+
+
+ Ignore members where the member value is the same as the member's default value when serializing objects
+ so that it is not written to JSON.
+ This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers,
+ decimals and floating point numbers; and false for booleans). The default value ignored can be changed by
+ placing the on the property.
+
+
+
+
+ Members with a default value but no JSON will be set to their default value when deserializing.
+
+
+
+
+ Ignore members where the member value is the same as the member's default value when serializing objects
+ and set members to their default value when deserializing.
+
+
+
+
+ Specifies float format handling options when writing special floating point numbers, e.g. ,
+ and with .
+
+
+
+
+ Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity".
+
+
+
+
+ Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity.
+ Note that this will produce non-valid JSON.
+
+
+
+
+ Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a of property.
+
+
+
+
+ Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
+
+
+
+
+ Floating point numbers are parsed to .
+
+
+
+
+ Floating point numbers are parsed to .
+
+
+
+
+ Specifies formatting options for the .
+
+
+
+
+ No special formatting is applied. This is the default.
+
+
+
+
+ Causes child objects to be indented according to the and settings.
+
+
+
+
+ Provides an interface for using pooled arrays.
+
+ The array type content.
+
+
+
+ Rent an array from the pool. This array must be returned when it is no longer needed.
+
+ The minimum required length of the array. The returned array may be longer.
+ The rented array from the pool. This array must be returned when it is no longer needed.
+
+
+
+ Return an array to the pool.
+
+ The array that is being returned.
+
+
+
+ Provides an interface to enable a class to return line and position information.
+
+
+
+
+ Gets a value indicating whether the class can return line information.
+
+
+ true if and can be provided; otherwise, false.
+
+
+
+
+ Gets the current line number.
+
+ The current line number or 0 if no line information is available (for example, when returns false).
+
+
+
+ Gets the current line position.
+
+ The current line position or 0 if no line information is available (for example, when returns false).
+
+
+
+ Instructs the how to serialize the collection.
+
+
+
+
+ Gets or sets a value indicating whether null items are allowed in the collection.
+
+ true if null items are allowed in the collection; otherwise, false.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class with a flag indicating whether the array can contain null items.
+
+ A flag indicating whether the array can contain null items.
+
+
+
+ Initializes a new instance of the class with the specified container Id.
+
+ The container Id.
+
+
+
+ Instructs the to use the specified constructor when deserializing that object.
+
+
+
+
+ Instructs the how to serialize the object.
+
+
+
+
+ Gets or sets the id.
+
+ The id.
+
+
+
+ Gets or sets the title.
+
+ The title.
+
+
+
+ Gets or sets the description.
+
+ The description.
+
+
+
+ Gets or sets the collection's items converter.
+
+ The collection's items converter.
+
+
+
+ The parameter list to use when constructing the described by .
+ If null, the default constructor is used.
+ When non-null, there must be a constructor defined in the that exactly matches the number,
+ order, and type of these parameters.
+
+
+
+ [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
+
+
+
+
+
+ Gets or sets the of the .
+
+ The of the .
+
+
+
+ The parameter list to use when constructing the described by .
+ If null, the default constructor is used.
+ When non-null, there must be a constructor defined in the that exactly matches the number,
+ order, and type of these parameters.
+
+
+
+ [JsonContainer(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })]
+
+
+
+
+
+ Gets or sets a value that indicates whether to preserve object references.
+
+
+ true to keep object reference; otherwise, false. The default is false.
+
+
+
+
+ Gets or sets a value that indicates whether to preserve collection's items references.
+
+
+ true to keep collection's items object references; otherwise, false. The default is false.
+
+
+
+
+ Gets or sets the reference loop handling used when serializing the collection's items.
+
+ The reference loop handling.
+
+
+
+ Gets or sets the type name handling used when serializing the collection's items.
+
+ The type name handling.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class with the specified container Id.
+
+ The container Id.
+
+
+
+ Provides methods for converting between .NET types and JSON types.
+
+
+
+
+
+
+
+ Gets or sets a function that creates default .
+ Default settings are automatically used by serialization methods on ,
+ and and on .
+ To serialize without using any default settings create a with
+ .
+
+
+
+
+ Represents JavaScript's boolean value true as a string. This field is read-only.
+
+
+
+
+ Represents JavaScript's boolean value false as a string. This field is read-only.
+
+
+
+
+ Represents JavaScript's null as a string. This field is read-only.
+
+
+
+
+ Represents JavaScript's undefined as a string. This field is read-only.
+
+
+
+
+ Represents JavaScript's positive infinity as a string. This field is read-only.
+
+
+
+
+ Represents JavaScript's negative infinity as a string. This field is read-only.
+
+
+
+
+ Represents JavaScript's NaN as a string. This field is read-only.
+
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation using the specified.
+
+ The value to convert.
+ The format the date will be converted to.
+ The time zone handling when the date is converted to a string.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation using the specified.
+
+ The value to convert.
+ The format the date will be converted to.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ The string delimiter character.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ The string delimiter character.
+ The string escape handling.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Serializes the specified object to a JSON string.
+
+ The object to serialize.
+ A JSON string representation of the object.
+
+
+
+ Serializes the specified object to a JSON string using formatting.
+
+ The object to serialize.
+ Indicates how the output should be formatted.
+
+ A JSON string representation of the object.
+
+
+
+
+ Serializes the specified object to a JSON string using a collection of .
+
+ The object to serialize.
+ A collection of converters used while serializing.
+ A JSON string representation of the object.
+
+
+
+ Serializes the specified object to a JSON string using formatting and a collection of .
+
+ The object to serialize.
+ Indicates how the output should be formatted.
+ A collection of converters used while serializing.
+ A JSON string representation of the object.
+
+
+
+ Serializes the specified object to a JSON string using .
+
+ The object to serialize.
+ The used to serialize the object.
+ If this is null, default serialization settings will be used.
+
+ A JSON string representation of the object.
+
+
+
+
+ Serializes the specified object to a JSON string using a type, formatting and .
+
+ The object to serialize.
+ The used to serialize the object.
+ If this is null, default serialization settings will be used.
+
+ The type of the value being serialized.
+ This parameter is used when is to write out the type name if the type of the value does not match.
+ Specifying the type is optional.
+
+
+ A JSON string representation of the object.
+
+
+
+
+ Serializes the specified object to a JSON string using formatting and .
+
+ The object to serialize.
+ Indicates how the output should be formatted.
+ The used to serialize the object.
+ If this is null, default serialization settings will be used.
+
+ A JSON string representation of the object.
+
+
+
+
+ Serializes the specified object to a JSON string using a type, formatting and .
+
+ The object to serialize.
+ Indicates how the output should be formatted.
+ The used to serialize the object.
+ If this is null, default serialization settings will be used.
+
+ The type of the value being serialized.
+ This parameter is used when is to write out the type name if the type of the value does not match.
+ Specifying the type is optional.
+
+
+ A JSON string representation of the object.
+
+
+
+
+ Deserializes the JSON to a .NET object.
+
+ The JSON to deserialize.
+ The deserialized object from the JSON string.
+
+
+
+ Deserializes the JSON to a .NET object using .
+
+ The JSON to deserialize.
+
+ The used to deserialize the object.
+ If this is null, default serialization settings will be used.
+
+ The deserialized object from the JSON string.
+
+
+
+ Deserializes the JSON to the specified .NET type.
+
+ The JSON to deserialize.
+ The of object being deserialized.
+ The deserialized object from the JSON string.
+
+
+
+ Deserializes the JSON to the specified .NET type.
+
+ The type of the object to deserialize to.
+ The JSON to deserialize.
+ The deserialized object from the JSON string.
+
+
+
+ Deserializes the JSON to the given anonymous type.
+
+
+ The anonymous type to deserialize to. This can't be specified
+ traditionally and must be inferred from the anonymous type passed
+ as a parameter.
+
+ The JSON to deserialize.
+ The anonymous type object.
+ The deserialized anonymous type from the JSON string.
+
+
+
+ Deserializes the JSON to the given anonymous type using .
+
+
+ The anonymous type to deserialize to. This can't be specified
+ traditionally and must be inferred from the anonymous type passed
+ as a parameter.
+
+ The JSON to deserialize.
+ The anonymous type object.
+
+ The used to deserialize the object.
+ If this is null, default serialization settings will be used.
+
+ The deserialized anonymous type from the JSON string.
+
+
+
+ Deserializes the JSON to the specified .NET type using a collection of .
+
+ The type of the object to deserialize to.
+ The JSON to deserialize.
+ Converters to use while deserializing.
+ The deserialized object from the JSON string.
+
+
+
+ Deserializes the JSON to the specified .NET type using .
+
+ The type of the object to deserialize to.
+ The object to deserialize.
+
+ The used to deserialize the object.
+ If this is null, default serialization settings will be used.
+
+ The deserialized object from the JSON string.
+
+
+
+ Deserializes the JSON to the specified .NET type using a collection of .
+
+ The JSON to deserialize.
+ The type of the object to deserialize.
+ Converters to use while deserializing.
+ The deserialized object from the JSON string.
+
+
+
+ Deserializes the JSON to the specified .NET type using .
+
+ The JSON to deserialize.
+ The type of the object to deserialize to.
+
+ The used to deserialize the object.
+ If this is null, default serialization settings will be used.
+
+ The deserialized object from the JSON string.
+
+
+
+ Populates the object with values from the JSON string.
+
+ The JSON to populate values from.
+ The target object to populate values onto.
+
+
+
+ Populates the object with values from the JSON string using .
+
+ The JSON to populate values from.
+ The target object to populate values onto.
+
+ The used to deserialize the object.
+ If this is null, default serialization settings will be used.
+
+
+
+
+ Serializes the to a JSON string.
+
+ The node to serialize.
+ A JSON string of the .
+
+
+
+ Serializes the to a JSON string using formatting.
+
+ The node to serialize.
+ Indicates how the output should be formatted.
+ A JSON string of the .
+
+
+
+ Serializes the to a JSON string using formatting and omits the root object if is true.
+
+ The node to serialize.
+ Indicates how the output should be formatted.
+ Omits writing the root object.
+ A JSON string of the .
+
+
+
+ Deserializes the from a JSON string.
+
+ The JSON string.
+ The deserialized .
+
+
+
+ Deserializes the from a JSON string nested in a root element specified by .
+
+ The JSON string.
+ The name of the root element to append when deserializing.
+ The deserialized .
+
+
+
+ Deserializes the from a JSON string nested in a root element specified by
+ and writes a Json.NET array attribute for collections.
+
+ The JSON string.
+ The name of the root element to append when deserializing.
+
+ A value to indicate whether to write the Json.NET array attribute.
+ This attribute helps preserve arrays when converting the written XML back to JSON.
+
+ The deserialized .
+
+
+
+ Deserializes the from a JSON string nested in a root element specified by ,
+ writes a Json.NET array attribute for collections, and encodes special characters.
+
+ The JSON string.
+ The name of the root element to append when deserializing.
+
+ A value to indicate whether to write the Json.NET array attribute.
+ This attribute helps preserve arrays when converting the written XML back to JSON.
+
+
+ A value to indicate whether to encode special characters when converting JSON to XML.
+ If true, special characters like ':', '@', '?', '#' and '$' in JSON property names aren't used to specify
+ XML namespaces, attributes or processing directives. Instead special characters are encoded and written
+ as part of the XML element name.
+
+ The deserialized .
+
+
+
+ Serializes the to a JSON string.
+
+ The node to convert to JSON.
+ A JSON string of the .
+
+
+
+ Serializes the to a JSON string using formatting.
+
+ The node to convert to JSON.
+ Indicates how the output should be formatted.
+ A JSON string of the .
+
+
+
+ Serializes the to a JSON string using formatting and omits the root object if is true.
+
+ The node to serialize.
+ Indicates how the output should be formatted.
+ Omits writing the root object.
+ A JSON string of the .
+
+
+
+ Deserializes the from a JSON string.
+
+ The JSON string.
+ The deserialized .
+
+
+
+ Deserializes the from a JSON string nested in a root element specified by .
+
+ The JSON string.
+ The name of the root element to append when deserializing.
+ The deserialized .
+
+
+
+ Deserializes the from a JSON string nested in a root element specified by
+ and writes a Json.NET array attribute for collections.
+
+ The JSON string.
+ The name of the root element to append when deserializing.
+
+ A value to indicate whether to write the Json.NET array attribute.
+ This attribute helps preserve arrays when converting the written XML back to JSON.
+
+ The deserialized .
+
+
+
+ Deserializes the from a JSON string nested in a root element specified by ,
+ writes a Json.NET array attribute for collections, and encodes special characters.
+
+ The JSON string.
+ The name of the root element to append when deserializing.
+
+ A value to indicate whether to write the Json.NET array attribute.
+ This attribute helps preserve arrays when converting the written XML back to JSON.
+
+
+ A value to indicate whether to encode special characters when converting JSON to XML.
+ If true, special characters like ':', '@', '?', '#' and '$' in JSON property names aren't used to specify
+ XML namespaces, attributes or processing directives. Instead special characters are encoded and written
+ as part of the XML element name.
+
+ The deserialized .
+
+
+
+ Converts an object to and from JSON.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Gets a value indicating whether this can read JSON.
+
+ true if this can read JSON; otherwise, false.
+
+
+
+ Gets a value indicating whether this can write JSON.
+
+ true if this can write JSON; otherwise, false.
+
+
+
+ Converts an object to and from JSON.
+
+ The object type to convert.
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read. If there is no existing value then null will be used.
+ The existing value has a value.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Instructs the to use the specified when serializing the member or class.
+
+
+
+
+ Gets the of the .
+
+ The of the .
+
+
+
+ The parameter list to use when constructing the described by .
+ If null, the default constructor is used.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Type of the .
+
+
+
+ Initializes a new instance of the class.
+
+ Type of the .
+ Parameter list to use when constructing the . Can be null.
+
+
+
+ Represents a collection of .
+
+
+
+
+ Instructs the how to serialize the collection.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class with the specified container Id.
+
+ The container Id.
+
+
+
+ The exception thrown when an error occurs during JSON serialization or deserialization.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class
+ with a specified error message.
+
+ The error message that explains the reason for the exception.
+
+
+
+ Initializes a new instance of the class
+ with a specified error message and a reference to the inner exception that is the cause of this exception.
+
+ The error message that explains the reason for the exception.
+ The exception that is the cause of the current exception, or null if no inner exception is specified.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ Instructs the to deserialize properties with no matching class member into the specified collection
+ and write values during serialization.
+
+
+
+
+ Gets or sets a value that indicates whether to write extension data when serializing the object.
+
+
+ true to write extension data when serializing the object; otherwise, false. The default is true.
+
+
+
+
+ Gets or sets a value that indicates whether to read extension data when deserializing the object.
+
+
+ true to read extension data when deserializing the object; otherwise, false. The default is true.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Instructs the not to serialize the public field or public read/write property value.
+
+
+
+
+ Base class for a table of atomized string objects.
+
+
+
+
+ Gets a string containing the same characters as the specified range of characters in the given array.
+
+ The character array containing the name to find.
+ The zero-based index into the array specifying the first character of the name.
+ The number of characters in the name.
+ A string containing the same characters as the specified range of characters in the given array.
+
+
+
+ Instructs the how to serialize the object.
+
+
+
+
+ Gets or sets the member serialization.
+
+ The member serialization.
+
+
+
+ Gets or sets the missing member handling used when deserializing this object.
+
+ The missing member handling.
+
+
+
+ Gets or sets how the object's properties with null values are handled during serialization and deserialization.
+
+ How the object's properties with null values are handled during serialization and deserialization.
+
+
+
+ Gets or sets a value that indicates whether the object's properties are required.
+
+
+ A value indicating whether the object's properties are required.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class with the specified member serialization.
+
+ The member serialization.
+
+
+
+ Initializes a new instance of the class with the specified container Id.
+
+ The container Id.
+
+
+
+ Instructs the to always serialize the member with the specified name.
+
+
+
+
+ Gets or sets the type used when serializing the property's collection items.
+
+ The collection's items type.
+
+
+
+ The parameter list to use when constructing the described by .
+ If null, the default constructor is used.
+ When non-null, there must be a constructor defined in the that exactly matches the number,
+ order, and type of these parameters.
+
+
+
+ [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })]
+
+
+
+
+
+ Gets or sets the of the .
+
+ The of the .
+
+
+
+ The parameter list to use when constructing the described by .
+ If null, the default constructor is used.
+ When non-null, there must be a constructor defined in the that exactly matches the number,
+ order, and type of these parameters.
+
+
+
+ [JsonProperty(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })]
+
+
+
+
+
+ Gets or sets the null value handling used when serializing this property.
+
+ The null value handling.
+
+
+
+ Gets or sets the default value handling used when serializing this property.
+
+ The default value handling.
+
+
+
+ Gets or sets the reference loop handling used when serializing this property.
+
+ The reference loop handling.
+
+
+
+ Gets or sets the object creation handling used when deserializing this property.
+
+ The object creation handling.
+
+
+
+ Gets or sets the type name handling used when serializing this property.
+
+ The type name handling.
+
+
+
+ Gets or sets whether this property's value is serialized as a reference.
+
+ Whether this property's value is serialized as a reference.
+
+
+
+ Gets or sets the order of serialization of a member.
+
+ The numeric order of serialization.
+
+
+
+ Gets or sets a value indicating whether this property is required.
+
+
+ A value indicating whether this property is required.
+
+
+
+
+ Gets or sets the name of the property.
+
+ The name of the property.
+
+
+
+ Gets or sets the reference loop handling used when serializing the property's collection items.
+
+ The collection's items reference loop handling.
+
+
+
+ Gets or sets the type name handling used when serializing the property's collection items.
+
+ The collection's items type name handling.
+
+
+
+ Gets or sets whether this property's collection items are serialized as a reference.
+
+ Whether this property's collection items are serialized as a reference.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class with the specified name.
+
+ Name of the property.
+
+
+
+ Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
+
+
+
+
+ Asynchronously reads the next JSON token from the source.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous read. The
+ property returns true if the next token was read successfully; false if there are no more tokens to read.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously skips the children of the current token.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously reads the next JSON token from the source as a of .
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous read. The
+ property returns the of . This result will be null at the end of an array.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously reads the next JSON token from the source as a [].
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous read. The
+ property returns the []. This result will be null at the end of an array.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously reads the next JSON token from the source as a of .
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous read. The
+ property returns the of . This result will be null at the end of an array.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously reads the next JSON token from the source as a of .
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous read. The
+ property returns the of . This result will be null at the end of an array.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously reads the next JSON token from the source as a of .
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous read. The
+ property returns the of . This result will be null at the end of an array.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously reads the next JSON token from the source as a of .
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous read. The
+ property returns the of . This result will be null at the end of an array.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously reads the next JSON token from the source as a of .
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous read. The
+ property returns the of . This result will be null at the end of an array.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously reads the next JSON token from the source as a .
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous read. The
+ property returns the . This result will be null at the end of an array.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Specifies the state of the reader.
+
+
+
+
+ A read method has not been called.
+
+
+
+
+ The end of the file has been reached successfully.
+
+
+
+
+ Reader is at a property.
+
+
+
+
+ Reader is at the start of an object.
+
+
+
+
+ Reader is in an object.
+
+
+
+
+ Reader is at the start of an array.
+
+
+
+
+ Reader is in an array.
+
+
+
+
+ The method has been called.
+
+
+
+
+ Reader has just read a value.
+
+
+
+
+ Reader is at the start of a constructor.
+
+
+
+
+ Reader is in a constructor.
+
+
+
+
+ An error occurred that prevents the read operation from continuing.
+
+
+
+
+ The end of the file has been reached successfully.
+
+
+
+
+ Gets the current reader state.
+
+ The current reader state.
+
+
+
+ Gets or sets a value indicating whether the source should be closed when this reader is closed.
+
+
+ true to close the source when this reader is closed; otherwise false. The default is true.
+
+
+
+
+ Gets or sets a value indicating whether multiple pieces of JSON content can
+ be read from a continuous stream without erroring.
+
+
+ true to support reading multiple pieces of JSON content; otherwise false.
+ The default is false.
+
+
+
+
+ Gets the quotation mark character used to enclose the value of a string.
+
+
+
+
+ Gets or sets how time zones are handled when reading JSON.
+
+
+
+
+ Gets or sets how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
+
+
+
+
+ Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
+
+
+
+
+ Gets or sets how custom date formatted strings are parsed when reading JSON.
+
+
+
+
+ Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a .
+ A null value means there is no maximum.
+ The default value is 128.
+
+
+
+
+ Gets the type of the current JSON token.
+
+
+
+
+ Gets the text value of the current JSON token.
+
+
+
+
+ Gets the .NET type for the current JSON token.
+
+
+
+
+ Gets the depth of the current token in the JSON document.
+
+ The depth of the current token in the JSON document.
+
+
+
+ Gets the path of the current JSON token.
+
+
+
+
+ Gets or sets the culture used when reading JSON. Defaults to .
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Reads the next JSON token from the source.
+
+ true if the next token was read successfully; false if there are no more tokens to read.
+
+
+
+ Reads the next JSON token from the source as a of .
+
+ A of . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the source as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the source as a [].
+
+ A [] or null if the next JSON token is null. This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the source as a of .
+
+ A of . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the source as a of .
+
+ A of . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the source as a of .
+
+ A of . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the source as a of .
+
+ A of . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the source as a of .
+
+ A of . This method will return null at the end of an array.
+
+
+
+ Skips the children of the current token.
+
+
+
+
+ Sets the current token.
+
+ The new token.
+
+
+
+ Sets the current token and value.
+
+ The new token.
+ The value.
+
+
+
+ Sets the current token and value.
+
+ The new token.
+ The value.
+ A flag indicating whether the position index inside an array should be updated.
+
+
+
+ Sets the state based on current token type.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources.
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Changes the reader's state to .
+ If is set to true, the source is also closed.
+
+
+
+
+ The exception thrown when an error occurs while reading JSON text.
+
+
+
+
+ Gets the line number indicating where the error occurred.
+
+ The line number indicating where the error occurred.
+
+
+
+ Gets the line position indicating where the error occurred.
+
+ The line position indicating where the error occurred.
+
+
+
+ Gets the path to the JSON where the error occurred.
+
+ The path to the JSON where the error occurred.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class
+ with a specified error message.
+
+ The error message that explains the reason for the exception.
+
+
+
+ Initializes a new instance of the class
+ with a specified error message and a reference to the inner exception that is the cause of this exception.
+
+ The error message that explains the reason for the exception.
+ The exception that is the cause of the current exception, or null if no inner exception is specified.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ Initializes a new instance of the class
+ with a specified error message, JSON path, line number, line position, and a reference to the inner exception that is the cause of this exception.
+
+ The error message that explains the reason for the exception.
+ The path to the JSON where the error occurred.
+ The line number indicating where the error occurred.
+ The line position indicating where the error occurred.
+ The exception that is the cause of the current exception, or null if no inner exception is specified.
+
+
+
+ Instructs the to always serialize the member, and to require that the member has a value.
+
+
+
+
+ The exception thrown when an error occurs during JSON serialization or deserialization.
+
+
+
+
+ Gets the line number indicating where the error occurred.
+
+ The line number indicating where the error occurred.
+
+
+
+ Gets the line position indicating where the error occurred.
+
+ The line position indicating where the error occurred.
+
+
+
+ Gets the path to the JSON where the error occurred.
+
+ The path to the JSON where the error occurred.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class
+ with a specified error message.
+
+ The error message that explains the reason for the exception.
+
+
+
+ Initializes a new instance of the class
+ with a specified error message and a reference to the inner exception that is the cause of this exception.
+
+ The error message that explains the reason for the exception.
+ The exception that is the cause of the current exception, or null if no inner exception is specified.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ Initializes a new instance of the class
+ with a specified error message, JSON path, line number, line position, and a reference to the inner exception that is the cause of this exception.
+
+ The error message that explains the reason for the exception.
+ The path to the JSON where the error occurred.
+ The line number indicating where the error occurred.
+ The line position indicating where the error occurred.
+ The exception that is the cause of the current exception, or null if no inner exception is specified.
+
+
+
+ Serializes and deserializes objects into and from the JSON format.
+ The enables you to control how objects are encoded into JSON.
+
+
+
+
+ Occurs when the errors during serialization and deserialization.
+
+
+
+
+ Gets or sets the used by the serializer when resolving references.
+
+
+
+
+ Gets or sets the used by the serializer when resolving type names.
+
+
+
+
+ Gets or sets the used by the serializer when resolving type names.
+
+
+
+
+ Gets or sets the used by the serializer when writing trace messages.
+
+ The trace writer.
+
+
+
+ Gets or sets the equality comparer used by the serializer when comparing references.
+
+ The equality comparer.
+
+
+
+ Gets or sets how type name writing and reading is handled by the serializer.
+ The default value is .
+
+
+ should be used with caution when your application deserializes JSON from an external source.
+ Incoming types should be validated with a custom
+ when deserializing with a value other than .
+
+
+
+
+ Gets or sets how a type name assembly is written and resolved by the serializer.
+ The default value is .
+
+ The type name assembly format.
+
+
+
+ Gets or sets how a type name assembly is written and resolved by the serializer.
+ The default value is .
+
+ The type name assembly format.
+
+
+
+ Gets or sets how object references are preserved by the serializer.
+ The default value is .
+
+
+
+
+ Gets or sets how reference loops (e.g. a class referencing itself) is handled.
+ The default value is .
+
+
+
+
+ Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
+ The default value is .
+
+
+
+
+ Gets or sets how null values are handled during serialization and deserialization.
+ The default value is .
+
+
+
+
+ Gets or sets how default values are handled during serialization and deserialization.
+ The default value is .
+
+
+
+
+ Gets or sets how objects are created during deserialization.
+ The default value is .
+
+ The object creation handling.
+
+
+
+ Gets or sets how constructors are used during deserialization.
+ The default value is .
+
+ The constructor handling.
+
+
+
+ Gets or sets how metadata properties are used during deserialization.
+ The default value is .
+
+ The metadata properties handling.
+
+
+
+ Gets a collection that will be used during serialization.
+
+ Collection that will be used during serialization.
+
+
+
+ Gets or sets the contract resolver used by the serializer when
+ serializing .NET objects to JSON and vice versa.
+
+
+
+
+ Gets or sets the used by the serializer when invoking serialization callback methods.
+
+ The context.
+
+
+
+ Indicates how JSON text output is formatted.
+ The default value is .
+
+
+
+
+ Gets or sets how dates are written to JSON text.
+ The default value is .
+
+
+
+
+ Gets or sets how time zones are handled during serialization and deserialization.
+ The default value is .
+
+
+
+
+ Gets or sets how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
+ The default value is .
+
+
+
+
+ Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
+ The default value is .
+
+
+
+
+ Gets or sets how special floating point numbers, e.g. ,
+ and ,
+ are written as JSON text.
+ The default value is .
+
+
+
+
+ Gets or sets how strings are escaped when writing JSON text.
+ The default value is .
+
+
+
+
+ Gets or sets how and values are formatted when writing JSON text,
+ and the expected date format when reading JSON text.
+ The default value is "yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK".
+
+
+
+
+ Gets or sets the culture used when reading JSON.
+ The default value is .
+
+
+
+
+ Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a .
+ A null value means there is no maximum.
+ The default value is 128.
+
+
+
+
+ Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
+ The default value is false.
+
+
+ true if there will be a check for additional JSON content after deserializing an object; otherwise, false.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Creates a new instance.
+ The will not use default settings
+ from .
+
+
+ A new instance.
+ The will not use default settings
+ from .
+
+
+
+
+ Creates a new instance using the specified .
+ The will not use default settings
+ from .
+
+ The settings to be applied to the .
+
+ A new instance using the specified .
+ The will not use default settings
+ from .
+
+
+
+
+ Creates a new instance.
+ The will use default settings
+ from .
+
+
+ A new instance.
+ The will use default settings
+ from .
+
+
+
+
+ Creates a new instance using the specified .
+ The will use default settings
+ from as well as the specified .
+
+ The settings to be applied to the .
+
+ A new instance using the specified .
+ The will use default settings
+ from as well as the specified .
+
+
+
+
+ Populates the JSON values onto the target object.
+
+ The that contains the JSON structure to read values from.
+ The target object to populate values onto.
+
+
+
+ Populates the JSON values onto the target object.
+
+ The that contains the JSON structure to read values from.
+ The target object to populate values onto.
+
+
+
+ Deserializes the JSON structure contained by the specified .
+
+ The that contains the JSON structure to deserialize.
+ The being deserialized.
+
+
+
+ Deserializes the JSON structure contained by the specified
+ into an instance of the specified type.
+
+ The containing the object.
+ The of object being deserialized.
+ The instance of being deserialized.
+
+
+
+ Deserializes the JSON structure contained by the specified
+ into an instance of the specified type.
+
+ The containing the object.
+ The type of the object to deserialize.
+ The instance of being deserialized.
+
+
+
+ Deserializes the JSON structure contained by the specified
+ into an instance of the specified type.
+
+ The containing the object.
+ The of object being deserialized.
+ The instance of being deserialized.
+
+
+
+ Serializes the specified and writes the JSON structure
+ using the specified .
+
+ The used to write the JSON structure.
+ The to serialize.
+
+
+
+ Serializes the specified and writes the JSON structure
+ using the specified .
+
+ The used to write the JSON structure.
+ The to serialize.
+
+ The type of the value being serialized.
+ This parameter is used when is to write out the type name if the type of the value does not match.
+ Specifying the type is optional.
+
+
+
+
+ Serializes the specified and writes the JSON structure
+ using the specified .
+
+ The used to write the JSON structure.
+ The to serialize.
+
+ The type of the value being serialized.
+ This parameter is used when is Auto to write out the type name if the type of the value does not match.
+ Specifying the type is optional.
+
+
+
+
+ Serializes the specified and writes the JSON structure
+ using the specified .
+
+ The used to write the JSON structure.
+ The to serialize.
+
+
+
+ Specifies the settings on a object.
+
+
+
+
+ Gets or sets how reference loops (e.g. a class referencing itself) are handled.
+ The default value is .
+
+ Reference loop handling.
+
+
+
+ Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
+ The default value is .
+
+ Missing member handling.
+
+
+
+ Gets or sets how objects are created during deserialization.
+ The default value is .
+
+ The object creation handling.
+
+
+
+ Gets or sets how null values are handled during serialization and deserialization.
+ The default value is .
+
+ Null value handling.
+
+
+
+ Gets or sets how default values are handled during serialization and deserialization.
+ The default value is .
+
+ The default value handling.
+
+
+
+ Gets or sets a collection that will be used during serialization.
+
+ The converters.
+
+
+
+ Gets or sets how object references are preserved by the serializer.
+ The default value is .
+
+ The preserve references handling.
+
+
+
+ Gets or sets how type name writing and reading is handled by the serializer.
+ The default value is .
+
+
+ should be used with caution when your application deserializes JSON from an external source.
+ Incoming types should be validated with a custom
+ when deserializing with a value other than .
+
+ The type name handling.
+
+
+
+ Gets or sets how metadata properties are used during deserialization.
+ The default value is .
+
+ The metadata properties handling.
+
+
+
+ Gets or sets how a type name assembly is written and resolved by the serializer.
+ The default value is .
+
+ The type name assembly format.
+
+
+
+ Gets or sets how a type name assembly is written and resolved by the serializer.
+ The default value is .
+
+ The type name assembly format.
+
+
+
+ Gets or sets how constructors are used during deserialization.
+ The default value is .
+
+ The constructor handling.
+
+
+
+ Gets or sets the contract resolver used by the serializer when
+ serializing .NET objects to JSON and vice versa.
+
+ The contract resolver.
+
+
+
+ Gets or sets the equality comparer used by the serializer when comparing references.
+
+ The equality comparer.
+
+
+
+ Gets or sets the used by the serializer when resolving references.
+
+ The reference resolver.
+
+
+
+ Gets or sets a function that creates the used by the serializer when resolving references.
+
+ A function that creates the used by the serializer when resolving references.
+
+
+
+ Gets or sets the used by the serializer when writing trace messages.
+
+ The trace writer.
+
+
+
+ Gets or sets the used by the serializer when resolving type names.
+
+ The binder.
+
+
+
+ Gets or sets the used by the serializer when resolving type names.
+
+ The binder.
+
+
+
+ Gets or sets the error handler called during serialization and deserialization.
+
+ The error handler called during serialization and deserialization.
+
+
+
+ Gets or sets the used by the serializer when invoking serialization callback methods.
+
+ The context.
+
+
+
+ Gets or sets how and values are formatted when writing JSON text,
+ and the expected date format when reading JSON text.
+ The default value is "yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK".
+
+
+
+
+ Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a .
+ A null value means there is no maximum.
+ The default value is 128.
+
+
+
+
+ Indicates how JSON text output is formatted.
+ The default value is .
+
+
+
+
+ Gets or sets how dates are written to JSON text.
+ The default value is .
+
+
+
+
+ Gets or sets how time zones are handled during serialization and deserialization.
+ The default value is .
+
+
+
+
+ Gets or sets how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
+ The default value is .
+
+
+
+
+ Gets or sets how special floating point numbers, e.g. ,
+ and ,
+ are written as JSON.
+ The default value is .
+
+
+
+
+ Gets or sets how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
+ The default value is .
+
+
+
+
+ Gets or sets how strings are escaped when writing JSON text.
+ The default value is .
+
+
+
+
+ Gets or sets the culture used when reading JSON.
+ The default value is .
+
+
+
+
+ Gets a value indicating whether there will be a check for additional content after deserializing an object.
+ The default value is false.
+
+
+ true if there will be a check for additional content after deserializing an object; otherwise, false.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
+
+
+
+
+ Asynchronously reads the next JSON token from the source.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous read. The
+ property returns true if the next token was read successfully; false if there are no more tokens to read.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously reads the next JSON token from the source as a of .
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous read. The
+ property returns the of . This result will be null at the end of an array.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously reads the next JSON token from the source as a [].
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous read. The
+ property returns the []. This result will be null at the end of an array.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously reads the next JSON token from the source as a of .
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous read. The
+ property returns the of . This result will be null at the end of an array.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously reads the next JSON token from the source as a of .
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous read. The
+ property returns the of . This result will be null at the end of an array.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously reads the next JSON token from the source as a of .
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous read. The
+ property returns the of . This result will be null at the end of an array.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously reads the next JSON token from the source as a of .
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous read. The
+ property returns the of . This result will be null at the end of an array.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously reads the next JSON token from the source as a of .
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous read. The
+ property returns the of . This result will be null at the end of an array.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously reads the next JSON token from the source as a .
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous read. The
+ property returns the . This result will be null at the end of an array.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Initializes a new instance of the class with the specified .
+
+ The containing the JSON data to read.
+
+
+
+ Gets or sets the reader's property name table.
+
+
+
+
+ Gets or sets the reader's character buffer pool.
+
+
+
+
+ Reads the next JSON token from the underlying .
+
+
+ true if the next token was read successfully; false if there are no more tokens to read.
+
+
+
+
+ Reads the next JSON token from the underlying as a of .
+
+ A of . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the underlying as a of .
+
+ A of . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the underlying as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the underlying as a [].
+
+ A [] or null if the next JSON token is null. This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the underlying as a of .
+
+ A of . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the underlying as a of .
+
+ A of . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the underlying as a of .
+
+ A of . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the underlying as a of .
+
+ A of . This method will return null at the end of an array.
+
+
+
+ Changes the reader's state to .
+ If is set to true, the underlying is also closed.
+
+
+
+
+ Gets a value indicating whether the class can return line information.
+
+
+ true if and can be provided; otherwise, false.
+
+
+
+
+ Gets the current line number.
+
+
+ The current line number or 0 if no line information is available (for example, returns false).
+
+
+
+
+ Gets the current line position.
+
+
+ The current line position or 0 if no line information is available (for example, returns false).
+
+
+
+
+ Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
+
+
+
+
+ Asynchronously flushes whatever is in the buffer to the destination and also flushes the destination.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes the JSON value delimiter.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes the specified end token.
+
+ The end token to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously closes this writer.
+ If is set to true, the destination is also closed.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes the end of the current JSON object or array.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes indent characters.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes an indent space.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes raw JSON without changing the writer's state.
+
+ The raw JSON to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a null value.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes the property name of a name/value pair of a JSON object.
+
+ The name of the property.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes the property name of a name/value pair of a JSON object.
+
+ The name of the property.
+ A flag to indicate whether the text should be escaped when it is written as a JSON property name.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes the beginning of a JSON array.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes the beginning of a JSON object.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes the start of a constructor with the given name.
+
+ The name of the constructor.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes an undefined value.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes the given white space.
+
+ The string of white space characters.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a [] value.
+
+ The [] value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes a comment /*...*/ containing the specified text.
+
+ Text to place inside the comment.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes the end of an array.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes the end of a constructor.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes the end of a JSON object.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Asynchronously writes raw JSON where a value is expected and updates the writer's state.
+
+ The raw JSON to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ Derived classes must override this method to get asynchronous behaviour. Otherwise it will
+ execute synchronously, returning an already-completed task.
+
+
+
+ Gets or sets the writer's character array pool.
+
+
+
+
+ Gets or sets how many s to write for each level in the hierarchy when is set to .
+
+
+
+
+ Gets or sets which character to use to quote attribute values.
+
+
+
+
+ Gets or sets which character to use for indenting when is set to .
+
+
+
+
+ Gets or sets a value indicating whether object names will be surrounded with quotes.
+
+
+
+
+ Initializes a new instance of the class using the specified .
+
+ The to write to.
+
+
+
+ Flushes whatever is in the buffer to the underlying and also flushes the underlying .
+
+
+
+
+ Closes this writer.
+ If is set to true, the underlying is also closed.
+ If is set to true, the JSON is auto-completed.
+
+
+
+
+ Writes the beginning of a JSON object.
+
+
+
+
+ Writes the beginning of a JSON array.
+
+
+
+
+ Writes the start of a constructor with the given name.
+
+ The name of the constructor.
+
+
+
+ Writes the specified end token.
+
+ The end token to write.
+
+
+
+ Writes the property name of a name/value pair on a JSON object.
+
+ The name of the property.
+
+
+
+ Writes the property name of a name/value pair on a JSON object.
+
+ The name of the property.
+ A flag to indicate whether the text should be escaped when it is written as a JSON property name.
+
+
+
+ Writes indent characters.
+
+
+
+
+ Writes the JSON value delimiter.
+
+
+
+
+ Writes an indent space.
+
+
+
+
+ Writes a value.
+ An error will raised if the value cannot be written as a single JSON token.
+
+ The value to write.
+
+
+
+ Writes a null value.
+
+
+
+
+ Writes an undefined value.
+
+
+
+
+ Writes raw JSON.
+
+ The raw JSON to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a [] value.
+
+ The [] value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a comment /*...*/ containing the specified text.
+
+ Text to place inside the comment.
+
+
+
+ Writes the given white space.
+
+ The string of white space characters.
+
+
+
+ Specifies the type of JSON token.
+
+
+
+
+ This is returned by the if a read method has not been called.
+
+
+
+
+ An object start token.
+
+
+
+
+ An array start token.
+
+
+
+
+ A constructor start token.
+
+
+
+
+ An object property name.
+
+
+
+
+ A comment.
+
+
+
+
+ Raw JSON.
+
+
+
+
+ An integer.
+
+
+
+
+ A float.
+
+
+
+
+ A string.
+
+
+
+
+ A boolean.
+
+
+
+
+ A null token.
+
+
+
+
+ An undefined token.
+
+
+
+
+ An object end token.
+
+
+
+
+ An array end token.
+
+
+
+
+ A constructor end token.
+
+
+
+
+ A Date.
+
+
+
+
+ Byte data.
+
+
+
+
+
+ Represents a reader that provides validation.
+
+
+ JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ Sets an event handler for receiving schema validation errors.
+
+
+
+
+ Gets the text value of the current JSON token.
+
+
+
+
+
+ Gets the depth of the current token in the JSON document.
+
+ The depth of the current token in the JSON document.
+
+
+
+ Gets the path of the current JSON token.
+
+
+
+
+ Gets the quotation mark character used to enclose the value of a string.
+
+
+
+
+
+ Gets the type of the current JSON token.
+
+
+
+
+
+ Gets the .NET type for the current JSON token.
+
+
+
+
+
+ Initializes a new instance of the class that
+ validates the content returned from the given .
+
+ The to read from while validating.
+
+
+
+ Gets or sets the schema.
+
+ The schema.
+
+
+
+ Gets the used to construct this .
+
+ The specified in the constructor.
+
+
+
+ Changes the reader's state to .
+ If is set to true, the underlying is also closed.
+
+
+
+
+ Reads the next JSON token from the underlying as a of .
+
+ A of .
+
+
+
+ Reads the next JSON token from the underlying as a [].
+
+
+ A [] or null if the next JSON token is null.
+
+
+
+
+ Reads the next JSON token from the underlying as a of .
+
+ A of .
+
+
+
+ Reads the next JSON token from the underlying as a of .
+
+ A of .
+
+
+
+ Reads the next JSON token from the underlying as a of .
+
+ A of .
+
+
+
+ Reads the next JSON token from the underlying as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the underlying as a of .
+
+ A of . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the underlying as a of .
+
+ A of .
+
+
+
+ Reads the next JSON token from the underlying .
+
+
+ true if the next token was read successfully; false if there are no more tokens to read.
+
+
+
+
+ Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
+
+
+
+
+ Asynchronously closes this writer.
+ If is set to true, the destination is also closed.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously flushes whatever is in the buffer to the destination and also flushes the destination.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes the specified end token.
+
+ The end token to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes indent characters.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes the JSON value delimiter.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes an indent space.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes raw JSON without changing the writer's state.
+
+ The raw JSON to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes the end of the current JSON object or array.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes the end of an array.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes the end of a constructor.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes the end of a JSON object.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a null value.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes the property name of a name/value pair of a JSON object.
+
+ The name of the property.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes the property name of a name/value pair of a JSON object.
+
+ The name of the property.
+ A flag to indicate whether the text should be escaped when it is written as a JSON property name.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes the beginning of a JSON array.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a comment /*...*/ containing the specified text.
+
+ Text to place inside the comment.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes raw JSON where a value is expected and updates the writer's state.
+
+ The raw JSON to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes the start of a constructor with the given name.
+
+ The name of the constructor.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes the beginning of a JSON object.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes the current token.
+
+ The to read the token from.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes the current token.
+
+ The to read the token from.
+ A flag indicating whether the current token's children should be written.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes the token and its value.
+
+ The to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes the token and its value.
+
+ The to write.
+
+ The value to write.
+ A value is only required for tokens that have an associated value, e.g. the property name for .
+ null can be passed to the method for tokens that don't have a value, e.g. .
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a [] value.
+
+ The [] value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a value.
+
+ The value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes a of value.
+
+ The of value to write.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes an undefined value.
+
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously writes the given white space.
+
+ The string of white space characters.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Asynchronously ets the state of the .
+
+ The being written.
+ The value being written.
+ The token to monitor for cancellation requests. The default value is .
+ A that represents the asynchronous operation.
+ The default behaviour is to execute synchronously, returning an already-completed task. Derived
+ classes can override this behaviour for true asynchronicity.
+
+
+
+ Gets or sets a value indicating whether the destination should be closed when this writer is closed.
+
+
+ true to close the destination when this writer is closed; otherwise false. The default is true.
+
+
+
+
+ Gets or sets a value indicating whether the JSON should be auto-completed when this writer is closed.
+
+
+ true to auto-complete the JSON when this writer is closed; otherwise false. The default is true.
+
+
+
+
+ Gets the top.
+
+ The top.
+
+
+
+ Gets the state of the writer.
+
+
+
+
+ Gets the path of the writer.
+
+
+
+
+ Gets or sets a value indicating how JSON text output should be formatted.
+
+
+
+
+ Gets or sets how dates are written to JSON text.
+
+
+
+
+ Gets or sets how time zones are handled when writing JSON text.
+
+
+
+
+ Gets or sets how strings are escaped when writing JSON text.
+
+
+
+
+ Gets or sets how special floating point numbers, e.g. ,
+ and ,
+ are written to JSON text.
+
+
+
+
+ Gets or sets how and values are formatted when writing JSON text.
+
+
+
+
+ Gets or sets the culture used when writing JSON. Defaults to .
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Flushes whatever is in the buffer to the destination and also flushes the destination.
+
+
+
+
+ Closes this writer.
+ If is set to true, the destination is also closed.
+ If is set to true, the JSON is auto-completed.
+
+
+
+
+ Writes the beginning of a JSON object.
+
+
+
+
+ Writes the end of a JSON object.
+
+
+
+
+ Writes the beginning of a JSON array.
+
+
+
+
+ Writes the end of an array.
+
+
+
+
+ Writes the start of a constructor with the given name.
+
+ The name of the constructor.
+
+
+
+ Writes the end constructor.
+
+
+
+
+ Writes the property name of a name/value pair of a JSON object.
+
+ The name of the property.
+
+
+
+ Writes the property name of a name/value pair of a JSON object.
+
+ The name of the property.
+ A flag to indicate whether the text should be escaped when it is written as a JSON property name.
+
+
+
+ Writes the end of the current JSON object or array.
+
+
+
+
+ Writes the current token and its children.
+
+ The to read the token from.
+
+
+
+ Writes the current token.
+
+ The to read the token from.
+ A flag indicating whether the current token's children should be written.
+
+
+
+ Writes the token and its value.
+
+ The to write.
+
+ The value to write.
+ A value is only required for tokens that have an associated value, e.g. the property name for .
+ null can be passed to the method for tokens that don't have a value, e.g. .
+
+
+
+
+ Writes the token.
+
+ The to write.
+
+
+
+ Writes the specified end token.
+
+ The end token to write.
+
+
+
+ Writes indent characters.
+
+
+
+
+ Writes the JSON value delimiter.
+
+
+
+
+ Writes an indent space.
+
+
+
+
+ Writes a null value.
+
+
+
+
+ Writes an undefined value.
+
+
+
+
+ Writes raw JSON without changing the writer's state.
+
+ The raw JSON to write.
+
+
+
+ Writes raw JSON where a value is expected and updates the writer's state.
+
+ The raw JSON to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a of value.
+
+ The of value to write.
+
+
+
+ Writes a [] value.
+
+ The [] value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+ An error will raised if the value cannot be written as a single JSON token.
+
+ The value to write.
+
+
+
+ Writes a comment /*...*/ containing the specified text.
+
+ Text to place inside the comment.
+
+
+
+ Writes the given white space.
+
+ The string of white space characters.
+
+
+
+ Releases unmanaged and - optionally - managed resources.
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Sets the state of the .
+
+ The being written.
+ The value being written.
+
+
+
+ The exception thrown when an error occurs while writing JSON text.
+
+
+
+
+ Gets the path to the JSON where the error occurred.
+
+ The path to the JSON where the error occurred.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class
+ with a specified error message.
+
+ The error message that explains the reason for the exception.
+
+
+
+ Initializes a new instance of the class
+ with a specified error message and a reference to the inner exception that is the cause of this exception.
+
+ The error message that explains the reason for the exception.
+ The exception that is the cause of the current exception, or null if no inner exception is specified.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ Initializes a new instance of the class
+ with a specified error message, JSON path and a reference to the inner exception that is the cause of this exception.
+
+ The error message that explains the reason for the exception.
+ The path to the JSON where the error occurred.
+ The exception that is the cause of the current exception, or null if no inner exception is specified.
+
+
+
+ Specifies how JSON comments are handled when loading JSON.
+
+
+
+
+ Ignore comments.
+
+
+
+
+ Load comments as a with type .
+
+
+
+
+ Specifies how duplicate property names are handled when loading JSON.
+
+
+
+
+ Replace the existing value when there is a duplicate property. The value of the last property in the JSON object will be used.
+
+
+
+
+ Ignore the new value when there is a duplicate property. The value of the first property in the JSON object will be used.
+
+
+
+
+ Throw a when a duplicate property is encountered.
+
+
+
+
+ Contains the LINQ to JSON extension methods.
+
+
+
+
+ Returns a collection of tokens that contains the ancestors of every token in the source collection.
+
+ The type of the objects in source, constrained to .
+ An of that contains the source collection.
+ An of that contains the ancestors of every token in the source collection.
+
+
+
+ Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection.
+
+ The type of the objects in source, constrained to .
+ An of that contains the source collection.
+ An of that contains every token in the source collection, the ancestors of every token in the source collection.
+
+
+
+ Returns a collection of tokens that contains the descendants of every token in the source collection.
+
+ The type of the objects in source, constrained to .
+ An of that contains the source collection.
+ An of that contains the descendants of every token in the source collection.
+
+
+
+ Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection.
+
+ The type of the objects in source, constrained to .
+ An of that contains the source collection.
+ An of that contains every token in the source collection, and the descendants of every token in the source collection.
+
+
+
+ Returns a collection of child properties of every object in the source collection.
+
+ An of that contains the source collection.
+ An of that contains the properties of every object in the source collection.
+
+
+
+ Returns a collection of child values of every object in the source collection with the given key.
+
+ An of that contains the source collection.
+ The token key.
+ An of that contains the values of every token in the source collection with the given key.
+
+
+
+ Returns a collection of child values of every object in the source collection.
+
+ An of that contains the source collection.
+ An of that contains the values of every token in the source collection.
+
+
+
+ Returns a collection of converted child values of every object in the source collection with the given key.
+
+ The type to convert the values to.
+ An of that contains the source collection.
+ The token key.
+ An that contains the converted values of every token in the source collection with the given key.
+
+
+
+ Returns a collection of converted child values of every object in the source collection.
+
+ The type to convert the values to.
+ An of that contains the source collection.
+ An that contains the converted values of every token in the source collection.
+
+
+
+ Converts the value.
+
+ The type to convert the value to.
+ A cast as a of .
+ A converted value.
+
+
+
+ Converts the value.
+
+ The source collection type.
+ The type to convert the value to.
+ A cast as a of .
+ A converted value.
+
+
+
+ Returns a collection of child tokens of every array in the source collection.
+
+ The source collection type.
+ An of that contains the source collection.
+ An of that contains the values of every token in the source collection.
+
+
+
+ Returns a collection of converted child tokens of every array in the source collection.
+
+ An of that contains the source collection.
+ The type to convert the values to.
+ The source collection type.
+ An that contains the converted values of every token in the source collection.
+
+
+
+ Returns the input typed as .
+
+ An of that contains the source collection.
+ The input typed as .
+
+
+
+ Returns the input typed as .
+
+ The source collection type.
+ An of that contains the source collection.
+ The input typed as .
+
+
+
+ Represents a collection of objects.
+
+ The type of token.
+
+
+
+ Gets the of with the specified key.
+
+
+
+
+
+ Represents a JSON array.
+
+
+
+
+
+
+
+ Writes this token to a asynchronously.
+
+ A into which this method will write.
+ The token to monitor for cancellation requests.
+ A collection of which will be used when writing the token.
+ A that represents the asynchronous write operation.
+
+
+
+ Asynchronously loads a from a .
+
+ A that will be read for the content of the .
+ If this is null, default load settings will be used.
+ The token to monitor for cancellation requests. The default value is .
+ A representing the asynchronous load. The property contains the JSON that was read from the specified .
+
+
+
+ Asynchronously loads a from a .
+
+ A that will be read for the content of the .
+ The used to load the JSON.
+ If this is null, default load settings will be used.
+ The token to monitor for cancellation requests. The default value is .
+ A representing the asynchronous load. The property contains the JSON that was read from the specified .
+
+
+
+ Gets the container's children tokens.
+
+ The container's children tokens.
+
+
+
+ Gets the node type for this .
+
+ The type.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class from another object.
+
+ A object to copy from.
+
+
+
+ Initializes a new instance of the class with the specified content.
+
+ The contents of the array.
+
+
+
+ Initializes a new instance of the class with the specified content.
+
+ The contents of the array.
+
+
+
+ Loads an from a .
+
+ A that will be read for the content of the .
+ A that contains the JSON that was read from the specified .
+
+
+
+ Loads an from a .
+
+ A that will be read for the content of the .
+ The used to load the JSON.
+ If this is null, default load settings will be used.
+ A that contains the JSON that was read from the specified .
+
+
+
+ Load a from a string that contains JSON.
+
+ A that contains JSON.
+ A populated from the string that contains JSON.
+
+
+
+
+
+
+ Load a from a string that contains JSON.
+
+ A that contains JSON.
+ The used to load the JSON.
+ If this is null, default load settings will be used.
+ A populated from the string that contains JSON.
+
+
+
+
+
+
+ Creates a from an object.
+
+ The object that will be used to create .
+ A with the values of the specified object.
+
+
+
+ Creates a from an object.
+
+ The object that will be used to create .
+ The that will be used to read the object.
+ A with the values of the specified object.
+
+
+
+ Writes this token to a .
+
+ A into which this method will write.
+ A collection of which will be used when writing the token.
+
+
+
+ Gets the with the specified key.
+
+ The with the specified key.
+
+
+
+ Gets or sets the at the specified index.
+
+
+
+
+
+ Determines the index of a specific item in the .
+
+ The object to locate in the .
+
+ The index of if found in the list; otherwise, -1.
+
+
+
+
+ Inserts an item to the at the specified index.
+
+ The zero-based index at which should be inserted.
+ The object to insert into the .
+
+ is not a valid index in the .
+
+
+
+
+ Removes the item at the specified index.
+
+ The zero-based index of the item to remove.
+
+ is not a valid index in the .
+
+
+
+
+ Returns an enumerator that iterates through the collection.
+
+
+ A of that can be used to iterate through the collection.
+
+
+
+
+ Adds an item to the .
+
+ The object to add to the .
+
+
+
+ Removes all items from the .
+
+
+
+
+ Determines whether the contains a specific value.
+
+ The object to locate in the .
+
+ true if is found in the ; otherwise, false.
+
+
+
+
+ Copies the elements of the to an array, starting at a particular array index.
+
+ The array.
+ Index of the array.
+
+
+
+ Gets a value indicating whether the is read-only.
+
+ true if the is read-only; otherwise, false.
+
+
+
+ Removes the first occurrence of a specific object from the .
+
+ The object to remove from the .
+
+ true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original .
+
+
+
+
+ Represents a JSON constructor.
+
+
+
+
+ Writes this token to a asynchronously.
+
+ A into which this method will write.
+ The token to monitor for cancellation requests.
+ A collection of which will be used when writing the token.
+ A that represents the asynchronous write operation.
+
+
+
+ Asynchronously loads a from a .
+
+ A that will be read for the content of the .
+ The token to monitor for cancellation requests. The default value is .
+
+ A that represents the asynchronous load. The
+ property returns a that contains the JSON that was read from the specified .
+
+
+
+ Asynchronously loads a from a .
+
+ A that will be read for the content of the .
+ The used to load the JSON.
+ If this is null, default load settings will be used.
+ The token to monitor for cancellation requests. The default value is .
+
+ A that represents the asynchronous load. The
+ property returns a that contains the JSON that was read from the specified .
+
+
+
+ Gets the container's children tokens.
+
+ The container's children tokens.
+
+
+
+ Gets or sets the name of this constructor.
+
+ The constructor name.
+
+
+
+ Gets the node type for this .
+
+ The type.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class from another object.
+
+ A object to copy from.
+
+
+
+ Initializes a new instance of the class with the specified name and content.
+
+ The constructor name.
+ The contents of the constructor.
+
+
+
+ Initializes a new instance of the class with the specified name and content.
+
+ The constructor name.
+ The contents of the constructor.
+
+
+
+ Initializes a new instance of the class with the specified name.
+
+ The constructor name.
+
+
+
+ Writes this token to a .
+
+ A into which this method will write.
+ A collection of which will be used when writing the token.
+
+
+
+ Gets the with the specified key.
+
+ The with the specified key.
+
+
+
+ Loads a from a .
+
+ A that will be read for the content of the .
+ A that contains the JSON that was read from the specified .
+
+
+
+ Loads a from a .
+
+ A that will be read for the content of the .
+ The used to load the JSON.
+ If this is null, default load settings will be used.
+ A that contains the JSON that was read from the specified .
+
+
+
+ Represents a token that can contain other tokens.
+
+
+
+
+ Occurs when the list changes or an item in the list changes.
+
+
+
+
+ Occurs before an item is added to the collection.
+
+
+
+
+ Occurs when the items list of the collection has changed, or the collection is reset.
+
+
+
+
+ Gets the container's children tokens.
+
+ The container's children tokens.
+
+
+
+ Raises the event.
+
+ The instance containing the event data.
+
+
+
+ Raises the event.
+
+ The instance containing the event data.
+
+
+
+ Raises the event.
+
+ The instance containing the event data.
+
+
+
+ Gets a value indicating whether this token has child tokens.
+
+
+ true if this token has child values; otherwise, false.
+
+
+
+
+ Get the first child token of this token.
+
+
+ A containing the first child token of the .
+
+
+
+
+ Get the last child token of this token.
+
+
+ A containing the last child token of the .
+
+
+
+
+ Returns a collection of the child tokens of this token, in document order.
+
+
+ An of containing the child tokens of this , in document order.
+
+
+
+
+ Returns a collection of the child values of this token, in document order.
+
+ The type to convert the values to.
+
+ A containing the child values of this , in document order.
+
+
+
+
+ Returns a collection of the descendant tokens for this token in document order.
+
+ An of containing the descendant tokens of the .
+
+
+
+ Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order.
+
+ An of containing this token, and all the descendant tokens of the .
+
+
+
+ Adds the specified content as children of this .
+
+ The content to be added.
+
+
+
+ Adds the specified content as the first children of this .
+
+ The content to be added.
+
+
+
+ Creates a that can be used to add tokens to the .
+
+ A that is ready to have content written to it.
+
+
+
+ Replaces the child nodes of this token with the specified content.
+
+ The content.
+
+
+
+ Removes the child nodes from this token.
+
+
+
+
+ Merge the specified content into this .
+
+ The content to be merged.
+
+
+
+ Merge the specified content into this using .
+
+ The content to be merged.
+ The used to merge the content.
+
+
+
+ Gets the count of child JSON tokens.
+
+ The count of child JSON tokens.
+
+
+
+ Represents a collection of objects.
+
+ The type of token.
+
+
+
+ An empty collection of objects.
+
+
+
+
+ Initializes a new instance of the struct.
+
+ The enumerable.
+
+
+
+ Returns an enumerator that can be used to iterate through the collection.
+
+
+ A that can be used to iterate through the collection.
+
+
+
+
+ Gets the of with the specified key.
+
+
+
+
+
+ Determines whether the specified is equal to this instance.
+
+ The to compare with this instance.
+
+ true if the specified is equal to this instance; otherwise, false.
+
+
+
+
+ Determines whether the specified is equal to this instance.
+
+ The to compare with this instance.
+
+ true if the specified is equal to this instance; otherwise, false.
+
+
+
+
+ Returns a hash code for this instance.
+
+
+ A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
+
+
+
+
+ Represents a JSON object.
+
+
+
+
+
+
+
+ Writes this token to a asynchronously.
+
+ A into which this method will write.
+ The token to monitor for cancellation requests.
+ A collection of which will be used when writing the token.
+ A that represents the asynchronous write operation.
+
+
+
+ Asynchronously loads a from a .
+
+ A that will be read for the content of the .
+ The token to monitor for cancellation requests. The default value is .
+
+ A that represents the asynchronous load. The
+ property returns a that contains the JSON that was read from the specified .
+
+
+
+ Asynchronously loads a from a .
+
+ A that will be read for the content of the .
+ The used to load the JSON.
+ If this is null, default load settings will be used.
+ The token to monitor for cancellation requests. The default value is .
+
+ A that represents the asynchronous load. The
+ property returns a that contains the JSON that was read from the specified .
+
+
+
+ Gets the container's children tokens.
+
+ The container's children tokens.
+
+
+
+ Occurs when a property value changes.
+
+
+
+
+ Occurs when a property value is changing.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class from another object.
+
+ A object to copy from.
+
+
+
+ Initializes a new instance of the class with the specified content.
+
+ The contents of the object.
+
+
+
+ Initializes a new instance of the class with the specified content.
+
+ The contents of the object.
+
+
+
+ Gets the node type for this .
+
+ The type.
+
+
+
+ Gets an of of this object's properties.
+
+ An of of this object's properties.
+
+
+
+ Gets a with the specified name.
+
+ The property name.
+ A with the specified name or null.
+
+
+
+ Gets the with the specified name.
+ The exact name will be searched for first and if no matching property is found then
+ the will be used to match a property.
+
+ The property name.
+ One of the enumeration values that specifies how the strings will be compared.
+ A matched with the specified name or null.
+
+
+
+ Gets a of of this object's property values.
+
+ A of of this object's property values.
+
+
+
+ Gets the with the specified key.
+
+ The with the specified key.
+
+
+
+ Gets or sets the with the specified property name.
+
+
+
+
+
+ Loads a from a .
+
+ A that will be read for the content of the .
+ A that contains the JSON that was read from the specified .
+
+ is not valid JSON.
+
+
+
+
+ Loads a from a .
+
+ A that will be read for the content of the .
+ The used to load the JSON.
+ If this is null, default load settings will be used.
+ A that contains the JSON that was read from the specified .
+
+ is not valid JSON.
+
+
+
+
+ Load a from a string that contains JSON.
+
+ A that contains JSON.
+ A populated from the string that contains JSON.
+
+ is not valid JSON.
+
+
+
+
+
+
+
+ Load a from a string that contains JSON.
+
+ A that contains JSON.
+ The used to load the JSON.
+ If this is null, default load settings will be used.
+ A populated from the string that contains JSON.
+
+ is not valid JSON.
+
+
+
+
+
+
+
+ Creates a from an object.
+
+ The object that will be used to create .
+ A with the values of the specified object.
+
+
+
+ Creates a from an object.
+
+ The object that will be used to create .
+ The that will be used to read the object.
+ A with the values of the specified object.
+
+
+
+ Writes this token to a .
+
+ A into which this method will write.
+ A collection of which will be used when writing the token.
+
+
+
+ Gets the with the specified property name.
+
+ Name of the property.
+ The with the specified property name.
+
+
+
+ Gets the with the specified property name.
+ The exact property name will be searched for first and if no matching property is found then
+ the will be used to match a property.
+
+ Name of the property.
+ One of the enumeration values that specifies how the strings will be compared.
+ The with the specified property name.
+
+
+
+ Tries to get the with the specified property name.
+ The exact property name will be searched for first and if no matching property is found then
+ the will be used to match a property.
+
+ Name of the property.
+ The value.
+ One of the enumeration values that specifies how the strings will be compared.
+ true if a value was successfully retrieved; otherwise, false.
+
+
+
+ Adds the specified property name.
+
+ Name of the property.
+ The value.
+
+
+
+ Determines whether the JSON object has the specified property name.
+
+ Name of the property.
+ true if the JSON object has the specified property name; otherwise, false.
+
+
+
+ Removes the property with the specified name.
+
+ Name of the property.
+ true if item was successfully removed; otherwise, false.
+
+
+
+ Tries to get the with the specified property name.
+
+ Name of the property.
+ The value.
+ true if a value was successfully retrieved; otherwise, false.
+
+
+
+ Returns an enumerator that can be used to iterate through the collection.
+
+
+ A that can be used to iterate through the collection.
+
+
+
+
+ Raises the event with the provided arguments.
+
+ Name of the property.
+
+
+
+ Raises the event with the provided arguments.
+
+ Name of the property.
+
+
+
+ Returns the responsible for binding operations performed on this object.
+
+ The expression tree representation of the runtime value.
+
+ The to bind this object.
+
+
+
+
+ Represents a JSON property.
+
+
+
+
+ Writes this token to a asynchronously.
+
+ A into which this method will write.
+ The token to monitor for cancellation requests.
+ A collection of which will be used when writing the token.
+ A that represents the asynchronous write operation.
+
+
+
+ Asynchronously loads a from a .
+
+ A that will be read for the content of the .
+ The token to monitor for cancellation requests. The default value is .
+ A representing the asynchronous creation. The
+ property returns a that contains the JSON that was read from the specified .
+
+
+
+ Asynchronously loads a from a .
+
+ A that will be read for the content of the .
+ The used to load the JSON.
+ If this is null, default load settings will be used.
+ The token to monitor for cancellation requests. The default value is .
+ A representing the asynchronous creation. The
+ property returns a that contains the JSON that was read from the specified .
+
+
+
+ Gets the container's children tokens.
+
+ The container's children tokens.
+
+
+
+ Gets the property name.
+
+ The property name.
+
+
+
+ Gets or sets the property value.
+
+ The property value.
+
+
+
+ Initializes a new instance of the class from another object.
+
+ A object to copy from.
+
+
+
+ Gets the node type for this .
+
+ The type.
+
+
+
+ Initializes a new instance of the class.
+
+ The property name.
+ The property content.
+
+
+
+ Initializes a new instance of the class.
+
+ The property name.
+ The property content.
+
+
+
+ Writes this token to a .
+
+ A into which this method will write.
+ A collection of which will be used when writing the token.
+
+
+
+ Loads a from a .
+
+ A that will be read for the content of the .
+ A that contains the JSON that was read from the specified .
+
+
+
+ Loads a from a .
+
+ A that will be read for the content of the .
+ The used to load the JSON.
+ If this is null, default load settings will be used.
+ A that contains the JSON that was read from the specified .
+
+
+
+ Represents a view of a .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The name.
+
+
+
+ When overridden in a derived class, returns whether resetting an object changes its value.
+
+
+ true if resetting the component changes its value; otherwise, false.
+
+ The component to test for reset capability.
+
+
+
+ When overridden in a derived class, gets the current value of the property on a component.
+
+
+ The value of a property for a given component.
+
+ The component with the property for which to retrieve the value.
+
+
+
+ When overridden in a derived class, resets the value for this property of the component to the default value.
+
+ The component with the property value that is to be reset to the default value.
+
+
+
+ When overridden in a derived class, sets the value of the component to a different value.
+
+ The component with the property value that is to be set.
+ The new value.
+
+
+
+ When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
+
+
+ true if the property should be persisted; otherwise, false.
+
+ The component with the property to be examined for persistence.
+
+
+
+ When overridden in a derived class, gets the type of the component this property is bound to.
+
+
+ A that represents the type of component this property is bound to.
+ When the or
+
+ methods are invoked, the object specified might be an instance of this type.
+
+
+
+
+ When overridden in a derived class, gets a value indicating whether this property is read-only.
+
+
+ true if the property is read-only; otherwise, false.
+
+
+
+
+ When overridden in a derived class, gets the type of the property.
+
+
+ A that represents the type of the property.
+
+
+
+
+ Gets the hash code for the name of the member.
+
+
+
+ The hash code for the name of the member.
+
+
+
+
+ Represents a raw JSON string.
+
+
+
+
+ Asynchronously creates an instance of with the content of the reader's current token.
+
+ The reader.
+ The token to monitor for cancellation requests. The default value is .
+ A representing the asynchronous creation. The
+ property returns an instance of with the content of the reader's current token.
+
+
+
+ Initializes a new instance of the class from another object.
+
+ A object to copy from.
+
+
+
+ Initializes a new instance of the class.
+
+ The raw json.
+
+
+
+ Creates an instance of with the content of the reader's current token.
+
+ The reader.
+ An instance of with the content of the reader's current token.
+
+
+
+ Specifies the settings used when loading JSON.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets or sets how JSON comments are handled when loading JSON.
+ The default value is .
+
+ The JSON comment handling.
+
+
+
+ Gets or sets how JSON line info is handled when loading JSON.
+ The default value is .
+
+ The JSON line info handling.
+
+
+
+ Gets or sets how duplicate property names in JSON objects are handled when loading JSON.
+ The default value is .
+
+ The JSON duplicate property name handling.
+
+
+
+ Specifies the settings used when merging JSON.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets or sets the method used when merging JSON arrays.
+
+ The method used when merging JSON arrays.
+
+
+
+ Gets or sets how null value properties are merged.
+
+ How null value properties are merged.
+
+
+
+ Gets or sets the comparison used to match property names while merging.
+ The exact property name will be searched for first and if no matching property is found then
+ the will be used to match a property.
+
+ The comparison used to match property names while merging.
+
+
+
+ Specifies the settings used when selecting JSON.
+
+
+
+
+ Gets or sets a timeout that will be used when executing regular expressions.
+
+ The timeout that will be used when executing regular expressions.
+
+
+
+ Gets or sets a flag that indicates whether an error should be thrown if
+ no tokens are found when evaluating part of the expression.
+
+
+ A flag that indicates whether an error should be thrown if
+ no tokens are found when evaluating part of the expression.
+
+
+
+
+ Represents an abstract JSON token.
+
+
+
+
+ Writes this token to a asynchronously.
+
+ A into which this method will write.
+ The token to monitor for cancellation requests.
+ A collection of which will be used when writing the token.
+ A that represents the asynchronous write operation.
+
+
+
+ Writes this token to a asynchronously.
+
+ A into which this method will write.
+ A collection of which will be used when writing the token.
+ A that represents the asynchronous write operation.
+
+
+
+ Asynchronously creates a from a .
+
+ An positioned at the token to read into this .
+ The token to monitor for cancellation requests. The default value is .
+
+ A that represents the asynchronous creation. The
+ property returns a that contains
+ the token and its descendant tokens
+ that were read from the reader. The runtime type of the token is determined
+ by the token type of the first token encountered in the reader.
+
+
+
+
+ Asynchronously creates a from a .
+
+ An positioned at the token to read into this .
+ The used to load the JSON.
+ If this is null, default load settings will be used.
+ The token to monitor for cancellation requests. The default value is .
+
+ A that represents the asynchronous creation. The
+ property returns a that contains
+ the token and its descendant tokens
+ that were read from the reader. The runtime type of the token is determined
+ by the token type of the first token encountered in the reader.
+
+
+
+
+ Asynchronously creates a from a .
+
+ A positioned at the token to read into this .
+ The token to monitor for cancellation requests. The default value is .
+
+ A that represents the asynchronous creation. The
+ property returns a that contains the token and its descendant tokens
+ that were read from the reader. The runtime type of the token is determined
+ by the token type of the first token encountered in the reader.
+
+
+
+
+ Asynchronously creates a from a .
+
+ A positioned at the token to read into this .
+ The used to load the JSON.
+ If this is null, default load settings will be used.
+ The token to monitor for cancellation requests. The default value is .
+
+ A that represents the asynchronous creation. The
+ property returns a that contains the token and its descendant tokens
+ that were read from the reader. The runtime type of the token is determined
+ by the token type of the first token encountered in the reader.
+
+
+
+
+ Gets a comparer that can compare two tokens for value equality.
+
+ A that can compare two nodes for value equality.
+
+
+
+ Gets or sets the parent.
+
+ The parent.
+
+
+
+ Gets the root of this .
+
+ The root of this .
+
+
+
+ Gets the node type for this .
+
+ The type.
+
+
+
+ Gets a value indicating whether this token has child tokens.
+
+
+ true if this token has child values; otherwise, false.
+
+
+
+
+ Compares the values of two tokens, including the values of all descendant tokens.
+
+ The first to compare.
+ The second to compare.
+ true if the tokens are equal; otherwise false.
+
+
+
+ Gets the next sibling token of this node.
+
+ The that contains the next sibling token.
+
+
+
+ Gets the previous sibling token of this node.
+
+ The that contains the previous sibling token.
+
+
+
+ Gets the path of the JSON token.
+
+
+
+
+ Adds the specified content immediately after this token.
+
+ A content object that contains simple content or a collection of content objects to be added after this token.
+
+
+
+ Adds the specified content immediately before this token.
+
+ A content object that contains simple content or a collection of content objects to be added before this token.
+
+
+
+ Returns a collection of the ancestor tokens of this token.
+
+ A collection of the ancestor tokens of this token.
+
+
+
+ Returns a collection of tokens that contain this token, and the ancestors of this token.
+
+ A collection of tokens that contain this token, and the ancestors of this token.
+
+
+
+ Returns a collection of the sibling tokens after this token, in document order.
+
+ A collection of the sibling tokens after this tokens, in document order.
+
+
+
+ Returns a collection of the sibling tokens before this token, in document order.
+
+ A collection of the sibling tokens before this token, in document order.
+
+
+
+ Gets the with the specified key.
+
+ The with the specified key.
+
+
+
+ Gets the with the specified key converted to the specified type.
+
+ The type to convert the token to.
+ The token key.
+ The converted token value.
+
+
+
+ Get the first child token of this token.
+
+ A containing the first child token of the .
+
+
+
+ Get the last child token of this token.
+
+ A containing the last child token of the .
+
+
+
+ Returns a collection of the child tokens of this token, in document order.
+
+ An of containing the child tokens of this , in document order.
+
+
+
+ Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
+
+ The type to filter the child tokens on.
+ A containing the child tokens of this , in document order.
+
+
+
+ Returns a collection of the child values of this token, in document order.
+
+ The type to convert the values to.
+ A containing the child values of this , in document order.
+
+
+
+ Removes this token from its parent.
+
+
+
+
+ Replaces this token with the specified token.
+
+ The value.
+
+
+
+ Writes this token to a .
+
+ A into which this method will write.
+ A collection of which will be used when writing the token.
+
+
+
+ Returns the indented JSON for this token.
+
+
+ ToString() returns a non-JSON string value for tokens with a type of .
+ If you want the JSON for all token types then you should use .
+
+
+ The indented JSON for this token.
+
+
+
+
+ Returns the JSON for this token using the given formatting and converters.
+
+ Indicates how the output should be formatted.
+ A collection of s which will be used when writing the token.
+ The JSON for this token using the given formatting and converters.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to [].
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to of .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from of to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from of to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from of to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from of to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from of to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from of to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from of to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from of to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from of to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from of to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from of to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from of to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from of to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from of to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from of to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from [] to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from of to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from of to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Creates a for this token.
+
+ A that can be used to read this token and its descendants.
+
+
+
+ Creates a from an object.
+
+ The object that will be used to create .
+ A with the value of the specified object.
+
+
+
+ Creates a from an object using the specified .
+
+ The object that will be used to create .
+ The that will be used when reading the object.
+ A with the value of the specified object.
+
+
+
+ Creates an instance of the specified .NET type from the .
+
+ The object type that the token will be deserialized to.
+ The new object created from the JSON value.
+
+
+
+ Creates an instance of the specified .NET type from the .
+
+ The object type that the token will be deserialized to.
+ The new object created from the JSON value.
+
+
+
+ Creates an instance of the specified .NET type from the using the specified .
+
+ The object type that the token will be deserialized to.
+ The that will be used when creating the object.
+ The new object created from the JSON value.
+
+
+
+ Creates an instance of the specified .NET type from the using the specified .
+
+ The object type that the token will be deserialized to.
+ The that will be used when creating the object.
+ The new object created from the JSON value.
+
+
+
+ Creates a from a .
+
+ A positioned at the token to read into this .
+
+ A that contains the token and its descendant tokens
+ that were read from the reader. The runtime type of the token is determined
+ by the token type of the first token encountered in the reader.
+
+
+
+
+ Creates a from a .
+
+ An positioned at the token to read into this .
+ The used to load the JSON.
+ If this is null, default load settings will be used.
+
+ A that contains the token and its descendant tokens
+ that were read from the reader. The runtime type of the token is determined
+ by the token type of the first token encountered in the reader.
+
+
+
+
+ Load a from a string that contains JSON.
+
+ A that contains JSON.
+ A populated from the string that contains JSON.
+
+
+
+ Load a from a string that contains JSON.
+
+ A that contains JSON.
+ The used to load the JSON.
+ If this is null, default load settings will be used.
+ A populated from the string that contains JSON.
+
+
+
+ Creates a from a .
+
+ A positioned at the token to read into this .
+ The used to load the JSON.
+ If this is null, default load settings will be used.
+
+ A that contains the token and its descendant tokens
+ that were read from the reader. The runtime type of the token is determined
+ by the token type of the first token encountered in the reader.
+
+
+
+
+ Creates a from a .
+
+ A positioned at the token to read into this .
+
+ A that contains the token and its descendant tokens
+ that were read from the reader. The runtime type of the token is determined
+ by the token type of the first token encountered in the reader.
+
+
+
+
+ Selects a using a JSONPath expression. Selects the token that matches the object path.
+
+
+ A that contains a JSONPath expression.
+
+ A , or null.
+
+
+
+ Selects a using a JSONPath expression. Selects the token that matches the object path.
+
+
+ A that contains a JSONPath expression.
+
+ A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression.
+ A .
+
+
+
+ Selects a using a JSONPath expression. Selects the token that matches the object path.
+
+
+ A that contains a JSONPath expression.
+
+ The used to select tokens.
+ A .
+
+
+
+ Selects a collection of elements using a JSONPath expression.
+
+
+ A that contains a JSONPath expression.
+
+ An of that contains the selected elements.
+
+
+
+ Selects a collection of elements using a JSONPath expression.
+
+
+ A that contains a JSONPath expression.
+
+ A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression.
+ An of that contains the selected elements.
+
+
+
+ Selects a collection of elements using a JSONPath expression.
+
+
+ A that contains a JSONPath expression.
+
+ The used to select tokens.
+ An of that contains the selected elements.
+
+
+
+ Returns the responsible for binding operations performed on this object.
+
+ The expression tree representation of the runtime value.
+
+ The to bind this object.
+
+
+
+
+ Returns the responsible for binding operations performed on this object.
+
+ The expression tree representation of the runtime value.
+
+ The to bind this object.
+
+
+
+
+ Creates a new instance of the . All child tokens are recursively cloned.
+
+ A new instance of the .
+
+
+
+ Adds an object to the annotation list of this .
+
+ The annotation to add.
+
+
+
+ Get the first annotation object of the specified type from this .
+
+ The type of the annotation to retrieve.
+ The first annotation object that matches the specified type, or null if no annotation is of the specified type.
+
+
+
+ Gets the first annotation object of the specified type from this .
+
+ The of the annotation to retrieve.
+ The first annotation object that matches the specified type, or null if no annotation is of the specified type.
+
+
+
+ Gets a collection of annotations of the specified type for this .
+
+ The type of the annotations to retrieve.
+ An that contains the annotations for this .
+
+
+
+ Gets a collection of annotations of the specified type for this .
+
+ The of the annotations to retrieve.
+ An of that contains the annotations that match the specified type for this .
+
+
+
+ Removes the annotations of the specified type from this .
+
+ The type of annotations to remove.
+
+
+
+ Removes the annotations of the specified type from this .
+
+ The of annotations to remove.
+
+
+
+ Compares tokens to determine whether they are equal.
+
+
+
+
+ Determines whether the specified objects are equal.
+
+ The first object of type to compare.
+ The second object of type to compare.
+
+ true if the specified objects are equal; otherwise, false.
+
+
+
+
+ Returns a hash code for the specified object.
+
+ The for which a hash code is to be returned.
+ A hash code for the specified object.
+ The type of is a reference type and is null.
+
+
+
+ Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data.
+
+
+
+
+ Gets the at the reader's current position.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The token to read from.
+
+
+
+ Initializes a new instance of the class.
+
+ The token to read from.
+ The initial path of the token. It is prepended to the returned .
+
+
+
+ Reads the next JSON token from the underlying .
+
+
+ true if the next token was read successfully; false if there are no more tokens to read.
+
+
+
+
+ Gets the path of the current JSON token.
+
+
+
+
+ Specifies the type of token.
+
+
+
+
+ No token type has been set.
+
+
+
+
+ A JSON object.
+
+
+
+
+ A JSON array.
+
+
+
+
+ A JSON constructor.
+
+
+
+
+ A JSON object property.
+
+
+
+
+ A comment.
+
+
+
+
+ An integer value.
+
+
+
+
+ A float value.
+
+
+
+
+ A string value.
+
+
+
+
+ A boolean value.
+
+
+
+
+ A null value.
+
+
+
+
+ An undefined value.
+
+
+
+
+ A date value.
+
+
+
+
+ A raw JSON value.
+
+
+
+
+ A collection of bytes value.
+
+
+
+
+ A Guid value.
+
+
+
+
+ A Uri value.
+
+
+
+
+ A TimeSpan value.
+
+
+
+
+ Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
+
+
+
+
+ Gets the at the writer's current position.
+
+
+
+
+ Gets the token being written.
+
+ The token being written.
+
+
+
+ Initializes a new instance of the class writing to the given .
+
+ The container being written to.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Flushes whatever is in the buffer to the underlying .
+
+
+
+
+ Closes this writer.
+ If is set to true, the JSON is auto-completed.
+
+
+ Setting to true has no additional effect, since the underlying is a type that cannot be closed.
+
+
+
+
+ Writes the beginning of a JSON object.
+
+
+
+
+ Writes the beginning of a JSON array.
+
+
+
+
+ Writes the start of a constructor with the given name.
+
+ The name of the constructor.
+
+
+
+ Writes the end.
+
+ The token.
+
+
+
+ Writes the property name of a name/value pair on a JSON object.
+
+ The name of the property.
+
+
+
+ Writes a value.
+ An error will be raised if the value cannot be written as a single JSON token.
+
+ The value to write.
+
+
+
+ Writes a null value.
+
+
+
+
+ Writes an undefined value.
+
+
+
+
+ Writes raw JSON.
+
+ The raw JSON to write.
+
+
+
+ Writes a comment /*...*/ containing the specified text.
+
+ Text to place inside the comment.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a [] value.
+
+ The [] value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Represents a value in JSON (string, integer, date, etc).
+
+
+
+
+ Writes this token to a asynchronously.
+
+ A into which this method will write.
+ The token to monitor for cancellation requests.
+ A collection of which will be used when writing the token.
+ A that represents the asynchronous write operation.
+
+
+
+ Initializes a new instance of the class from another object.
+
+ A object to copy from.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Gets a value indicating whether this token has child tokens.
+
+
+ true if this token has child values; otherwise, false.
+
+
+
+
+ Creates a comment with the given value.
+
+ The value.
+ A comment with the given value.
+
+
+
+ Creates a string with the given value.
+
+ The value.
+ A string with the given value.
+
+
+
+ Creates a null value.
+
+ A null value.
+
+
+
+ Creates a undefined value.
+
+ A undefined value.
+
+
+
+ Gets the node type for this .
+
+ The type.
+
+
+
+ Gets or sets the underlying token value.
+
+ The underlying token value.
+
+
+
+ Writes this token to a .
+
+ A into which this method will write.
+ A collection of s which will be used when writing the token.
+
+
+
+ Indicates whether the current object is equal to another object of the same type.
+
+
+ true if the current object is equal to the parameter; otherwise, false.
+
+ An object to compare with this object.
+
+
+
+ Determines whether the specified is equal to the current .
+
+ The to compare with the current .
+
+ true if the specified is equal to the current ; otherwise, false.
+
+
+
+
+ Serves as a hash function for a particular type.
+
+
+ A hash code for the current .
+
+
+
+
+ Returns a that represents this instance.
+
+
+ ToString() returns a non-JSON string value for tokens with a type of .
+ If you want the JSON for all token types then you should use .
+
+
+ A that represents this instance.
+
+
+
+
+ Returns a that represents this instance.
+
+ The format.
+
+ A that represents this instance.
+
+
+
+
+ Returns a that represents this instance.
+
+ The format provider.
+
+ A that represents this instance.
+
+
+
+
+ Returns a that represents this instance.
+
+ The format.
+ The format provider.
+
+ A that represents this instance.
+
+
+
+
+ Returns the responsible for binding operations performed on this object.
+
+ The expression tree representation of the runtime value.
+
+ The to bind this object.
+
+
+
+
+ Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
+
+ An object to compare with this instance.
+
+ A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
+ Value
+ Meaning
+ Less than zero
+ This instance is less than .
+ Zero
+ This instance is equal to .
+ Greater than zero
+ This instance is greater than .
+
+
+ is not of the same type as this instance.
+
+
+
+
+ Specifies how line information is handled when loading JSON.
+
+
+
+
+ Ignore line information.
+
+
+
+
+ Load line information.
+
+
+
+
+ Specifies how JSON arrays are merged together.
+
+
+
+ Concatenate arrays.
+
+
+ Union arrays, skipping items that already exist.
+
+
+ Replace all array items.
+
+
+ Merge array items together, matched by index.
+
+
+
+ Specifies how null value properties are merged.
+
+
+
+
+ The content's null value properties will be ignored during merging.
+
+
+
+
+ The content's null value properties will be merged.
+
+
+
+
+ Specifies the member serialization options for the .
+
+
+
+
+ All public members are serialized by default. Members can be excluded using or .
+ This is the default member serialization mode.
+
+
+
+
+ Only members marked with or are serialized.
+ This member serialization mode can also be set by marking the class with .
+
+
+
+
+ All public and private fields are serialized. Members can be excluded using or .
+ This member serialization mode can also be set by marking the class with
+ and setting IgnoreSerializableAttribute on to false.
+
+
+
+
+ Specifies metadata property handling options for the .
+
+
+
+
+ Read metadata properties located at the start of a JSON object.
+
+
+
+
+ Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance.
+
+
+
+
+ Do not try to read metadata properties.
+
+
+
+
+ Specifies missing member handling options for the .
+
+
+
+
+ Ignore a missing member and do not attempt to deserialize it.
+
+
+
+
+ Throw a when a missing member is encountered during deserialization.
+
+
+
+
+ Specifies null value handling options for the .
+
+
+
+
+
+
+
+
+ Include null values when serializing and deserializing objects.
+
+
+
+
+ Ignore null values when serializing and deserializing objects.
+
+
+
+
+ Specifies how object creation is handled by the .
+
+
+
+
+ Reuse existing objects, create new objects when needed.
+
+
+
+
+ Only reuse existing objects.
+
+
+
+
+ Always create new objects.
+
+
+
+
+ Specifies reference handling options for the .
+ Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement .
+
+
+
+
+
+
+
+ Do not preserve references when serializing types.
+
+
+
+
+ Preserve references when serializing into a JSON object structure.
+
+
+
+
+ Preserve references when serializing into a JSON array structure.
+
+
+
+
+ Preserve references when serializing.
+
+
+
+
+ Specifies reference loop handling options for the .
+
+
+
+
+ Throw a when a loop is encountered.
+
+
+
+
+ Ignore loop references and do not serialize.
+
+
+
+
+ Serialize loop references.
+
+
+
+
+ Indicating whether a property is required.
+
+
+
+
+ The property is not required. The default state.
+
+
+
+
+ The property must be defined in JSON but can be a null value.
+
+
+
+
+ The property must be defined in JSON and cannot be a null value.
+
+
+
+
+ The property is not required but it cannot be a null value.
+
+
+
+
+
+ Contains the JSON schema extension methods.
+
+
+ JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+
+ Determines whether the is valid.
+
+
+ JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+
+ true if the specified is valid; otherwise, false.
+
+
+
+
+
+ Determines whether the is valid.
+
+
+ JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+ When this method returns, contains any error messages generated while validating.
+
+ true if the specified is valid; otherwise, false.
+
+
+
+
+
+ Validates the specified .
+
+
+ JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+
+
+
+
+ Validates the specified .
+
+
+ JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.
+
+
+ The source to test.
+ The schema to test with.
+ The validation event handler.
+
+
+
+
+ An in-memory representation of a JSON Schema.
+
+
+ JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ Gets or sets the id.
+
+
+
+
+ Gets or sets the title.
+
+
+
+
+ Gets or sets whether the object is required.
+
+
+
+
+ Gets or sets whether the object is read-only.
+
+
+
+
+ Gets or sets whether the object is visible to users.
+
+
+
+
+ Gets or sets whether the object is transient.
+
+
+
+
+ Gets or sets the description of the object.
+
+
+
+
+ Gets or sets the types of values allowed by the object.
+
+ The type.
+
+
+
+ Gets or sets the pattern.
+
+ The pattern.
+
+
+
+ Gets or sets the minimum length.
+
+ The minimum length.
+
+
+
+ Gets or sets the maximum length.
+
+ The maximum length.
+
+
+
+ Gets or sets a number that the value should be divisible by.
+
+ A number that the value should be divisible by.
+
+
+
+ Gets or sets the minimum.
+
+ The minimum.
+
+
+
+ Gets or sets the maximum.
+
+ The maximum.
+
+
+
+ Gets or sets a flag indicating whether the value can not equal the number defined by the minimum attribute ().
+
+ A flag indicating whether the value can not equal the number defined by the minimum attribute ().
+
+
+
+ Gets or sets a flag indicating whether the value can not equal the number defined by the maximum attribute ().
+
+ A flag indicating whether the value can not equal the number defined by the maximum attribute ().
+
+
+
+ Gets or sets the minimum number of items.
+
+ The minimum number of items.
+
+
+
+ Gets or sets the maximum number of items.
+
+ The maximum number of items.
+
+
+
+ Gets or sets the of items.
+
+ The of items.
+
+
+
+ Gets or sets a value indicating whether items in an array are validated using the instance at their array position from .
+
+
+ true if items are validated using their array position; otherwise, false.
+
+
+
+
+ Gets or sets the of additional items.
+
+ The of additional items.
+
+
+
+ Gets or sets a value indicating whether additional items are allowed.
+
+
+ true if additional items are allowed; otherwise, false.
+
+
+
+
+ Gets or sets whether the array items must be unique.
+
+
+
+
+ Gets or sets the of properties.
+
+ The of properties.
+
+
+
+ Gets or sets the of additional properties.
+
+ The of additional properties.
+
+
+
+ Gets or sets the pattern properties.
+
+ The pattern properties.
+
+
+
+ Gets or sets a value indicating whether additional properties are allowed.
+
+
+ true if additional properties are allowed; otherwise, false.
+
+
+
+
+ Gets or sets the required property if this property is present.
+
+ The required property if this property is present.
+
+
+
+ Gets or sets the a collection of valid enum values allowed.
+
+ A collection of valid enum values allowed.
+
+
+
+ Gets or sets disallowed types.
+
+ The disallowed types.
+
+
+
+ Gets or sets the default value.
+
+ The default value.
+
+
+
+ Gets or sets the collection of that this schema extends.
+
+ The collection of that this schema extends.
+
+
+
+ Gets or sets the format.
+
+ The format.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Reads a from the specified .
+
+ The containing the JSON Schema to read.
+ The object representing the JSON Schema.
+
+
+
+ Reads a from the specified .
+
+ The containing the JSON Schema to read.
+ The to use when resolving schema references.
+ The object representing the JSON Schema.
+
+
+
+ Load a from a string that contains JSON Schema.
+
+ A that contains JSON Schema.
+ A populated from the string that contains JSON Schema.
+
+
+
+ Load a from a string that contains JSON Schema using the specified .
+
+ A that contains JSON Schema.
+ The resolver.
+ A populated from the string that contains JSON Schema.
+
+
+
+ Writes this schema to a .
+
+ A into which this method will write.
+
+
+
+ Writes this schema to a using the specified .
+
+ A into which this method will write.
+ The resolver used.
+
+
+
+ Returns a that represents the current .
+
+
+ A that represents the current .
+
+
+
+
+
+ Returns detailed information about the schema exception.
+
+
+ JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ Gets the line number indicating where the error occurred.
+
+ The line number indicating where the error occurred.
+
+
+
+ Gets the line position indicating where the error occurred.
+
+ The line position indicating where the error occurred.
+
+
+
+ Gets the path to the JSON where the error occurred.
+
+ The path to the JSON where the error occurred.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class
+ with a specified error message.
+
+ The error message that explains the reason for the exception.
+
+
+
+ Initializes a new instance of the class
+ with a specified error message and a reference to the inner exception that is the cause of this exception.
+
+ The error message that explains the reason for the exception.
+ The exception that is the cause of the current exception, or null if no inner exception is specified.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+
+ Generates a from a specified .
+
+
+ JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ Gets or sets how undefined schemas are handled by the serializer.
+
+
+
+
+ Gets or sets the contract resolver.
+
+ The contract resolver.
+
+
+
+ Generate a from the specified type.
+
+ The type to generate a from.
+ A generated from the specified type.
+
+
+
+ Generate a from the specified type.
+
+ The type to generate a from.
+ The used to resolve schema references.
+ A generated from the specified type.
+
+
+
+ Generate a from the specified type.
+
+ The type to generate a from.
+ Specify whether the generated root will be nullable.
+ A generated from the specified type.
+
+
+
+ Generate a from the specified type.
+
+ The type to generate a from.
+ The used to resolve schema references.
+ Specify whether the generated root will be nullable.
+ A generated from the specified type.
+
+
+
+
+ Resolves from an id.
+
+
+ JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ Gets or sets the loaded schemas.
+
+ The loaded schemas.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets a for the specified reference.
+
+ The id.
+ A for the specified reference.
+
+
+
+
+ The value types allowed by the .
+
+
+ JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ No type specified.
+
+
+
+
+ String type.
+
+
+
+
+ Float type.
+
+
+
+
+ Integer type.
+
+
+
+
+ Boolean type.
+
+
+
+
+ Object type.
+
+
+
+
+ Array type.
+
+
+
+
+ Null type.
+
+
+
+
+ Any type.
+
+
+
+
+
+ Specifies undefined schema Id handling options for the .
+
+
+ JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ Do not infer a schema Id.
+
+
+
+
+ Use the .NET type name as the schema Id.
+
+
+
+
+ Use the assembly qualified .NET type name as the schema Id.
+
+
+
+
+
+ Returns detailed information related to the .
+
+
+ JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ Gets the associated with the validation error.
+
+ The JsonSchemaException associated with the validation error.
+
+
+
+ Gets the path of the JSON location where the validation error occurred.
+
+ The path of the JSON location where the validation error occurred.
+
+
+
+ Gets the text description corresponding to the validation error.
+
+ The text description.
+
+
+
+
+ Represents the callback method that will handle JSON schema validation events and the .
+
+
+ JSON Schema validation has been moved to its own package. See https://www.newtonsoft.com/jsonschema for more details.
+
+
+
+
+
+ A camel case naming strategy.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ A flag indicating whether dictionary keys should be processed.
+
+
+ A flag indicating whether explicitly specified property names should be processed,
+ e.g. a property name customized with a .
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ A flag indicating whether dictionary keys should be processed.
+
+
+ A flag indicating whether explicitly specified property names should be processed,
+ e.g. a property name customized with a .
+
+
+ A flag indicating whether extension data names should be processed.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Resolves the specified property name.
+
+ The property name to resolve.
+ The resolved property name.
+
+
+
+ Resolves member mappings for a type, camel casing property names.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Resolves the contract for a given type.
+
+ The type to resolve a contract for.
+ The contract for a given type.
+
+
+
+ Used by to resolve a for a given .
+
+
+
+
+ Gets a value indicating whether members are being get and set using dynamic code generation.
+ This value is determined by the runtime permissions available.
+
+
+ true if using dynamic code generation; otherwise, false.
+
+
+
+
+ Gets or sets the default members search flags.
+
+ The default members search flags.
+
+
+
+ Gets or sets a value indicating whether compiler generated members should be serialized.
+
+
+ true if serialized compiler generated members; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether to ignore the interface when serializing and deserializing types.
+
+
+ true if the interface will be ignored when serializing and deserializing types; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether to ignore the attribute when serializing and deserializing types.
+
+
+ true if the attribute will be ignored when serializing and deserializing types; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether to ignore IsSpecified members when serializing and deserializing types.
+
+
+ true if the IsSpecified members will be ignored when serializing and deserializing types; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether to ignore ShouldSerialize members when serializing and deserializing types.
+
+
+ true if the ShouldSerialize members will be ignored when serializing and deserializing types; otherwise, false.
+
+
+
+
+ Gets or sets the naming strategy used to resolve how property names and dictionary keys are serialized.
+
+ The naming strategy used to resolve how property names and dictionary keys are serialized.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Resolves the contract for a given type.
+
+ The type to resolve a contract for.
+ The contract for a given type.
+
+
+
+ Gets the serializable members for the type.
+
+ The type to get serializable members for.
+ The serializable members for the type.
+
+
+
+ Creates a for the given type.
+
+ Type of the object.
+ A for the given type.
+
+
+
+ Creates the constructor parameters.
+
+ The constructor to create properties for.
+ The type's member properties.
+ Properties for the given .
+
+
+
+ Creates a for the given .
+
+ The matching member property.
+ The constructor parameter.
+ A created for the given .
+
+
+
+ Resolves the default for the contract.
+
+ Type of the object.
+ The contract's default .
+
+
+
+ Creates a for the given type.
+
+ Type of the object.
+ A for the given type.
+
+
+
+ Creates a for the given type.
+
+ Type of the object.
+ A for the given type.
+
+
+
+ Creates a for the given type.
+
+ Type of the object.
+ A for the given type.
+
+
+
+ Creates a for the given type.
+
+ Type of the object.
+ A for the given type.
+
+
+
+ Creates a for the given type.
+
+ Type of the object.
+ A for the given type.
+
+
+
+ Creates a for the given type.
+
+ Type of the object.
+ A for the given type.
+
+
+
+ Creates a for the given type.
+
+ Type of the object.
+ A for the given type.
+
+
+
+ Determines which contract type is created for the given type.
+
+ Type of the object.
+ A for the given type.
+
+
+
+ Creates properties for the given .
+
+ The type to create properties for.
+ /// The member serialization mode for the type.
+ Properties for the given .
+
+
+
+ Creates the used by the serializer to get and set values from a member.
+
+ The member.
+ The used by the serializer to get and set values from a member.
+
+
+
+ Creates a for the given .
+
+ The member's parent .
+ The member to create a for.
+ A created for the given .
+
+
+
+ Resolves the name of the property.
+
+ Name of the property.
+ Resolved name of the property.
+
+
+
+ Resolves the name of the extension data. By default no changes are made to extension data names.
+
+ Name of the extension data.
+ Resolved name of the extension data.
+
+
+
+ Resolves the key of the dictionary. By default is used to resolve dictionary keys.
+
+ Key of the dictionary.
+ Resolved key of the dictionary.
+
+
+
+ Gets the resolved name of the property.
+
+ Name of the property.
+ Name of the property.
+
+
+
+ The default naming strategy. Property names and dictionary keys are unchanged.
+
+
+
+
+ Resolves the specified property name.
+
+ The property name to resolve.
+ The resolved property name.
+
+
+
+ The default serialization binder used when resolving and loading classes from type names.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ When overridden in a derived class, controls the binding of a serialized object to a type.
+
+ Specifies the name of the serialized object.
+ Specifies the name of the serialized object.
+
+ The type of the object the formatter creates a new instance of.
+
+
+
+
+ When overridden in a derived class, controls the binding of a serialized object to a type.
+
+ The type of the object the formatter creates a new instance of.
+ Specifies the name of the serialized object.
+ Specifies the name of the serialized object.
+
+
+
+ Represents a trace writer that writes to the application's instances.
+
+
+
+
+ Gets the that will be used to filter the trace messages passed to the writer.
+ For example a filter level of will exclude messages and include ,
+ and messages.
+
+
+ The that will be used to filter the trace messages passed to the writer.
+
+
+
+
+ Writes the specified trace level, message and optional exception.
+
+ The at which to write this trace.
+ The trace message.
+ The trace exception. This parameter is optional.
+
+
+
+ Get and set values for a using dynamic methods.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The member info.
+
+
+
+ Sets the value.
+
+ The target to set the value on.
+ The value to set on the target.
+
+
+
+ Gets the value.
+
+ The target to get the value from.
+ The value.
+
+
+
+ Provides information surrounding an error.
+
+
+
+
+ Gets the error.
+
+ The error.
+
+
+
+ Gets the original object that caused the error.
+
+ The original object that caused the error.
+
+
+
+ Gets the member that caused the error.
+
+ The member that caused the error.
+
+
+
+ Gets the path of the JSON location where the error occurred.
+
+ The path of the JSON location where the error occurred.
+
+
+
+ Gets or sets a value indicating whether this is handled.
+
+ true if handled; otherwise, false.
+
+
+
+ Provides data for the Error event.
+
+
+
+
+ Gets the current object the error event is being raised against.
+
+ The current object the error event is being raised against.
+
+
+
+ Gets the error context.
+
+ The error context.
+
+
+
+ Initializes a new instance of the class.
+
+ The current object.
+ The error context.
+
+
+
+ Get and set values for a using dynamic methods.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The member info.
+
+
+
+ Sets the value.
+
+ The target to set the value on.
+ The value to set on the target.
+
+
+
+ Gets the value.
+
+ The target to get the value from.
+ The value.
+
+
+
+ Provides methods to get attributes.
+
+
+
+
+ Returns a collection of all of the attributes, or an empty collection if there are no attributes.
+
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
+
+ The type of the attributes.
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ Used by to resolve a for a given .
+
+
+
+
+
+
+
+
+ Resolves the contract for a given type.
+
+ The type to resolve a contract for.
+ The contract for a given type.
+
+
+
+ Used to resolve references when serializing and deserializing JSON by the .
+
+
+
+
+ Resolves a reference to its object.
+
+ The serialization context.
+ The reference to resolve.
+ The object that was resolved from the reference.
+
+
+
+ Gets the reference for the specified object.
+
+ The serialization context.
+ The object to get a reference for.
+ The reference to the object.
+
+
+
+ Determines whether the specified object is referenced.
+
+ The serialization context.
+ The object to test for a reference.
+
+ true if the specified object is referenced; otherwise, false.
+
+
+
+
+ Adds a reference to the specified object.
+
+ The serialization context.
+ The reference.
+ The object to reference.
+
+
+
+ Allows users to control class loading and mandate what class to load.
+
+
+
+
+ When implemented, controls the binding of a serialized object to a type.
+
+ Specifies the name of the serialized object.
+ Specifies the name of the serialized object
+ The type of the object the formatter creates a new instance of.
+
+
+
+ When implemented, controls the binding of a serialized object to a type.
+
+ The type of the object the formatter creates a new instance of.
+ Specifies the name of the serialized object.
+ Specifies the name of the serialized object.
+
+
+
+ Represents a trace writer.
+
+
+
+
+ Gets the that will be used to filter the trace messages passed to the writer.
+ For example a filter level of will exclude messages and include ,
+ and messages.
+
+ The that will be used to filter the trace messages passed to the writer.
+
+
+
+ Writes the specified trace level, message and optional exception.
+
+ The at which to write this trace.
+ The trace message.
+ The trace exception. This parameter is optional.
+
+
+
+ Provides methods to get and set values.
+
+
+
+
+ Sets the value.
+
+ The target to set the value on.
+ The value to set on the target.
+
+
+
+ Gets the value.
+
+ The target to get the value from.
+ The value.
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Gets the of the collection items.
+
+ The of the collection items.
+
+
+
+ Gets a value indicating whether the collection type is a multidimensional array.
+
+ true if the collection type is a multidimensional array; otherwise, false.
+
+
+
+ Gets or sets the function used to create the object. When set this function will override .
+
+ The function used to create the object.
+
+
+
+ Gets a value indicating whether the creator has a parameter with the collection values.
+
+ true if the creator has a parameter with the collection values; otherwise, false.
+
+
+
+ Initializes a new instance of the class.
+
+ The underlying type for the contract.
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Gets or sets the default collection items .
+
+ The converter.
+
+
+
+ Gets or sets a value indicating whether the collection items preserve object references.
+
+ true if collection items preserve object references; otherwise, false.
+
+
+
+ Gets or sets the collection item reference loop handling.
+
+ The reference loop handling.
+
+
+
+ Gets or sets the collection item type name handling.
+
+ The type name handling.
+
+
+
+ Initializes a new instance of the class.
+
+ The underlying type for the contract.
+
+
+
+ Handles serialization callback events.
+
+ The object that raised the callback event.
+ The streaming context.
+
+
+
+ Handles serialization error callback events.
+
+ The object that raised the callback event.
+ The streaming context.
+ The error context.
+
+
+
+ Sets extension data for an object during deserialization.
+
+ The object to set extension data on.
+ The extension data key.
+ The extension data value.
+
+
+
+ Gets extension data for an object during serialization.
+
+ The object to set extension data on.
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Gets the underlying type for the contract.
+
+ The underlying type for the contract.
+
+
+
+ Gets or sets the type created during deserialization.
+
+ The type created during deserialization.
+
+
+
+ Gets or sets whether this type contract is serialized as a reference.
+
+ Whether this type contract is serialized as a reference.
+
+
+
+ Gets or sets the default for this contract.
+
+ The converter.
+
+
+
+ Gets the internally resolved for the contract's type.
+ This converter is used as a fallback converter when no other converter is resolved.
+ Setting will always override this converter.
+
+
+
+
+ Gets or sets all methods called immediately after deserialization of the object.
+
+ The methods called immediately after deserialization of the object.
+
+
+
+ Gets or sets all methods called during deserialization of the object.
+
+ The methods called during deserialization of the object.
+
+
+
+ Gets or sets all methods called after serialization of the object graph.
+
+ The methods called after serialization of the object graph.
+
+
+
+ Gets or sets all methods called before serialization of the object.
+
+ The methods called before serialization of the object.
+
+
+
+ Gets or sets all method called when an error is thrown during the serialization of the object.
+
+ The methods called when an error is thrown during the serialization of the object.
+
+
+
+ Gets or sets the default creator method used to create the object.
+
+ The default creator method used to create the object.
+
+
+
+ Gets or sets a value indicating whether the default creator is non-public.
+
+ true if the default object creator is non-public; otherwise, false.
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Gets or sets the dictionary key resolver.
+
+ The dictionary key resolver.
+
+
+
+ Gets the of the dictionary keys.
+
+ The of the dictionary keys.
+
+
+
+ Gets the of the dictionary values.
+
+ The of the dictionary values.
+
+
+
+ Gets or sets the function used to create the object. When set this function will override .
+
+ The function used to create the object.
+
+
+
+ Gets a value indicating whether the creator has a parameter with the dictionary values.
+
+ true if the creator has a parameter with the dictionary values; otherwise, false.
+
+
+
+ Initializes a new instance of the class.
+
+ The underlying type for the contract.
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Gets the object's properties.
+
+ The object's properties.
+
+
+
+ Gets or sets the property name resolver.
+
+ The property name resolver.
+
+
+
+ Initializes a new instance of the class.
+
+ The underlying type for the contract.
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Gets or sets the object constructor.
+
+ The object constructor.
+
+
+
+ Initializes a new instance of the class.
+
+ The underlying type for the contract.
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The underlying type for the contract.
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Gets or sets the object member serialization.
+
+ The member object serialization.
+
+
+
+ Gets or sets the missing member handling used when deserializing this object.
+
+ The missing member handling.
+
+
+
+ Gets or sets a value that indicates whether the object's properties are required.
+
+
+ A value indicating whether the object's properties are required.
+
+
+
+
+ Gets or sets how the object's properties with null values are handled during serialization and deserialization.
+
+ How the object's properties with null values are handled during serialization and deserialization.
+
+
+
+ Gets the object's properties.
+
+ The object's properties.
+
+
+
+ Gets a collection of instances that define the parameters used with .
+
+
+
+
+ Gets or sets the function used to create the object. When set this function will override .
+ This function is called with a collection of arguments which are defined by the collection.
+
+ The function used to create the object.
+
+
+
+ Gets or sets the extension data setter.
+
+
+
+
+ Gets or sets the extension data getter.
+
+
+
+
+ Gets or sets the extension data value type.
+
+
+
+
+ Gets or sets the extension data name resolver.
+
+ The extension data name resolver.
+
+
+
+ Initializes a new instance of the class.
+
+ The underlying type for the contract.
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The underlying type for the contract.
+
+
+
+ Maps a JSON property to a .NET member or constructor parameter.
+
+
+
+
+ Gets or sets the name of the property.
+
+ The name of the property.
+
+
+
+ Gets or sets the type that declared this property.
+
+ The type that declared this property.
+
+
+
+ Gets or sets the order of serialization of a member.
+
+ The numeric order of serialization.
+
+
+
+ Gets or sets the name of the underlying member or parameter.
+
+ The name of the underlying member or parameter.
+
+
+
+ Gets the that will get and set the during serialization.
+
+ The that will get and set the during serialization.
+
+
+
+ Gets or sets the for this property.
+
+ The for this property.
+
+
+
+ Gets or sets the type of the property.
+
+ The type of the property.
+
+
+
+ Gets or sets the for the property.
+ If set this converter takes precedence over the contract converter for the property type.
+
+ The converter.
+
+
+
+ Gets or sets the member converter.
+
+ The member converter.
+
+
+
+ Gets or sets a value indicating whether this is ignored.
+
+ true if ignored; otherwise, false.
+
+
+
+ Gets or sets a value indicating whether this is readable.
+
+ true if readable; otherwise, false.
+
+
+
+ Gets or sets a value indicating whether this is writable.
+
+ true if writable; otherwise, false.
+
+
+
+ Gets or sets a value indicating whether this has a member attribute.
+
+ true if has a member attribute; otherwise, false.
+
+
+
+ Gets the default value.
+
+ The default value.
+
+
+
+ Gets or sets a value indicating whether this is required.
+
+ A value indicating whether this is required.
+
+
+
+ Gets a value indicating whether has a value specified.
+
+
+
+
+ Gets or sets a value indicating whether this property preserves object references.
+
+
+ true if this instance is reference; otherwise, false.
+
+
+
+
+ Gets or sets the property null value handling.
+
+ The null value handling.
+
+
+
+ Gets or sets the property default value handling.
+
+ The default value handling.
+
+
+
+ Gets or sets the property reference loop handling.
+
+ The reference loop handling.
+
+
+
+ Gets or sets the property object creation handling.
+
+ The object creation handling.
+
+
+
+ Gets or sets or sets the type name handling.
+
+ The type name handling.
+
+
+
+ Gets or sets a predicate used to determine whether the property should be serialized.
+
+ A predicate used to determine whether the property should be serialized.
+
+
+
+ Gets or sets a predicate used to determine whether the property should be deserialized.
+
+ A predicate used to determine whether the property should be deserialized.
+
+
+
+ Gets or sets a predicate used to determine whether the property should be serialized.
+
+ A predicate used to determine whether the property should be serialized.
+
+
+
+ Gets or sets an action used to set whether the property has been deserialized.
+
+ An action used to set whether the property has been deserialized.
+
+
+
+ Returns a that represents this instance.
+
+
+ A that represents this instance.
+
+
+
+
+ Gets or sets the converter used when serializing the property's collection items.
+
+ The collection's items converter.
+
+
+
+ Gets or sets whether this property's collection items are serialized as a reference.
+
+ Whether this property's collection items are serialized as a reference.
+
+
+
+ Gets or sets the type name handling used when serializing the property's collection items.
+
+ The collection's items type name handling.
+
+
+
+ Gets or sets the reference loop handling used when serializing the property's collection items.
+
+ The collection's items reference loop handling.
+
+
+
+ A collection of objects.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The type.
+
+
+
+ When implemented in a derived class, extracts the key from the specified element.
+
+ The element from which to extract the key.
+ The key for the specified element.
+
+
+
+ Adds a object.
+
+ The property to add to the collection.
+
+
+
+ Gets the closest matching object.
+ First attempts to get an exact case match of and then
+ a case insensitive match.
+
+ Name of the property.
+ A matching property if found.
+
+
+
+ Gets a property by property name.
+
+ The name of the property to get.
+ Type property name string comparison.
+ A matching property if found.
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The underlying type for the contract.
+
+
+
+ Lookup and create an instance of the type described by the argument.
+
+ The type to create.
+ Optional arguments to pass to an initializing constructor of the JsonConverter.
+ If null, the default constructor is used.
+
+
+
+ A kebab case naming strategy.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ A flag indicating whether dictionary keys should be processed.
+
+
+ A flag indicating whether explicitly specified property names should be processed,
+ e.g. a property name customized with a .
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ A flag indicating whether dictionary keys should be processed.
+
+
+ A flag indicating whether explicitly specified property names should be processed,
+ e.g. a property name customized with a .
+
+
+ A flag indicating whether extension data names should be processed.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Resolves the specified property name.
+
+ The property name to resolve.
+ The resolved property name.
+
+
+
+ Represents a trace writer that writes to memory. When the trace message limit is
+ reached then old trace messages will be removed as new messages are added.
+
+
+
+
+ Gets the that will be used to filter the trace messages passed to the writer.
+ For example a filter level of will exclude messages and include ,
+ and messages.
+
+
+ The that will be used to filter the trace messages passed to the writer.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Writes the specified trace level, message and optional exception.
+
+ The at which to write this trace.
+ The trace message.
+ The trace exception. This parameter is optional.
+
+
+
+ Returns an enumeration of the most recent trace messages.
+
+ An enumeration of the most recent trace messages.
+
+
+
+ Returns a of the most recent trace messages.
+
+
+ A of the most recent trace messages.
+
+
+
+
+ A base class for resolving how property names and dictionary keys are serialized.
+
+
+
+
+ A flag indicating whether dictionary keys should be processed.
+ Defaults to false.
+
+
+
+
+ A flag indicating whether extension data names should be processed.
+ Defaults to false.
+
+
+
+
+ A flag indicating whether explicitly specified property names,
+ e.g. a property name customized with a , should be processed.
+ Defaults to false.
+
+
+
+
+ Gets the serialized name for a given property name.
+
+ The initial property name.
+ A flag indicating whether the property has had a name explicitly specified.
+ The serialized property name.
+
+
+
+ Gets the serialized name for a given extension data name.
+
+ The initial extension data name.
+ The serialized extension data name.
+
+
+
+ Gets the serialized key for a given dictionary key.
+
+ The initial dictionary key.
+ The serialized dictionary key.
+
+
+
+ Resolves the specified property name.
+
+ The property name to resolve.
+ The resolved property name.
+
+
+
+ Hash code calculation
+
+
+
+
+
+ Object equality implementation
+
+
+
+
+
+
+ Compare to another NamingStrategy
+
+
+
+
+
+
+ Represents a method that constructs an object.
+
+ The object type to create.
+
+
+
+ When applied to a method, specifies that the method is called when an error occurs serializing an object.
+
+
+
+
+ Provides methods to get attributes from a , , or .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The instance to get attributes for. This parameter should be a , , or .
+
+
+
+ Returns a collection of all of the attributes, or an empty collection if there are no attributes.
+
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ Returns a collection of attributes, identified by type, or an empty collection if there are no attributes.
+
+ The type of the attributes.
+ When true, look up the hierarchy chain for the inherited custom attribute.
+ A collection of s, or an empty collection.
+
+
+
+ Get and set values for a using reflection.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The member info.
+
+
+
+ Sets the value.
+
+ The target to set the value on.
+ The value to set on the target.
+
+
+
+ Gets the value.
+
+ The target to get the value from.
+ The value.
+
+
+
+ A snake case naming strategy.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ A flag indicating whether dictionary keys should be processed.
+
+
+ A flag indicating whether explicitly specified property names should be processed,
+ e.g. a property name customized with a .
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ A flag indicating whether dictionary keys should be processed.
+
+
+ A flag indicating whether explicitly specified property names should be processed,
+ e.g. a property name customized with a .
+
+
+ A flag indicating whether extension data names should be processed.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Resolves the specified property name.
+
+ The property name to resolve.
+ The resolved property name.
+
+
+
+ Specifies how strings are escaped when writing JSON text.
+
+
+
+
+ Only control characters (e.g. newline) are escaped.
+
+
+
+
+ All non-ASCII and control characters (e.g. newline) are escaped.
+
+
+
+
+ HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped.
+
+
+
+
+ Indicates the method that will be used during deserialization for locating and loading assemblies.
+
+
+
+
+ In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the LoadWithPartialName method of the class is used to load the assembly.
+
+
+
+
+ In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The Load method of the class is used to load the assembly.
+
+
+
+
+ Specifies type name handling options for the .
+
+
+ should be used with caution when your application deserializes JSON from an external source.
+ Incoming types should be validated with a custom
+ when deserializing with a value other than .
+
+
+
+
+ Do not include the .NET type name when serializing types.
+
+
+
+
+ Include the .NET type name when serializing into a JSON object structure.
+
+
+
+
+ Include the .NET type name when serializing into a JSON array structure.
+
+
+
+
+ Always include the .NET type name when serializing.
+
+
+
+
+ Include the .NET type name when the type of the object being serialized is not the same as its declared type.
+ Note that this doesn't include the root serialized object by default. To include the root object's type name in JSON
+ you must specify a root type object with
+ or .
+
+
+
+
+ Determines whether the collection is null or empty.
+
+ The collection.
+
+ true if the collection is null or empty; otherwise, false.
+
+
+
+
+ Adds the elements of the specified collection to the specified generic .
+
+ The list to add to.
+ The collection of elements to add.
+
+
+
+ Converts the value to the specified type. If the value is unable to be converted, the
+ value is checked whether it assignable to the specified type.
+
+ The value to convert.
+ The culture to use when converting.
+ The type to convert or cast the value to.
+
+ The converted type. If conversion was unsuccessful, the initial value
+ is returned if assignable to the target type.
+
+
+
+
+ Helper method for generating a MetaObject which calls a
+ specific method on Dynamic that returns a result
+
+
+
+
+ Helper method for generating a MetaObject which calls a
+ specific method on Dynamic, but uses one of the arguments for
+ the result.
+
+
+
+
+ Helper method for generating a MetaObject which calls a
+ specific method on Dynamic, but uses one of the arguments for
+ the result.
+
+
+
+
+ Returns a Restrictions object which includes our current restrictions merged
+ with a restriction limiting our type
+
+
+
+
+ Helper class for serializing immutable collections.
+ Note that this is used by all builds, even those that don't support immutable collections, in case the DLL is GACed
+ https://github.com/JamesNK/Newtonsoft.Json/issues/652
+
+
+
+
+ Gets the type of the typed collection's items.
+
+ The type.
+ The type of the typed collection's items.
+
+
+
+ Gets the member's underlying type.
+
+ The member.
+ The underlying type of the member.
+
+
+
+ Determines whether the property is an indexed property.
+
+ The property.
+
+ true if the property is an indexed property; otherwise, false.
+
+
+
+
+ Gets the member's value on the object.
+
+ The member.
+ The target object.
+ The member's value on the object.
+
+
+
+ Sets the member's value on the target object.
+
+ The member.
+ The target.
+ The value.
+
+
+
+ Determines whether the specified MemberInfo can be read.
+
+ The MemberInfo to determine whether can be read.
+ /// if set to true then allow the member to be gotten non-publicly.
+
+ true if the specified MemberInfo can be read; otherwise, false.
+
+
+
+
+ Determines whether the specified MemberInfo can be set.
+
+ The MemberInfo to determine whether can be set.
+ if set to true then allow the member to be set non-publicly.
+ if set to true then allow the member to be set if read-only.
+
+ true if the specified MemberInfo can be set; otherwise, false.
+
+
+
+
+ Builds a string. Unlike this class lets you reuse its internal buffer.
+
+
+
+
+ Determines whether the string is all white space. Empty string will return false.
+
+ The string to test whether it is all white space.
+
+ true if the string is all white space; otherwise, false.
+
+
+
+
+ Specifies the state of the .
+
+
+
+
+ An exception has been thrown, which has left the in an invalid state.
+ You may call the method to put the in the Closed state.
+ Any other method calls result in an being thrown.
+
+
+
+
+ The method has been called.
+
+
+
+
+ An object is being written.
+
+
+
+
+ An array is being written.
+
+
+
+
+ A constructor is being written.
+
+
+
+
+ A property is being written.
+
+
+
+
+ A write method has not been called.
+
+
+
+ Specifies that an output will not be null even if the corresponding type allows it.
+
+
+ Specifies that when a method returns , the parameter will not be null even if the corresponding type allows it.
+
+
+ Initializes the attribute with the specified return value condition.
+
+ The return value condition. If the method returns this value, the associated parameter will not be null.
+
+
+
+ Gets the return value condition.
+
+
+ Specifies that an output may be null even if the corresponding type disallows it.
+
+
+ Specifies that null is allowed as an input even if the corresponding type disallows it.
+
+
+
+ Specifies that the method will not return if the associated Boolean parameter is passed the specified value.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to
+ the associated parameter matches this value.
+
+
+
+ Gets the condition parameter value.
+
+
+
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Npgsql.dll b/SalesPacking_MES_API_Project/bin/Debug/Npgsql.dll
new file mode 100644
index 0000000..2b262d8
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/Npgsql.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Npgsql.xml b/SalesPacking_MES_API_Project/bin/Debug/Npgsql.xml
new file mode 100644
index 0000000..f05a11f
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/Npgsql.xml
@@ -0,0 +1,11543 @@
+
+
+
+ Npgsql
+
+
+
+
+ Indicates that the specified method requires the ability to generate new code at runtime,
+ for example through .
+
+
+ This allows tools to understand which methods are unsafe to call when compiling ahead of time.
+
+
+
+
+ Initializes a new instance of the class
+ with the specified message.
+
+
+ A message that contains information about the usage of dynamic code.
+
+
+
+
+ Gets a message that contains information about the usage of dynamic code.
+
+
+
+
+ Gets or sets an optional URL that contains more information about the method,
+ why it requires dynamic code, and what options a consumer has to deal with it.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Exception thrown when the program executes an instruction that was thought to be unreachable.
+
+
+
+
+ Initializes a new instance of the class with the default error message.
+
+
+
+
+ Initializes a new instance of the
+ class with a specified error message.
+
+ The error message that explains the reason for the exception.
+
+
+
+ Initializes a new instance of the
+ class with a specified error message and a reference to the inner exception that is the cause of
+ this exception.
+
+ The error message that explains the reason for the exception.
+ The exception that is the cause of the current exception.
+
+
+
+ The name of the compiler feature.
+
+
+
+
+ If true, the compiler can choose to allow access to the location where this attribute is applied if it does not understand .
+
+
+
+
+ The used for the ref structs C# feature.
+
+
+
+
+ The used for the required members C# feature.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class with the specified message.
+
+ An optional message associated with this attribute instance.
+
+
+
+ Returns the optional message associated with this attribute instance.
+
+
+
+
+ Returns the optional URL associated with this attribute instance.
+
+
+
+
+ Gets the singleton instance.
+
+
+
+
+ Determines whether two object references refer to the same object instance.
+
+ The first object to compare.
+ The second object to compare.
+
+ if both and refer to the same object instance
+ or if both are ; otherwise, .
+
+
+ This API is a wrapper around .
+ It is not necessarily equivalent to calling .
+
+
+
+
+ Returns a hash code for the specified object. The returned hash code is based on the object
+ identity, not on the contents of the object.
+
+ The object for which to retrieve the hash code.
+ A hash code for the identity of .
+
+ This API is a wrapper around .
+ It is not necessarily equivalent to calling .
+
+
+
+
+ Returns a reference to the 0th element of the ReadOnlySpan. If the ReadOnlySpan is empty, returns a reference to fake non-null pointer. Such a reference
+ can be used for pinning but must never be dereferenced. This is useful for interop with methods that do not accept null pointers for zero-sized buffers.
+
+
+
+
+ Returns a reference to the 0th element of the ReadOnlySpan. If the ReadOnlySpan is empty, returns a reference to fake non-null pointer. Such a reference
+ can be used for pinning but must never be dereferenced. This is useful for interop with methods that do not accept null pointers for zero-sized buffers.
+
+
+
+
+ Decodes the specified to s using the specified
+ and outputs the result to .
+
+ The which represents how the data in is encoded.
+ The to decode to characters.
+ The destination buffer to which the decoded characters will be written.
+ The number of chars written to .
+ Thrown if is not large enough to contain the encoded form of .
+ Thrown if contains data that cannot be decoded and is configured
+ to throw an exception when such data is seen.
+
+
+
+ A set of extension methods to to allow runtime compatibility.
+
+
+
+
+ Appends the provided to the .
+
+ The to append to.
+ The to append.
+
+
+
+ Gets a that will complete when this completes, when the specified timeout expires, or when the specified has cancellation requested.
+
+ The representing the asynchronous wait.
+ The timeout after which the should be faulted with a if it hasn't otherwise completed.
+ The to monitor for a cancellation request.
+ The representing the asynchronous wait.
+ This method reproduces new to the .NET 6.0 API .WaitAsync.
+
+
+
+ Note that this message doesn't actually contain the data, but only the length. Data is processed
+ directly from the connector's buffer.
+
+
+
+
+ DataRow is special in that it does not parse the actual contents of the backend message,
+ because in sequential mode the message will be traversed and processed sequentially by
+ .
+
+
+
+
+ Error and notice message field codes
+
+
+
+
+ A RowDescription message sent from the backend.
+
+
+ See https://www.postgresql.org/docs/current/static/protocol-message-formats.html
+
+
+
+
+ Given a string name, returns the field's ordinal index in the row.
+
+
+
+
+ Given a string name, returns the field's ordinal index in the row.
+
+
+
+
+ A descriptive record on a single field received from PostgreSQL.
+ See RowDescription in https://www.postgresql.org/docs/current/static/protocol-message-formats.html
+
+
+
+
+ The field name.
+
+
+
+
+ The object ID of the field's data type.
+
+
+
+
+ The data type size (see pg_type.typlen). Note that negative values denote variable-width types.
+
+
+
+
+ The type modifier (see pg_attribute.atttypmod). The meaning of the modifier is type-specific.
+
+
+
+
+ If the field can be identified as a column of a specific table, the object ID of the table; otherwise zero.
+
+
+
+
+ If the field can be identified as a column of a specific table, the attribute number of the column; otherwise zero.
+
+
+
+
+ The format code being used for the field.
+ Currently will be text or binary.
+ In a RowDescription returned from the statement variant of Describe, the format code is not yet known and will always be zero.
+
+
+
+
+ Returns a string that represents the current object.
+
+
+
+
+ Base class for all classes which represent a message sent by the PostgreSQL backend.
+
+
+
+
+ Specifies the type of SQL statement, e.g. SELECT
+
+
+
+ Streaming
+
+
+ Entire value should be buffered
+
+
+ Fixed size value should be buffered
+
+
+ Custom requirements
+
+
+
+ CompositeFieldInfo constructor.
+
+ Name of the field.
+ Type info for reading/writing.
+ The nominal field type, this may differ from the typeInfo.PgTypeId when the field is a domain type.
+
+
+
+ Create temporary storage for all values that come before the constructor parameters can be saturated.
+
+
+
+
+ A reference to the type that houses the static method points to.
+ The continuation
+
+
+ A reference to the type that houses the static method points to.
+ The continuation
+
+
+ Note that for BIT(1), this resolver will return a bool by default, to align with SqlClient
+ (see discussion https://github.com/npgsql/npgsql/pull/362#issuecomment-59622101).
+
+
+ A converter to map strongly typed apis onto boxed converter results to produce a strongly typed converter over T.
+
+
+ Special value converter to be able to use struct converters as System.Nullable converters, it delegates all behavior to the effective converter.
+
+
+ Big endian array of numeric digits
+
+
+
+
+
+
+ If the destination ends up being too small the builder allocates instead
+
+
+
+
+
+
+
+
+ Whether the input consists of any non zero bits
+
+
+ Adapted from BigInteger, to allow us to operate directly on stack allocated bits
+
+
+
+ Hacky temporary measure used by EFCore.PG to extract user-configured enum mappings. Accessed via reflection only.
+
+
+
+
+ A factory which get generate instances of , which describe a database
+ and the types it contains. When first connecting to a database, Npgsql will attempt to load information
+ about it via this factory.
+
+
+
+
+ Given a connection, loads all necessary information about the connected database, e.g. its types.
+ A factory should only handle the exact database type it was meant for, and return null otherwise.
+
+
+ An object describing the database to which is connected, or null if the
+ database isn't of the correct type and isn't handled by this factory.
+
+
+
+
+ An Npgsql resolver for type info. Used by Npgsql to read and write values to PostgreSQL.
+
+
+
+
+ Resolve a type info for a given type and data type name, at least one value will be non-null.
+
+ The clr type being requested.
+ The postgres type being requested.
+ Used for configuration state and Npgsql type info or PostgreSQL type catalog lookups.
+ A result, or null if there was no match.
+
+
+
+ Represents a connection to a PostgreSQL backend. Unlike NpgsqlConnection objects, which are
+ exposed to users, connectors are internal to Npgsql and are recycled by the connection pool.
+
+
+
+
+ The physical connection socket to the backend.
+
+
+
+
+ The physical connection stream to the backend, without anything on top.
+
+
+
+
+ The physical connection stream to the backend, layered with an SSL/TLS stream if in secure mode.
+
+
+
+
+ The parsed connection string.
+
+
+
+
+ Same as , except that it does not throw an exception if an invalid char is
+ encountered (exception fallback), but rather replaces it with a question mark character (replacement
+ fallback).
+
+
+
+
+ Buffer used for reading data.
+
+
+
+
+ If we read a data row that's bigger than , we allocate an oversize buffer.
+ The original (smaller) buffer is stored here, and restored when the connection is reset.
+
+
+
+
+ Buffer used for writing data.
+
+
+
+
+ The secret key of the backend for this connector, used for query cancellation.
+
+
+
+
+ The process ID of the backend for this connector.
+
+
+
+
+ The user name that has been inferred when the connector was opened
+
+
+
+
+ A unique ID identifying this connector, used for logging. Currently mapped to BackendProcessId
+
+
+
+
+ Information about PostgreSQL and PostgreSQL-like databases (e.g. type definitions, capabilities...).
+
+
+
+
+ The current transaction status for this connector.
+
+
+
+
+ A transaction object for this connector. Since only one transaction can be in progress at any given time,
+ this instance is recycled. To check whether a transaction is currently in progress on this connector,
+ see .
+
+
+
+
+ The NpgsqlConnection that (currently) owns this connector. Null if the connector isn't
+ owned (i.e. idle in the pool)
+
+
+
+
+ The number of messages that were prepended to the current message chain, but not yet sent.
+ Note that this only tracks messages which produce a ReadyForQuery message
+
+
+
+
+ A ManualResetEventSlim used to make sure a cancellation request doesn't run
+ while we're reading responses for the prepended query
+ as we can't gracefully handle their cancellation.
+
+
+
+
+ If the connector is currently in COPY mode, holds a reference to the importer/exporter object.
+ Otherwise null.
+
+
+
+
+ Holds all run-time parameters received from the backend (via ParameterStatus messages)
+
+
+
+
+ Holds all run-time parameters in raw, binary format for efficient handling without allocations.
+
+
+
+
+ If this connector was broken, this contains the exception that caused the break.
+
+
+
+
+
+ Used by the pool to indicate that I/O is currently in progress on this connector, so that another write
+ isn't started concurrently. Note that since we have only one write loop, this is only ever usedto
+ protect against an over-capacity writes into a connector that's currently *asynchronously* writing.
+
+
+ It is guaranteed that the currently-executing
+ Specifically, reading may occur - and the connector may even be returned to the pool - before this is
+ released.
+
+
+
+
+
+
+
+
+
+
+
+ A lock that's taken while a cancellation is being delivered; new queries are blocked until the
+ cancellation is delivered. This reduces the chance that a cancellation meant for a previous
+ command will accidentally cancel a later one, see #615.
+
+
+
+
+ A lock that's taken to make sure no other concurrent operation is running.
+ Break takes it to set the state of the connector.
+ Anyone else should immediately check the state and exit
+ if the connector is closed.
+
+
+
+
+ A lock that's used to wait for the Cleanup to complete while breaking the connection.
+
+
+
+
+ The command currently being executed by the connector, null otherwise.
+ Used only for concurrent use error reporting purposes.
+
+
+
+
+ The connector source (e.g. pool) from where this connector came, and to which it will be returned.
+ Note that in multi-host scenarios, this references the host-specific rather than the
+ .
+
+
+
+
+ Contains the UTC timestamp when this connector was opened, used to implement
+ .
+
+
+
+
+ The minimum timeout that can be set on internal commands such as COMMIT, ROLLBACK.
+
+ Precision is seconds
+
+
+
+ Gets the current state of the connector
+
+
+
+
+ Returns whether the connector is open, regardless of any task it is currently performing
+
+
+
+
+ Opens the physical connection to the server.
+
+ Usually called by the RequestConnector
+ Method of the connection pool manager.
+
+
+
+ Prepends a message to be sent at the beginning of the next message chain.
+
+
+
+
+ Reads backend messages and discards them, stopping only after a message of the given type has
+ been seen. Only a sync I/O version of this method exists - in async flows we inline the loop
+ rather than calling an additional async method, in order to avoid the overhead.
+
+
+
+
+ Handles a new transaction indicator received on a ReadyForQuery message
+
+
+
+
+ Returns whether SSL is being used for the connection
+
+
+
+
+ Returns whether SCRAM-SHA256 is being user for the connection
+
+
+
+
+ Returns whether SCRAM-SHA256-PLUS is being user for the connection
+
+
+
+
+ Creates another connector and sends a cancel request through it for this connector. This method never throws, but returns
+ whether the cancellation attempt failed.
+
+
+
+ if the cancellation request was successfully delivered, or if it was skipped because a previous
+ request was already sent. if the cancellation request could not be delivered because of an exception
+ (the method logs internally).
+
+
+ This does not indicate whether the cancellation attempt was successful on the PostgreSQL side - only if the request was
+ delivered.
+
+
+
+
+
+ Starts a new cancellable operation within an ongoing user action. This should only be used if a single user
+ action spans several different actions which each has its own cancellation tokens. For example, a command
+ execution is a single user action, but spans ExecuteReaderQuery, NextResult, Read and so forth.
+
+
+ Only one level of nested operations is supported. It is an error to call this method if it has previously
+ been called, and the returned was not disposed.
+
+
+ The cancellation token provided by the user. Callbacks will be registered on this token for executing the
+ cancellation, and the token will be included in any thrown .
+
+
+ If , PostgreSQL cancellation will be attempted when the user requests cancellation or
+ a timeout occurs, followed by a client-side socket cancellation once
+ has elapsed. If ,
+ PostgreSQL cancellation will be skipped and client-socket cancellation will occur immediately.
+
+
+
+
+ Closes ongoing operations, i.e. an open reader exists or a COPY operation still in progress, as
+ part of a connection close.
+
+
+
+
+ Called when an unexpected message has been received during an action. Breaks the
+ connector and returns the appropriate message.
+
+
+
+
+ Called when a connector becomes completely unusable, e.g. when an unexpected I/O exception is raised or when
+ we lose protocol sync.
+ Note that fatal errors during the Open phase do *not* pass through here.
+
+ The exception that caused the break.
+ The exception given in for chaining calls.
+
+
+
+ Closes the socket and cleans up client-side resources associated with this connector.
+
+
+ This method doesn't actually perform any meaningful I/O, and therefore is sync-only.
+
+
+
+
+ Called when a pooled connection is closed, and its connector is returned to the pool.
+ Resets the connector back to its initial state, releasing server-side sources
+ (e.g. prepared statements), resetting parameters to their defaults, and resetting client-side
+ state
+
+
+
+
+ The connector may have allocated an oversize read buffer, to hold big rows in non-sequential reading.
+ This switches us back to the original one and returns the buffer to .
+
+
+
+
+ Starts a user action. This makes sure that another action isn't already in progress, handles synchronization with keepalive,
+ and sets up cancellation.
+
+ The new state to be set when entering this user action.
+
+ The that is starting execution - if an is
+ thrown, it will reference this.
+
+
+ The cancellation token provided by the user. Callbacks will be registered on this token for executing the cancellation,
+ and the token will be included in any thrown .
+
+
+ If , PostgreSQL cancellation will be attempted when the user requests cancellation or a timeout
+ occurs, followed by a client-side socket cancellation once has
+ elapsed. If , PostgreSQL cancellation will be skipped and client-socket cancellation will occur
+ immediately.
+
+
+
+
+ An IDisposable wrapper around .
+
+
+
+
+ The connection's timezone as reported by PostgreSQL, in the IANA/Olson database format.
+
+
+
+
+ Creates and returns a object associated with the .
+
+ The text of the query.
+ A object.
+
+
+
+ Creates and returns a object associated with the .
+
+ A object.
+
+
+
+ This Stream is placed between NegotiateStream and the socket's NetworkStream (or SSLStream). It intercepts
+ traffic and performs the following operations:
+ * Outgoing messages are framed in PostgreSQL's PasswordMessage, and incoming are stripped of it.
+ * NegotiateStream frames payloads with a 5-byte header, which PostgreSQL doesn't understand. This header is
+ stripped from outgoing messages and added to incoming ones.
+
+
+ See https://referencesource.microsoft.com/#System/net/System/Net/_StreamFramer.cs,16417e735f0e9530,references
+
+
+
+
+ Expresses the exact state of a connector.
+
+
+
+
+ The connector has either not yet been opened or has been closed.
+
+
+
+
+ The connector is currently connecting to a PostgreSQL server.
+
+
+
+
+ The connector is connected and may be used to send a new query.
+
+
+
+
+ The connector is waiting for a response to a query which has been sent to the server.
+
+
+
+
+ The connector is currently fetching and processing query results.
+
+
+
+
+ The connector is currently waiting for asynchronous notifications to arrive.
+
+
+
+
+ The connection was broken because an unexpected error occurred which left it in an unknown state.
+ This state isn't implemented yet.
+
+
+
+
+ The connector is engaged in a COPY operation.
+
+
+
+
+ The connector is engaged in streaming replication.
+
+
+
+
+ Currently not in a transaction block
+
+
+
+
+ Currently in a transaction block
+
+
+
+
+ Currently in a failed transaction block (queries will be rejected until block is ended)
+
+
+
+
+ A new transaction has been requested but not yet transmitted to the backend. It will be transmitted
+ prepended to the next query.
+ This is a client-side state option only, and is never transmitted from the backend.
+
+
+
+
+ Specifies how to load/parse DataRow messages as they're received from the backend.
+
+
+
+
+ Load DataRows in non-sequential mode
+
+
+
+
+ Load DataRows in sequential mode
+
+
+
+
+ Skip DataRow messages altogether
+
+
+
+
+ Base class for implementations which provide information about PostgreSQL and PostgreSQL-like databases
+ (e.g. type definitions, capabilities...).
+
+
+
+
+ The hostname of IP address of the database.
+
+
+
+
+ The TCP port of the database.
+
+
+
+
+ The database name.
+
+
+
+
+ The version of the PostgreSQL database we're connected to, as reported in the "server_version" parameter.
+ Exposed via .
+
+
+
+
+ The PostgreSQL version string as returned by the server_version option. Populated during loading.
+
+
+
+
+ Whether the backend supports range types.
+
+
+
+
+ Whether the backend supports multirange types.
+
+
+
+
+ Whether the backend supports enum types.
+
+
+
+
+ Whether the backend supports the CLOSE ALL statement.
+
+
+
+
+ Whether the backend supports advisory locks.
+
+
+
+
+ Whether the backend supports the DISCARD SEQUENCES statement.
+
+
+
+
+ Whether the backend supports the UNLISTEN statement.
+
+
+
+
+ Whether the backend supports the DISCARD TEMP statement.
+
+
+
+
+ Whether the backend supports the DISCARD statement.
+
+
+
+
+ Reports whether the backend uses the newer integer timestamp representation.
+
+
+
+
+ Whether the database supports transactions.
+
+
+
+
+ Indexes backend types by their type OID.
+
+
+
+
+ Indexes backend types by their PostgreSQL internal name, including namespace (e.g. pg_catalog.int4).
+ Only used for enums and composites.
+
+
+
+
+ Indexes backend types by their PostgreSQL name, not including namespace.
+ If more than one type exists with the same name (i.e. in different namespaces) this
+ table will contain an entry with a null value.
+ Only used for enums and composites.
+
+
+
+
+ Initializes the instance of .
+
+
+
+
+ Initializes the instance of .
+
+
+
+
+ Provides all PostgreSQL types detected in this database.
+
+
+
+
+
+ Parses a PostgreSQL server version (e.g. 10.1, 9.6.3) and returns a CLR Version.
+
+
+
+
+ Registers a new database info factory, which is used to load information about databases.
+
+
+
+
+ A buffer used by Npgsql to read data from the socket efficiently.
+ Provides methods which decode different values types and tracks the current position.
+
+
+
+
+ Timeout for sync and async reads
+
+
+
+
+ The total byte length of the buffer.
+
+
+
+
+ Same as , except that it does not throw an exception if an invalid char is
+ encountered (exception fallback), but rather replaces it with a question mark character (replacement
+ fallback).
+
+
+
+
+ The minimum buffer size possible.
+
+
+
+
+ Ensures that bytes are available in the buffer, and if
+ not, reads from the socket until enough is available.
+
+
+
+
+ Does not perform any I/O - assuming that the bytes to be skipped are in the memory buffer.
+
+
+
+
+ Skip a given number of bytes.
+
+
+
+
+ Seeks the first null terminator (\0) and returns the string up to it. The buffer must already
+ contain the entire string and its terminator.
+
+
+
+
+ Seeks the first null terminator (\0) and returns the string up to it. The buffer must already
+ contain the entire string and its terminator. If any character could not be decoded, a question
+ mark character is returned instead of throwing an exception.
+
+
+
+
+ Seeks the first null terminator (\0) and returns the string up to it. Reads additional data from the network if a null
+ terminator isn't found in the buffered data.
+
+
+
+ Does not throw ODE.
+
+
+
+ A buffer used by Npgsql to write data to the socket efficiently.
+ Provides methods which encode different values types and tracks the current position.
+
+
+
+
+ Timeout for sync and async writes
+
+
+
+
+ The total byte length of the buffer.
+
+
+
+
+ The minimum buffer size possible.
+
+
+
+
+ Returns all contents currently written to the buffer (but not flushed).
+ Useful for pre-generating messages.
+
+
+
+
+ Whether this converter can handle the given format and with which buffer requirements.
+
+ The data format.
+ Returns the buffer requirements.
+ Returns true if the given data format is supported.
+ The buffer requirements should not cover database NULL reads or writes, these are handled by the caller.
+
+
+ Never DbNull (struct types)
+
+
+ DbNull when *user code*
+
+
+ DbNull when value is null
+
+
+ DbNull when value is null or DBNull
+
+
+
+ Gets the appropriate converter solely based on PgTypeId.
+
+
+ The converter resolution.
+
+ Implementations should not return new instances of the possible converters that can be returned, instead its expected these are cached once used.
+ Array or other collection converters depend on this to cache their own converter - which wraps the element converter - with the cache key being the element converter reference.
+
+
+
+
+ Gets the appropriate converter to read with based on the given field info.
+
+
+ The converter resolution.
+
+ Implementations should not return new instances of the possible converters that can be returned, instead its expected these are cached once used.
+ Array or other collection converters depend on this to cache their own converter - which wraps the element converter - with the cache key being the element converter reference.
+
+
+
+
+ Gets the appropriate converter to write with based on the given value.
+
+
+
+ The converter resolution.
+
+ Implementations should not return new instances of the possible converters that can be returned, instead its expected these are
+ cached once used. Array or other collection converters depend on this to cache their own converter - which wraps the element
+ converter - with the cache key being the element converter reference.
+
+
+
+ ReadBytes without memory management, the next read invalidates the underlying buffer(s), only use this for intermediate transformations.
+
+
+ ReadBytesAsync without memory management, the next read invalidates the underlying buffer(s), only use this for intermediate transformations.
+
+
+
+
+
+
+ The stream length, if any
+
+
+
+ Used by GetSchema to be able to attempt to resolve all type catalog types without exceptions.
+
+
+
+ Whether options should return a portable identifier (data type name) to prevent any generated id (oid) confusion across backends, this comes with a perf penalty.
+
+
+ A reference to the type that houses the static method points to.
+ The continuation
+
+
+ Throws if the instance is a PgResolverTypeInfo.
+
+
+ When result is null, the value was interpreted to be a SQL NULL.
+
+
+ When result is null or DBNull, the value was interpreted to be a SQL NULL.
+
+
+ Whether Converter.TypeToConvert matches PgTypeInfo.Type, if it doesn't object apis should be used.
+
+
+
+ Gets a that can be used to write to the underlying buffer.
+
+ Blocking flushes during writes that were expected to be non-blocking and vice versa cause an exception to be thrown unless allowMixedIO is set to true, false by default.
+ The stream.
+
+
+
+ Represents the fully-qualified name of a PostgreSQL type.
+
+
+
+
+ The maximum length of names in an unmodified PostgreSQL installation.
+
+
+ We need to respect this to get to valid names when deriving them (for multirange/arrays etc).
+ This does not include the namespace.
+
+
+
+
+ Well-known PostgreSQL data type names.
+
+
+
+ Base field type shared between tables and composites.
+
+
+
+ A discriminated union of and .
+
+
+
+
+
+
+
+
+
+ When this flag is true, and both type and pgTypeId are non null, a default info for the pgTypeId can be returned if an exact match
+ can't be found.
+
+
+
+
+
+
+
+
+
+
+
+ Signals whether a resolver based TypeInfo can keep its PgTypeId undecided or whether it should follow mapping.DataTypeName.
+
+
+
+ Match when the clr type and datatype name both match.
+ It's also the only requirement that participates in clr type fallback matching.
+
+
+ Match when the datatype name or CLR type matches while the other also matches or is absent.
+
+
+ Match when the datatype name matches and the clr type also matches or is absent.
+
+
+ A factory for well-known PgConverters.
+
+
+ Returns the first default converter or the first converter that matches both type and dataTypeName.
+ If just a type was passed and no default was found we return the first converter with a type match.
+
+
+ Returns whether type matches any of the types we register pg arrays as.
+
+
+
+ Launches MIT Kerberos klist and parses out the default principal from it.
+ Caches the result.
+
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+
+ When multiplexing is enabled, determines the maximum number of outgoing bytes to buffer before
+ flushing to the network.
+
+
+
+
+ A component which translates a CLR name (e.g. SomeClass) into a database name (e.g. some_class)
+ according to some scheme.
+ Used for mapping enum and composite types.
+
+
+
+
+ Given a CLR type name (e.g class, struct, enum), translates its name to a database type name.
+
+
+
+
+ Given a CLR member name (property or field), translates its name to a database type name.
+
+
+
+
+ A name translator which preserves CLR names (e.g. SomeClass) when mapping names to the database.
+
+
+
+
+ Given a CLR type name (e.g class, struct, enum), translates its name to a database type name.
+
+
+
+
+ Given a CLR member name (property or field), translates its name to a database type name.
+
+
+
+
+ A name translator which converts standard CLR names (e.g. SomeClass) to snake-case database
+ names (some_class)
+
+
+
+
+ Creates a new .
+
+
+ An object that supplies culture-specific casing rules.
+ This will be used when converting names to lower case.
+ If then will be used.
+
+
+
+
+ Creates a new .
+
+
+ Uses the legacy naming convention if , otherwise it uses the new naming convention.
+
+
+ An object that supplies culture-specific casing rules.
+ This will be used when converting names to lower case.
+ If then will be used.
+
+
+
+
+ Given a CLR type name (e.g class, struct, enum), translates its name to a database type name.
+
+
+
+
+ Given a CLR member name (property or field), translates its name to a database type name.
+
+
+
+
+ Converts a string to its snake_case equivalent.
+
+ The value to convert.
+
+ An object that supplies culture-specific casing rules.
+ This will be used when converting names to lower case.
+ If then will be used.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Controls whether to place error barriers between all batch commands within this batch. Default to .
+
+
+
+ By default, any exception in a command causes later commands in the batch to be skipped, and earlier commands to be rolled back.
+ Enabling error barriers ensures that errors do not affect other commands in the batch.
+
+
+ Note that if the batch is executed within an explicit transaction, the first error places the transaction in a failed state,
+ causing all later commands to fail in any case. As a result, this option is useful mainly when there is no explicit transaction.
+
+
+ At the PostgreSQL wire protocol level, this corresponds to inserting a Sync message between each command, rather than grouping
+ all the batch's commands behind a single terminating Sync.
+
+
+ To control error barriers on a command-by-command basis, see .
+
+
+
+
+
+ Marks all of the batch's result columns as either known or unknown.
+ Unknown results column are requested them from PostgreSQL in text format, and Npgsql makes no
+ attempt to parse them. They will be accessible as strings only.
+
+
+
+
+ Initializes a new .
+
+ A that represents the connection to a PostgreSQL server.
+ The in which the executes.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Creates a new instance of a object.
+
+ An object.
+
+
+
+ Returns whether the method is implemented.
+
+
+
+
+ Appends an error barrier after this batch command. Defaults to the value of on the
+ batch.
+
+
+
+ By default, any exception in a command causes later commands in the batch to be skipped, and earlier commands to be rolled back.
+ Appending an error barrier ensures that errors from this command (or previous ones) won't cause later commands to be skipped,
+ and that errors from later commands won't cause this command (or previous ones) to be rolled back).
+
+
+ Note that if the batch is executed within an explicit transaction, the first error places the transaction in a failed state,
+ causing all later commands to fail in any case. As a result, this option is useful mainly when there is no explicit transaction.
+
+
+ At the PostgreSQL wire protocol level, this corresponds to inserting a Sync message after this command, rather than grouping
+ all the batch's commands behind a single terminating Sync.
+
+
+ Controlling error barriers on a command-by-command basis is an advanced feature, consider enabling error barriers for the entire
+ batch via .
+
+
+
+
+
+ The number of rows affected or retrieved.
+
+
+ See the command tag in the CommandComplete message for the meaning of this value for each ,
+ https://www.postgresql.org/docs/current/static/protocol-message-formats.html
+
+
+
+
+
+
+
+ Specifies the type of query, e.g. SELECT.
+
+
+
+
+ For an INSERT, the object ID of the inserted row if is 1 and
+ the target table has OIDs; otherwise 0.
+
+
+
+
+ The SQL as it will be sent to PostgreSQL, after any rewriting performed by Npgsql (e.g. named to positional parameter
+ placeholders).
+
+
+
+
+ The list of parameters, ordered positionally, as it will be sent to PostgreSQL.
+
+
+ If the user provided positional parameters, this references the (in batching mode) or the list
+ backing (in non-batching) mode. If the user provided named parameters, this is a
+ separate list containing the re-ordered parameters.
+
+
+
+
+ The RowDescription message for this query. If null, the query does not return rows (e.g. INSERT)
+
+
+
+
+ If this statement has been automatically prepared, references the .
+ Null otherwise.
+
+
+
+
+ Holds the server-side (prepared) ASCII statement name. Empty string for non-prepared statements.
+
+
+
+
+ Whether this statement has already been prepared (including automatic preparation).
+
+
+
+
+ Returns a prepared statement for this statement (including automatic preparation).
+
+
+
+
+ Initializes a new .
+
+
+
+
+ Initializes a new .
+
+ The text of the .
+
+
+
+ Returns the .
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Provides an API for a binary COPY TO operation, a high-performance data export mechanism from
+ a PostgreSQL table. Initiated by
+
+
+
+
+ The number of columns, as returned from the backend in the CopyInResponse.
+
+
+
+
+ Current timeout
+
+
+
+
+ Starts reading a single row, must be invoked before reading any columns.
+
+
+ The number of columns in the row. -1 if there are no further rows.
+ Note: This will currently be the same value for all rows, but this may change in the future.
+
+
+
+
+ Starts reading a single row, must be invoked before reading any columns.
+
+
+ The number of columns in the row. -1 if there are no further rows.
+ Note: This will currently be the same value for all rows, but this may change in the future.
+
+
+
+
+ Reads the current column, returns its value and moves ahead to the next column.
+ If the column is null an exception is thrown.
+
+
+ The type of the column to be read. This must correspond to the actual type or data
+ corruption will occur. If in doubt, use to manually
+ specify the type.
+
+ The value of the column
+
+
+
+ Reads the current column, returns its value and moves ahead to the next column.
+ If the column is null an exception is thrown.
+
+
+ The type of the column to be read. This must correspond to the actual type or data
+ corruption will occur. If in doubt, use to manually
+ specify the type.
+
+ The value of the column
+
+
+
+ Reads the current column, returns its value according to and
+ moves ahead to the next column.
+ If the column is null an exception is thrown.
+
+
+ In some cases isn't enough to infer the data type coming in from the
+ database. This parameter can be used to unambiguously specify the type. An example is the JSONB
+ type, for which will be a simple string but for which
+ must be specified as .
+
+ The .NET type of the column to be read.
+ The value of the column
+
+
+
+ Reads the current column, returns its value according to and
+ moves ahead to the next column.
+ If the column is null an exception is thrown.
+
+
+ In some cases isn't enough to infer the data type coming in from the
+ database. This parameter can be used to unambiguously specify the type. An example is the JSONB
+ type, for which will be a simple string but for which
+ must be specified as .
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ The .NET type of the column to be read.
+ The value of the column
+
+
+
+ Returns whether the current column is null.
+
+
+
+
+ Skips the current column without interpreting its value.
+
+
+
+
+ Skips the current column without interpreting its value.
+
+
+
+
+ Cancels an ongoing export.
+
+
+
+
+ Async cancels an ongoing export.
+
+
+
+
+ Completes that binary export and sets the connection back to idle state
+
+
+
+
+ Async completes that binary export and sets the connection back to idle state
+
+
+
+
+
+ Provides an API for a binary COPY FROM operation, a high-performance data import mechanism to
+ a PostgreSQL table. Initiated by
+
+
+ See https://www.postgresql.org/docs/current/static/sql-copy.html.
+
+
+
+
+ The number of columns in the current (not-yet-written) row.
+
+
+
+
+ The number of columns, as returned from the backend in the CopyInResponse.
+
+
+
+
+ Current timeout
+
+
+
+
+ Starts writing a single row, must be invoked before writing any columns.
+
+
+
+
+ Starts writing a single row, must be invoked before writing any columns.
+
+
+
+
+ Writes a single column in the current row.
+
+ The value to be written
+
+ The type of the column to be written. This must correspond to the actual type or data
+ corruption will occur. If in doubt, use to manually
+ specify the type.
+
+
+
+
+ Writes a single column in the current row.
+
+ The value to be written
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+ The type of the column to be written. This must correspond to the actual type or data
+ corruption will occur. If in doubt, use to manually
+ specify the type.
+
+
+
+
+ Writes a single column in the current row as type .
+
+ The value to be written
+
+ In some cases isn't enough to infer the data type to be written to
+ the database. This parameter can be used to unambiguously specify the type. An example is
+ the JSONB type, for which will be a simple string but for which
+ must be specified as .
+
+ The .NET type of the column to be written.
+
+
+
+ Writes a single column in the current row as type .
+
+ The value to be written
+
+ In some cases isn't enough to infer the data type to be written to
+ the database. This parameter can be used to unambiguously specify the type. An example is
+ the JSONB type, for which will be a simple string but for which
+ must be specified as .
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ The .NET type of the column to be written.
+
+
+
+ Writes a single column in the current row as type .
+
+ The value to be written
+
+ In some cases isn't enough to infer the data type to be written to
+ the database. This parameter and be used to unambiguously specify the type.
+
+ The .NET type of the column to be written.
+
+
+
+ Writes a single column in the current row as type .
+
+ The value to be written
+
+ In some cases isn't enough to infer the data type to be written to
+ the database. This parameter and be used to unambiguously specify the type.
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ The .NET type of the column to be written.
+
+
+
+ Writes a single null column value.
+
+
+
+
+ Writes a single null column value.
+
+
+
+
+ Writes an entire row of columns.
+ Equivalent to calling , followed by multiple
+ on each value.
+
+ An array of column values to be written as a single row
+
+
+
+ Writes an entire row of columns.
+ Equivalent to calling , followed by multiple
+ on each value.
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ An array of column values to be written as a single row
+
+
+
+ Completes the import operation. The writer is unusable after this operation.
+
+
+
+
+ Completes the import operation. The writer is unusable after this operation.
+
+
+
+
+
+ Terminates the ongoing binary import and puts the connection back into the idle state, where regular commands can be executed.
+
+
+ Note that if hasn't been invoked before calling this, the import will be cancelled and all changes will
+ be reverted.
+
+
+
+
+
+
+ Async terminates the ongoing binary import and puts the connection back into the idle state, where regular commands can be executed.
+
+
+ Note that if hasn't been invoked before calling this, the import will be cancelled and all changes will
+ be reverted.
+
+
+
+
+
+
+ Terminates the ongoing binary import and puts the connection back into the idle state, where regular commands can be executed.
+
+
+ Note that if hasn't been invoked before calling this, the import will be cancelled and all changes will
+ be reverted.
+
+
+
+
+
+
+ Async terminates the ongoing binary import and puts the connection back into the idle state, where regular commands can be executed.
+
+
+ Note that if hasn't been invoked before calling this, the import will be cancelled and all changes will
+ be reverted.
+
+
+
+
+
+ Represents a SQL statement or function (stored procedure) to execute
+ against a PostgreSQL database. This class cannot be inherited.
+
+
+
+
+ If this command is (explicitly) prepared, references the connector on which the preparation happened.
+ Used to detect when the connector was changed (i.e. connection open/close), meaning that the command
+ is no longer prepared.
+
+
+
+
+ Whether this is wrapped by an .
+
+
+
+
+ Returns details about each statement that this command has executed.
+ Is only populated when an Execute* method is called.
+
+
+
+
+ Whether this command is cached by and returned by .
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class with the text of the query.
+
+ The text of the query.
+
+
+
+ Initializes a new instance of the class with the text of the query and a
+ .
+
+ The text of the query.
+ A that represents the connection to a PostgreSQL server.
+
+
+
+ Initializes a new instance of the class with the text of the query, a
+ , and the .
+
+ The text of the query.
+ A that represents the connection to a PostgreSQL server.
+ The in which the executes.
+
+
+
+ Used when this instance is wrapped inside an .
+
+
+
+
+ Used when this instance is wrapped inside an .
+
+
+
+
+ Gets or sets the SQL statement or function (stored procedure) to execute at the data source.
+
+ The SQL statement or function (stored procedure) to execute. The default is an empty string.
+
+
+
+ Gets or sets the wait time (in seconds) before terminating the attempt to execute a command and generating an error.
+
+ The time (in seconds) to wait for the command to execute. The default value is 30 seconds.
+
+
+
+ Gets or sets a value indicating how the property is to be interpreted.
+
+
+ One of the values. The default is .
+
+
+
+
+ DB connection.
+
+
+
+
+ Gets or sets the used by this instance of the .
+
+ The connection to a data source. The default value is .
+
+
+
+ Design time visible.
+
+
+
+
+ Gets or sets how command results are applied to the DataRow when used by the
+ DbDataAdapter.Update(DataSet) method.
+
+ One of the values.
+
+
+
+ Returns whether this query will execute as a prepared (compiled) query.
+
+
+
+
+ Marks all of the query's result columns as either known or unknown.
+ Unknown result columns are requested from PostgreSQL in text format, and Npgsql makes no
+ attempt to parse them. They will be accessible as strings only.
+
+
+
+
+ Marks the query's result columns as known or unknown, on a column-by-column basis.
+ Unknown result columns are requested from PostgreSQL in text format, and Npgsql makes no
+ attempt to parse them. They will be accessible as strings only.
+
+
+ If the query includes several queries (e.g. SELECT 1; SELECT 2), this will only apply to the first
+ one. The rest of the queries will be fetched and parsed as usual.
+
+ The array size must correspond exactly to the number of result columns the query returns, or an
+ error will be raised.
+
+
+
+
+ The current state of the command
+
+
+
+
+ Creates a new instance of an object.
+
+ A object.
+
+
+
+ Creates a new instance of a object.
+
+ An object.
+
+
+
+ DB parameter collection.
+
+
+
+
+ Gets the .
+
+ The parameters of the SQL statement or function (stored procedure). The default is an empty collection.
+
+
+
+ Creates a server-side prepared statement on the PostgreSQL server.
+ This will make repeated future executions of this command much faster.
+
+
+
+
+ Creates a server-side prepared statement on the PostgreSQL server.
+ This will make repeated future executions of this command much faster.
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+
+
+ Unprepares a command, closing server-side statements associated with it.
+ Note that this only affects commands explicitly prepared with , not
+ automatically prepared statements.
+
+
+
+
+ Unprepares a command, closing server-side statements associated with it.
+ Note that this only affects commands explicitly prepared with , not
+ automatically prepared statements.
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+
+
+ Executes a SQL statement against the connection and returns the number of rows affected.
+
+ The number of rows affected if known; -1 otherwise.
+
+
+
+ Asynchronous version of
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ A task representing the asynchronous operation, with the number of rows affected if known; -1 otherwise.
+
+
+
+ Executes the query, and returns the first column of the first row
+ in the result set returned by the query. Extra columns or rows are ignored.
+
+ The first column of the first row in the result set,
+ or a null reference if the result set is empty.
+
+
+
+ Asynchronous version of
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ A task representing the asynchronous operation, with the first column of the
+ first row in the result set, or a null reference if the result set is empty.
+
+
+
+ Executes the command text against the connection.
+
+ A task representing the operation.
+
+
+
+ Executes the command text against the connection.
+
+ An instance of .
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ A task representing the asynchronous operation.
+
+
+
+ Executes the against the
+ and returns a .
+
+ One of the enumeration values that specifies the command behavior.
+ A task representing the operation.
+
+
+
+ An asynchronous version of , which executes
+ the against the
+ and returns a .
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ A task representing the asynchronous operation.
+
+
+
+ An asynchronous version of ,
+ which executes the against the
+ and returns a .
+
+ One of the enumeration values that specifies the command behavior.
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ A task representing the asynchronous operation.
+
+
+
+ DB transaction.
+
+
+
+
+ This property is ignored by Npgsql. PostgreSQL only supports a single transaction at a given time on
+ a given connection, and all commands implicitly run inside the current transaction started via
+
+
+
+
+
+ Attempts to cancel the execution of an .
+
+ As per the specs, no exception will be thrown by this method in case of failure.
+
+
+
+
+
+
+ Fixes up the text/binary flag on result columns.
+ Since Prepare() describes a statement rather than a portal, the resulting RowDescription
+ will have text format on all result columns. Fix that up.
+
+
+ Note that UnknownResultTypeList only applies to the first query, while AllResultTypesAreUnknown applies
+ to all of them.
+
+
+
+
+ Create a new command based on this one.
+
+ A new NpgsqlCommand object.
+
+
+
+ Create a new command based on this one.
+
+ A new NpgsqlCommand object.
+
+
+
+ This event is unsupported by Npgsql. Use instead.
+
+
+
+
+ This class creates database commands for automatic insert, update and delete operations.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The adapter.
+
+
+
+ Gets or sets the beginning character or characters to use when specifying database objects (for example, tables or columns) whose names contain characters such as spaces or reserved tokens.
+
+
+ The beginning character or characters to use. The default is an empty string.
+
+
+
+
+
+
+
+ Gets or sets the ending character or characters to use when specifying database objects (for example, tables or columns) whose names contain characters such as spaces or reserved tokens.
+
+
+ The ending character or characters to use. The default is an empty string.
+
+
+
+
+
+
+
+
+ This method is responsible to derive the command parameter list with values obtained from function definition.
+ It clears the Parameters collection of command. Also, if there is any parameter type which is not supported by Npgsql, an InvalidOperationException will be thrown.
+ Parameters name will be parameter1, parameter2, ... for CommandType.StoredProcedure and named after the placeholder for CommandType.Text
+
+ NpgsqlCommand whose function parameters will be obtained.
+
+
+
+ Gets the automatically generated object required
+ to perform insertions at the data source.
+
+
+ The automatically generated object required to perform insertions.
+
+
+
+
+ Gets the automatically generated object required to perform insertions
+ at the data source, optionally using columns for parameter names.
+
+
+ If , generate parameter names matching column names, if possible.
+ If , generate @p1, @p2, and so on.
+
+
+ The automatically generated object required to perform insertions.
+
+
+
+
+ Gets the automatically generated System.Data.Common.DbCommand object required
+ to perform updates at the data source.
+
+
+ The automatically generated System.Data.Common.DbCommand object required to perform updates.
+
+
+
+
+ Gets the automatically generated object required to perform updates
+ at the data source, optionally using columns for parameter names.
+
+
+ If , generate parameter names matching column names, if possible.
+ If , generate @p1, @p2, and so on.
+
+
+ The automatically generated object required to perform updates.
+
+
+
+
+ Gets the automatically generated System.Data.Common.DbCommand object required
+ to perform deletions at the data source.
+
+
+ The automatically generated System.Data.Common.DbCommand object required to perform deletions.
+
+
+
+
+ Gets the automatically generated object required to perform deletions
+ at the data source, optionally using columns for parameter names.
+
+
+ If , generate parameter names matching column names, if possible.
+ If , generate @p1, @p2, and so on.
+
+
+ The automatically generated object required to perform deletions.
+
+
+
+
+ Applies the parameter information.
+
+ The parameter.
+ The row.
+ Type of the statement.
+ If set to [where clause].
+
+
+
+ Returns the name of the specified parameter in the format of @p#.
+
+ The number to be included as part of the parameter's name..
+
+ The name of the parameter with the specified number appended as part of the parameter name.
+
+
+
+
+ Returns the full parameter name, given the partial parameter name.
+
+ The partial name of the parameter.
+
+ The full parameter name corresponding to the partial parameter name requested.
+
+
+
+
+ Returns the placeholder for the parameter in the associated SQL statement.
+
+ The number to be included as part of the parameter's name.
+
+ The name of the parameter with the specified number appended.
+
+
+
+
+ Registers the to handle the event for a .
+
+ The to be used for the update.
+
+
+
+ Adds an event handler for the event.
+
+ The sender
+ A instance containing information about the event.
+
+
+
+ Given an unquoted identifier in the correct catalog case, returns the correct quoted form of that identifier, including properly escaping any embedded quotes in the identifier.
+
+ The original unquoted identifier.
+
+ The quoted version of the identifier. Embedded quotes within the identifier are properly escaped.
+
+
+
+
+ Unquoted identifier parameter cannot be null
+
+
+
+ Given a quoted identifier, returns the correct unquoted form of that identifier, including properly un-escaping any embedded quotes in the identifier.
+
+ The identifier that will have its embedded quotes removed.
+
+ The unquoted identifier, with embedded quotes properly un-escaped.
+
+
+
+
+ Quoted identifier parameter cannot be null
+
+
+
+ This class represents a connection to a PostgreSQL server.
+
+
+
+
+ The connection string, without the password after open (unless Persist Security Info=true)
+
+
+
+
+ The original connection string provided by the user, including the password.
+
+
+
+
+ The physical connection to the database. This is when the connection is closed,
+ and also when it is open in multiplexing mode and unbound (e.g. not in a transaction).
+
+
+
+
+ The parsed connection string. Set only after the connection is opened.
+
+
+
+
+ Flag used to make sure we never double-close a connection, returning it twice to the pool.
+
+
+
+
+ The global type mapper, which contains defaults used by all new connections.
+ Modify mappings on this mapper to affect your entire application.
+
+
+
+
+ Connection-level type mapping is no longer supported. See the 7.0 release notes for configuring type mapping on NpgsqlDataSource.
+
+
+
+
+ The default TCP/IP port for PostgreSQL.
+
+
+
+
+ Maximum value for connection timeout.
+
+
+
+
+ Tracks when this connection was bound to a physical connector (e.g. at open-time, when a transaction
+ was started...).
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of with the given connection string.
+
+ The connection used to open the PostgreSQL database.
+
+
+
+ Opens a database connection with the property settings specified by the .
+
+
+
+
+ This is the asynchronous version of .
+
+
+ Do not invoke other methods and properties of the object until the returned Task is complete.
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ A task representing the asynchronous operation.
+
+
+
+ Gets or sets the string used to connect to a PostgreSQL database. See the manual for details.
+
+ The connection string that includes the server name,
+ the database name, and other parameters needed to establish
+ the initial connection. The default value is an empty string.
+
+
+
+
+ Gets or sets the delegate used to generate a password for new database connections.
+
+
+
+ This delegate is executed when a new database connection is opened that requires a password.
+
+
+ The and connection
+ string properties have precedence over this delegate: it will not be executed if a password is specified, or if the specified or
+ default Passfile contains a valid entry.
+
+
+ Due to connection pooling this delegate is only executed when a new physical connection is opened, not when reusing a connection
+ that was previously opened from the pool.
+
+
+
+
+
+ Backend server host name.
+
+
+
+
+ Backend server port.
+
+
+
+
+ Gets the time (in seconds) to wait while trying to establish a connection
+ before terminating the attempt and generating an error.
+
+ The time (in seconds) to wait for a connection to open. The default value is 15 seconds.
+
+
+
+ Gets the time (in seconds) to wait while trying to execute a command
+ before terminating the attempt and generating an error.
+
+ The time (in seconds) to wait for a command to complete. The default value is 30 seconds.
+
+
+
+ Gets the name of the current database or the database to be used after a connection is opened.
+
+ The name of the current database or the name of the database to be
+ used after a connection is opened. The default value is the empty string.
+
+
+
+ Gets the string identifying the database server (host and port)
+
+
+ The name of the database server (host and port). If the connection uses a Unix-domain socket,
+ the path to that socket is returned. The default value is the empty string.
+
+
+
+
+ User name.
+
+
+
+
+ Gets the current state of the connection.
+
+ A bitwise combination of the values. The default is Closed.
+
+
+
+ Gets whether the current state of the connection is Open or Closed
+
+ ConnectionState.Open, ConnectionState.Closed or ConnectionState.Connecting
+
+
+
+ A cached command handed out by , which is returned when disposed. Useful for reducing allocations.
+
+
+
+
+ Creates and returns a
+ object associated with the .
+
+ A object.
+
+
+
+ Creates and returns a object associated with the .
+
+ A object.
+
+
+
+ A cached batch handed out by , which is returned when disposed. Useful for reducing allocations.
+
+
+
+
+ Creates and returns a object associated with the .
+
+ A object.
+
+
+
+ Begins a database transaction with the specified isolation level.
+
+ The isolation level under which the transaction should run.
+ A object representing the new transaction.
+ Nested transactions are not supported.
+
+
+
+ Begins a database transaction.
+
+ A object representing the new transaction.
+
+ Nested transactions are not supported.
+ Transactions created by this method will have the isolation level.
+
+
+
+
+ Begins a database transaction with the specified isolation level.
+
+ The isolation level under which the transaction should run.
+ A object representing the new transaction.
+ Nested transactions are not supported.
+
+
+
+ Enlist transaction.
+
+
+
+
+ Releases the connection. If the connection is pooled, it will be returned to the pool and made available for re-use.
+ If it is non-pooled, the physical connection will be closed.
+
+
+
+
+ Releases the connection. If the connection is pooled, it will be returned to the pool and made available for re-use.
+ If it is non-pooled, the physical connection will be closed.
+
+
+
+
+ Releases all resources used by the .
+
+ when called from ;
+ when being called from the finalizer.
+
+
+
+ Releases all resources used by the .
+
+
+
+
+ Fires when PostgreSQL notices are received from PostgreSQL.
+
+
+ PostgreSQL notices are non-critical messages generated by PostgreSQL, either as a result of a user query
+ (e.g. as a warning or informational notice), or due to outside activity (e.g. if the database administrator
+ initiates a "fast" database shutdown).
+
+ Note that notices are very different from notifications (see the event).
+
+
+
+
+ Fires when PostgreSQL notifications are received from PostgreSQL.
+
+
+ PostgreSQL notifications are sent when your connection has registered for notifications on a specific channel via the
+ LISTEN command. NOTIFY can be used to generate such notifications, allowing for an inter-connection communication channel.
+
+ Note that notifications are very different from notices (see the event).
+
+
+
+
+ Returns whether SSL is being used for the connection.
+
+
+
+
+ Returns whether SCRAM-SHA256 is being user for the connection
+
+
+
+
+ Returns whether SCRAM-SHA256-PLUS is being user for the connection
+
+
+
+
+ Selects the local Secure Sockets Layer (SSL) certificate used for authentication.
+
+
+ See
+
+
+
+
+ When using SSL/TLS, this is a callback that allows customizing how the PostgreSQL-provided certificate is verified. This is an
+ advanced API, consider using or instead.
+
+
+
+ Cannot be used in conjunction with , and
+ .
+
+
+ See .
+
+
+
+
+
+ The version of the PostgreSQL server we're connected to.
+
+
+ This can only be called when the connection is open.
+
+
+ In case of a development or pre-release version this field will contain
+ the version of the next version to be released from this branch.
+
+
+
+
+
+
+ The PostgreSQL server version as returned by the server_version option.
+
+ This can only be called when the connection is open.
+
+
+
+
+
+ Process id of backend server.
+ This can only be called when there is an active connection.
+
+
+
+
+ Reports whether the backend uses the newer integer timestamp representation.
+ Note that the old floating point representation is not supported.
+ Meant for use by type plugins (e.g. NodaTime)
+
+
+
+
+ The connection's timezone as reported by PostgreSQL, in the IANA/Olson database format.
+
+
+
+
+ Holds all PostgreSQL parameters received for this connection. Is updated if the values change
+ (e.g. as a result of a SET command).
+
+
+
+
+ Begins a binary COPY FROM STDIN operation, a high-performance data import mechanism to a PostgreSQL table.
+
+ A COPY FROM STDIN SQL command
+ A which can be used to write rows and columns
+
+ See https://www.postgresql.org/docs/current/static/sql-copy.html.
+
+
+
+
+ Begins a binary COPY FROM STDIN operation, a high-performance data import mechanism to a PostgreSQL table.
+
+ A COPY FROM STDIN SQL command
+ An optional token to cancel the asynchronous operation. The default value is None.
+ A which can be used to write rows and columns
+
+ See https://www.postgresql.org/docs/current/static/sql-copy.html.
+
+
+
+
+ Begins a binary COPY TO STDOUT operation, a high-performance data export mechanism from a PostgreSQL table.
+
+ A COPY TO STDOUT SQL command
+ A which can be used to read rows and columns
+
+ See https://www.postgresql.org/docs/current/static/sql-copy.html.
+
+
+
+
+ Begins a binary COPY TO STDOUT operation, a high-performance data export mechanism from a PostgreSQL table.
+
+ A COPY TO STDOUT SQL command
+ An optional token to cancel the asynchronous operation. The default value is None.
+ A which can be used to read rows and columns
+
+ See https://www.postgresql.org/docs/current/static/sql-copy.html.
+
+
+
+
+ Begins a textual COPY FROM STDIN operation, a data import mechanism to a PostgreSQL table.
+ It is the user's responsibility to send the textual input according to the format specified
+ in .
+
+ A COPY FROM STDIN SQL command
+
+ A TextWriter that can be used to send textual data.
+
+ See https://www.postgresql.org/docs/current/static/sql-copy.html.
+
+
+
+
+ Begins a textual COPY FROM STDIN operation, a data import mechanism to a PostgreSQL table.
+ It is the user's responsibility to send the textual input according to the format specified
+ in .
+
+ A COPY FROM STDIN SQL command
+ An optional token to cancel the asynchronous operation. The default value is None.
+
+ A TextWriter that can be used to send textual data.
+
+ See https://www.postgresql.org/docs/current/static/sql-copy.html.
+
+
+
+
+ Begins a textual COPY TO STDOUT operation, a data export mechanism from a PostgreSQL table.
+ It is the user's responsibility to parse the textual input according to the format specified
+ in .
+
+ A COPY TO STDOUT SQL command
+
+ A TextReader that can be used to read textual data.
+
+ See https://www.postgresql.org/docs/current/static/sql-copy.html.
+
+
+
+
+ Begins a textual COPY TO STDOUT operation, a data export mechanism from a PostgreSQL table.
+ It is the user's responsibility to parse the textual input according to the format specified
+ in .
+
+ A COPY TO STDOUT SQL command
+ An optional token to cancel the asynchronous operation. The default value is None.
+
+ A TextReader that can be used to read textual data.
+
+ See https://www.postgresql.org/docs/current/static/sql-copy.html.
+
+
+
+
+ Begins a raw binary COPY operation (TO STDOUT or FROM STDIN), a high-performance data export/import mechanism to a PostgreSQL table.
+ Note that unlike the other COPY API methods, doesn't implement any encoding/decoding
+ and is unsuitable for structured import/export operation. It is useful mainly for exporting a table as an opaque
+ blob, for the purpose of importing it back later.
+
+ A COPY TO STDOUT or COPY FROM STDIN SQL command
+ A that can be used to read or write raw binary data.
+
+ See https://www.postgresql.org/docs/current/static/sql-copy.html.
+
+
+
+
+ Begins a raw binary COPY operation (TO STDOUT or FROM STDIN), a high-performance data export/import mechanism to a PostgreSQL table.
+ Note that unlike the other COPY API methods, doesn't implement any encoding/decoding
+ and is unsuitable for structured import/export operation. It is useful mainly for exporting a table as an opaque
+ blob, for the purpose of importing it back later.
+
+ A COPY TO STDOUT or COPY FROM STDIN SQL command
+ An optional token to cancel the asynchronous operation. The default value is None.
+ A that can be used to read or write raw binary data.
+
+ See https://www.postgresql.org/docs/current/static/sql-copy.html.
+
+
+
+
+ Waits until an asynchronous PostgreSQL messages (e.g. a notification) arrives, and
+ exits immediately. The asynchronous message is delivered via the normal events
+ (, ).
+
+
+ The time-out value, in milliseconds, passed to .
+ The default value is 0, which indicates an infinite time-out period.
+ Specifying -1 also indicates an infinite time-out period.
+
+ true if an asynchronous message was received, false if timed out.
+
+
+
+ Waits until an asynchronous PostgreSQL messages (e.g. a notification) arrives, and
+ exits immediately. The asynchronous message is delivered via the normal events
+ (, ).
+
+
+ The time-out value is passed to .
+
+ true if an asynchronous message was received, false if timed out.
+
+
+
+ Waits until an asynchronous PostgreSQL messages (e.g. a notification) arrives, and
+ exits immediately. The asynchronous message is delivered via the normal events
+ (, ).
+
+
+
+
+ Waits asynchronously until an asynchronous PostgreSQL messages (e.g. a notification)
+ arrives, and exits immediately. The asynchronous message is delivered via the normal events
+ (, ).
+
+
+ The time-out value, in milliseconds.
+ The default value is 0, which indicates an infinite time-out period.
+ Specifying -1 also indicates an infinite time-out period.
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ true if an asynchronous message was received, false if timed out.
+
+
+
+ Waits asynchronously until an asynchronous PostgreSQL messages (e.g. a notification)
+ arrives, and exits immediately. The asynchronous message is delivered via the normal events
+ (, ).
+
+
+ The time-out value as
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ true if an asynchronous message was received, false if timed out.
+
+
+
+ Waits asynchronously until an asynchronous PostgreSQL messages (e.g. a notification)
+ arrives, and exits immediately. The asynchronous message is delivered via the normal events
+ (, ).
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+
+
+ Checks whether the connection is currently bound to a connector, and if so, returns it via
+ .
+
+
+
+
+ Binds this connection to a physical connector. This happens when opening a non-multiplexing connection,
+ or when starting a transaction on a multiplexed connection.
+
+
+
+
+ Ends binding scope to the physical connection and returns it to the pool. Only useful with multiplexing on.
+
+
+ After this method is called, under no circumstances the physical connection (connector) should ever be used if multiplexing is on.
+ See #3249.
+
+
+
+
+ Returns the supported collections
+
+
+
+
+ Returns the schema collection specified by the collection name.
+
+ The collection name.
+ The collection specified.
+
+
+
+ Returns the schema collection specified by the collection name filtered by the restrictions.
+
+ The collection name.
+
+ The restriction values to filter the results. A description of the restrictions is contained
+ in the Restrictions collection.
+
+ The collection specified.
+
+
+
+ Asynchronously returns the supported collections.
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ The collection specified.
+
+
+
+ Asynchronously returns the schema collection specified by the collection name.
+
+ The collection name.
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ The collection specified.
+
+
+
+ Asynchronously returns the schema collection specified by the collection name filtered by the restrictions.
+
+ The collection name.
+
+ The restriction values to filter the results. A description of the restrictions is contained
+ in the Restrictions collection.
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ The collection specified.
+
+
+
+ Creates a closed connection with the connection string and authentication details of this message.
+
+
+
+
+ Clones this connection, replacing its connection string with the given one.
+ This allows creating a new connection with the same security information
+ (password, SSL callbacks) while changing other connection parameters (e.g.
+ database or pooling)
+
+
+
+
+ This method changes the current database by disconnecting from the actual
+ database and connecting to the specified.
+
+ The name of the database to use in place of the current database.
+
+
+
+ DB provider factory.
+
+
+
+
+ Clears the connection pool. All idle physical connections in the pool of the given connection are
+ immediately closed, and any busy connections which were opened before was called
+ will be closed when returned to the pool.
+
+
+
+
+ Clear all connection pools. All idle physical connections in all pools are immediately closed, and any busy
+ connections which were opened before was called will be closed when returned
+ to their pool.
+
+
+
+
+ Unprepares all prepared statements on this connection.
+
+
+
+
+ Flushes the type cache for this connection's connection string and reloads the types for this connection only.
+ Type changes will appear for other connections only after they are re-opened from the pool.
+
+
+
+
+ Flushes the type cache for this connection's connection string and reloads the types for this connection only.
+ Type changes will appear for other connections only after they are re-opened from the pool.
+
+
+
+
+ This event is unsupported by Npgsql. Use instead.
+
+
+
+
+ The connection is currently not bound to a connector.
+
+
+
+
+ The connection is bound to its connector for the scope of the entire connection
+ (i.e. non-multiplexed connection).
+
+
+
+
+ The connection is bound to its connector for the scope of a transaction.
+
+
+
+
+ The connection is bound to its connector for the scope of a COPY operation.
+
+
+
+
+ The connection is bound to its connector for the scope of a single reader.
+
+
+
+
+ The connection is bound to its connector for an unspecified, temporary scope; the code that initiated
+ the binding is also responsible to unbind it.
+
+
+
+
+ Represents a method that handles the event.
+
+ The source of the event.
+ A that contains the notice information (e.g. message, severity...).
+
+
+
+ Represents a method that handles the event.
+
+ The source of the event.
+ A that contains the notification payload.
+
+
+
+ Represents a method that allows the application to provide a certificate collection to be used for SSL client authentication
+
+
+ A to be filled with one or more client
+ certificates.
+
+
+
+
+ Represents a method that allows the application to provide a password at connection time in code rather than configuration
+
+ Hostname
+ Port
+ Database Name
+ User
+ A valid password for connecting to the database
+
+
+
+ Provides a simple way to create and manage the contents of connection strings used by
+ the class.
+
+
+
+
+ Cached DataSource value to reduce allocations on NpgsqlConnection.DataSource.get
+
+
+
+
+ Initializes a new instance of the NpgsqlConnectionStringBuilder class.
+
+
+
+
+ Initializes a new instance of the NpgsqlConnectionStringBuilder class, optionally using ODBC rules for quoting values.
+
+ true to use {} to delimit fields; false to use quotation marks.
+
+
+
+ Initializes a new instance of the NpgsqlConnectionStringBuilder class and sets its .
+
+
+
+
+ GeneratedAction and GeneratedActions exist to be able to produce a streamlined binary footprint for NativeAOT.
+ An idiomatic approach where each action has its own method would double the binary size of NpgsqlConnectionStringBuilder.
+
+
+
+
+ Gets or sets the value associated with the specified key.
+
+ The key of the item to get or set.
+ The value associated with the specified key.
+
+
+
+ Adds an item to the .
+
+ The key-value pair to be added.
+
+
+
+ Removes the entry with the specified key from the DbConnectionStringBuilder instance.
+
+ The key of the key/value pair to be removed from the connection string in this DbConnectionStringBuilder.
+ true if the key existed within the connection string and was removed; false if the key did not exist.
+
+
+
+ Removes the entry from the DbConnectionStringBuilder instance.
+
+ The key/value pair to be removed from the connection string in this DbConnectionStringBuilder.
+ true if the key existed within the connection string and was removed; false if the key did not exist.
+
+
+
+ Clears the contents of the instance.
+
+
+
+
+ Determines whether the contains a specific key.
+
+ The key to locate in the .
+ true if the contains an entry with the specified key; otherwise false.
+
+
+
+ Determines whether the contains a specific key-value pair.
+
+ The item to locate in the .
+ true if the contains the entry; otherwise false.
+
+
+
+ Retrieves a value corresponding to the supplied key from this .
+
+ The key of the item to retrieve.
+ The value corresponding to the key.
+ true if keyword was found within the connection string, false otherwise.
+
+
+
+ The hostname or IP address of the PostgreSQL server to connect to.
+
+
+
+
+ The TCP/IP port of the PostgreSQL server.
+
+
+
+
+ The PostgreSQL database to connect to.
+
+
+
+
+ The username to connect with.
+
+
+
+
+ The password to connect with.
+
+
+
+
+ Path to a PostgreSQL password file (PGPASSFILE), from which the password would be taken.
+
+
+
+
+ The optional application name parameter to be sent to the backend during connection initiation.
+
+
+
+
+ Whether to enlist in an ambient TransactionScope.
+
+
+
+
+ Gets or sets the schema search path.
+
+
+
+
+ Gets or sets the client_encoding parameter.
+
+
+
+
+ Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data.
+
+
+
+
+ Gets or sets the PostgreSQL session timezone, in Olson/IANA database format.
+
+
+
+
+ Controls whether SSL is required, disabled or preferred, depending on server support.
+
+
+
+
+ Location of a client certificate to be sent to the server.
+
+
+
+
+ Location of a client key for a client certificate to be sent to the server.
+
+
+
+
+ Password for a key for a client certificate.
+
+
+
+
+ Location of a CA certificate used to validate the server certificate.
+
+
+
+
+ Whether to check the certificate revocation list during authentication.
+ False by default.
+
+
+
+
+ The Kerberos service name to be used for authentication.
+
+
+
+
+ The Kerberos realm to be used for authentication.
+
+
+
+
+ Gets or sets a Boolean value that indicates if security-sensitive information, such as the password, is not returned as part of the connection if the connection is open or has ever been in an open state.
+
+
+
+
+ When enabled, parameter values are logged when commands are executed. Defaults to false.
+
+
+
+
+ When enabled, PostgreSQL error details are included on and
+ . These can contain sensitive data.
+
+
+
+
+ Controls whether channel binding is required, disabled or preferred, depending on server support.
+
+
+
+
+ Whether connection pooling should be used.
+
+
+
+
+ The minimum connection pool size.
+
+
+
+
+ The maximum connection pool size.
+
+
+
+
+ The time to wait before closing idle connections in the pool if the count
+ of all connections exceeds MinPoolSize.
+
+ The time (in seconds) to wait. The default value is 300.
+
+
+
+ How many seconds the pool waits before attempting to prune idle connections that are beyond
+ idle lifetime (.
+
+ The interval (in seconds). The default value is 10.
+
+
+
+ The total maximum lifetime of connections (in seconds). Connections which have exceeded this value will be
+ destroyed instead of returned from the pool. This is useful in clustered configurations to force load
+ balancing between a running server and a server just brought online.
+
+ The time (in seconds) to wait, or 0 to to make connections last indefinitely (the default).
+
+
+
+ The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error.
+ Defaults to 15 seconds.
+
+
+
+
+ The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error.
+ Defaults to 30 seconds.
+
+
+
+
+ The time to wait (in milliseconds) while trying to read a response for a cancellation request for a timed out or cancelled query, before terminating the attempt and generating an error.
+ Zero for infinity, -1 to skip the wait.
+ Defaults to 2000 milliseconds.
+
+
+
+
+ Determines the preferred PostgreSQL target server type.
+
+
+
+
+ Enables balancing between multiple hosts by round-robin.
+
+
+
+
+ Controls for how long the host's cached state will be considered as valid.
+
+
+
+
+ The number of seconds of connection inactivity before Npgsql sends a keepalive query.
+ Set to 0 (the default) to disable.
+
+
+
+
+ Whether to use TCP keepalive with system defaults if overrides isn't specified.
+
+
+
+
+ The number of seconds of connection inactivity before a TCP keepalive query is sent.
+ Use of this option is discouraged, use instead if possible.
+ Set to 0 (the default) to disable.
+
+
+
+
+ The interval, in seconds, between when successive keep-alive packets are sent if no acknowledgement is received.
+ Defaults to the value of . must be non-zero as well.
+
+
+
+
+ Determines the size of the internal buffer Npgsql uses when reading. Increasing may improve performance if transferring large values from the database.
+
+
+
+
+ Determines the size of the internal buffer Npgsql uses when writing. Increasing may improve performance if transferring large values to the database.
+
+
+
+
+ Determines the size of socket read buffer.
+
+
+
+
+ Determines the size of socket send buffer.
+
+
+
+
+ The maximum number SQL statements that can be automatically prepared at any given point.
+ Beyond this number the least-recently-used statement will be recycled.
+ Zero (the default) disables automatic preparation.
+
+
+
+
+ The minimum number of usages an SQL statement is used before it's automatically prepared.
+ Defaults to 5.
+
+
+
+
+ If set to true, a pool connection's state won't be reset when it is closed (improves performance).
+ Do not specify this unless you know what you're doing.
+
+
+
+
+ Load table composite type definitions, and not just free-standing composite types.
+
+
+
+
+ Set the replication mode of the connection
+
+
+ This property and its corresponding enum are intentionally kept internal as they
+ should not be set by users or even be visible in their connection strings.
+ Replication connections are a special kind of connection that is encapsulated in
+
+ and .
+
+
+
+
+ Set PostgreSQL configuration parameter default values for the connection.
+
+
+
+
+ Configure the way arrays of value types are returned when requested as object instances.
+
+
+
+
+ Enables multiplexing, which allows more efficient use of connections.
+
+
+
+
+ When multiplexing is enabled, determines the maximum number of outgoing bytes to buffer before
+ flushing to the network.
+
+
+
+
+ A compatibility mode for special PostgreSQL server types.
+
+
+
+
+ Whether to trust the server certificate without validating it.
+
+
+
+
+ The time to wait (in seconds) while trying to execute a an internal command before terminating the attempt and generating an error.
+
+
+
+
+ Determines whether the specified object is equal to the current object.
+
+
+
+
+ Hash function.
+
+
+
+
+
+ Gets an containing the keys of the .
+
+
+
+
+ Gets an containing the values in the .
+
+
+
+
+ Copies the elements of the to an Array, starting at a particular Array index.
+
+
+ The one-dimensional Array that is the destination of the elements copied from .
+ The Array must have zero-based indexing.
+
+
+ The zero-based index in array at which copying begins.
+
+
+
+
+ Returns an enumerator that iterates through the .
+
+
+
+
+
+
+
+
+ Marks on which participate in the connection
+ string. Optionally holds a set of synonyms for the property.
+
+
+
+
+ Holds a list of synonyms for the property.
+
+
+
+
+ Creates a .
+
+
+
+
+ Creates a .
+
+
+
+
+ An option specified in the connection string that activates special compatibility features.
+
+
+
+
+ No special server compatibility mode is active
+
+
+
+
+ The server is an Amazon Redshift instance.
+
+
+
+
+ The server is doesn't support full type loading from the PostgreSQL catalogs, support the basic set
+ of types via information hardcoded inside Npgsql.
+
+
+
+
+ Specifies how to manage SSL.
+
+
+
+
+ SSL is disabled. If the server requires SSL, the connection will fail.
+
+
+
+
+ Prefer non-SSL connections if the server allows them, but allow SSL connections.
+
+
+
+
+ Prefer SSL connections if the server allows them, but allow connections without SSL.
+
+
+
+
+ Fail the connection if the server doesn't support SSL.
+
+
+
+
+ Fail the connection if the server doesn't support SSL. Also verifies server certificate.
+
+
+
+
+ Fail the connection if the server doesn't support SSL. Also verifies server certificate with host's name.
+
+
+
+
+ Specifies how to manage channel binding.
+
+
+
+
+ Channel binding is disabled. If the server requires channel binding, the connection will fail.
+
+
+
+
+ Prefer channel binding if the server allows it, but connect without it if not.
+
+
+
+
+ Fail the connection if the server doesn't support channel binding.
+
+
+
+
+ Specifies how the mapping of arrays of
+ value types
+ behaves with respect to nullability when they are requested via an API returning an .
+
+
+
+
+ Arrays of value types are always returned as non-nullable arrays (e.g. int[]).
+ If the PostgreSQL array contains a NULL value, an exception is thrown. This is the default mode.
+
+
+
+
+ Arrays of value types are always returned as nullable arrays (e.g. int?[]).
+
+
+
+
+ The type of array that gets returned is determined at runtime.
+ Arrays of value types are returned as non-nullable arrays (e.g. int[])
+ if the actual instance that gets returned doesn't contain null values
+ and as nullable arrays (e.g. int?[]) if it does.
+
+ When using this setting, make sure that your code is prepared to the fact
+ that the actual type of array instances returned from APIs like
+ may change on a row by row base.
+
+
+
+ Specifies whether the connection shall be initialized as a physical or
+ logical replication connection
+
+
+ This enum and its corresponding property are intentionally kept internal as they
+ should not be set by users or even be visible in their connection strings.
+ Replication connections are a special kind of connection that is encapsulated in
+
+ and .
+
+
+
+
+ Replication disabled. This is the default
+
+
+
+
+ Physical replication enabled
+
+
+
+
+ Logical replication enabled
+
+
+
+
+ Represents the method that handles the events.
+
+ The source of the event.
+ An that contains the event data.
+
+
+
+ Represents the method that handles the events.
+
+ The source of the event.
+ An that contains the event data.
+
+
+
+ This class represents an adapter from many commands: select, update, insert and delete to fill a .
+
+
+
+
+ Row updated event.
+
+
+
+
+ Row updating event.
+
+
+
+
+ Default constructor.
+
+
+
+
+ Constructor.
+
+
+
+
+
+ Constructor.
+
+
+
+
+
+
+ Constructor.
+
+
+
+
+
+
+ Create row updated event.
+
+
+
+
+ Create row updating event.
+
+
+
+
+ Raise the RowUpdated event.
+
+
+
+
+
+ Raise the RowUpdating event.
+
+
+
+
+
+ Delete command.
+
+
+
+
+ Select command.
+
+
+
+
+ Update command.
+
+
+
+
+ Insert command.
+
+
+
+
+ Reads a forward-only stream of rows from a data source.
+
+
+
+
+ The behavior of the command with which this reader was executed.
+
+
+
+
+ In multiplexing, this is as the sending is managed in the write multiplexing loop,
+ and does not need to be awaited by the reader.
+
+
+
+
+ Holds the list of statements being executed by this reader.
+
+
+
+
+ The index of the current query resultset we're processing (within a multiquery)
+
+
+
+
+ Records, for each column, its starting offset and length in the current row.
+ Used only in non-sequential mode.
+
+
+
+
+ The index of the column that we're on, i.e. that has already been parsed, is
+ is memory and can be retrieved. Initialized to -1, which means we're on the column
+ count (which comes before the first column).
+
+
+
+
+ The position in the buffer at which the current data row message ends.
+ Used only when the row is consumed non-sequentially.
+
+
+
+
+ Determines, if we can consume the row non-sequentially.
+ Mostly useful for a sequential mode, when the row is already in the buffer.
+ Should always be true for the non-sequential mode.
+
+
+
+
+ The RowDescription message for the current resultset being processed
+
+
+
+
+ Stores the last converter info resolved by column, to speed up repeated reading.
+
+
+
+
+ Whether the current result set has rows
+
+
+
+
+ Is raised whenever Close() is called.
+
+
+
+
+ Advances the reader to the next record in a result set.
+
+ true if there are more rows; otherwise false.
+
+ The default position of a data reader is before the first record. Therefore, you must call Read to begin accessing data.
+
+
+
+
+ This is the asynchronous version of
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ A task representing the asynchronous operation.
+
+
+
+ Advances the reader to the next result when reading the results of a batch of statements.
+
+
+
+
+
+ This is the asynchronous version of NextResult.
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ A task representing the asynchronous operation.
+
+
+
+ Internal implementation of NextResult
+
+
+
+
+ Note that in SchemaOnly mode there are no resultsets, and we read nothing from the backend (all
+ RowDescriptions have already been processed and are available)
+
+
+
+
+ Gets a value indicating the depth of nesting for the current row. Always returns zero.
+
+
+
+
+ Gets a value indicating whether the data reader is closed.
+
+
+
+
+ Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.
+
+
+ The number of rows changed, inserted, or deleted. -1 for SELECT statements; 0 if no rows were affected or the statement failed.
+
+
+
+
+ Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.
+
+
+ The number of rows changed, inserted, or deleted. 0 for SELECT statements, if no rows were affected or the statement failed.
+
+
+
+
+ Returns details about each statement that this reader will or has executed.
+
+
+ Note that some fields (i.e. rows and oid) are only populated as the reader
+ traverses the result.
+
+ For commands with multiple queries, this exposes the number of rows affected on
+ a statement-by-statement basis, unlike
+ which exposes an aggregation across all statements.
+
+
+
+
+ Gets a value that indicates whether this DbDataReader contains one or more rows.
+
+
+
+
+ Indicates whether the reader is currently positioned on a row, i.e. whether reading a
+ column is possible.
+ This property is different from in that will
+ return true even if attempting to read a column will fail, e.g. before
+ has been called
+
+
+
+
+ Gets the name of the column, given the zero-based column ordinal.
+
+ The zero-based column ordinal.
+ The name of the specified column.
+
+
+
+ Gets the number of columns in the current row.
+
+
+
+
+ Consumes all result sets for this reader, leaving the connector ready for sending and processing further
+ queries
+
+
+
+
+ Releases the resources used by the .
+
+
+
+
+ Releases the resources used by the .
+
+
+
+
+ Closes the reader, allowing a new command to be executed.
+
+
+
+
+ Closes the reader, allowing a new command to be executed.
+
+
+
+
+ Gets the value of the specified column as a Boolean.
+
+ The zero-based column ordinal.
+ The value of the specified column.
+
+
+
+ Gets the value of the specified column as a byte.
+
+ The zero-based column ordinal.
+ The value of the specified column.
+
+
+
+ Gets the value of the specified column as a single character.
+
+ The zero-based column ordinal.
+ The value of the specified column.
+
+
+
+ Gets the value of the specified column as a 16-bit signed integer.
+
+ The zero-based column ordinal.
+ The value of the specified column.
+
+
+
+ Gets the value of the specified column as a 32-bit signed integer.
+
+ The zero-based column ordinal.
+ The value of the specified column.
+
+
+
+ Gets the value of the specified column as a 64-bit signed integer.
+
+ The zero-based column ordinal.
+ The value of the specified column.
+
+
+
+ Gets the value of the specified column as a object.
+
+ The zero-based column ordinal.
+ The value of the specified column.
+
+
+
+ Gets the value of the specified column as an instance of .
+
+ The zero-based column ordinal.
+ The value of the specified column.
+
+
+
+ Gets the value of the specified column as a object.
+
+ The zero-based column ordinal.
+ The value of the specified column.
+
+
+
+ Gets the value of the specified column as a double-precision floating point number.
+
+ The zero-based column ordinal.
+ The value of the specified column.
+
+
+
+ Gets the value of the specified column as a single-precision floating point number.
+
+ The zero-based column ordinal.
+ The value of the specified column.
+
+
+
+ Gets the value of the specified column as a globally-unique identifier (GUID).
+
+ The zero-based column ordinal.
+ The value of the specified column.
+
+
+
+ Populates an array of objects with the column values of the current row.
+
+ An array of Object into which to copy the attribute columns.
+ The number of instances of in the array.
+
+
+
+ Gets the value of the specified column as an instance of .
+
+ The zero-based column ordinal.
+ The value of the specified column.
+
+
+
+ Gets the value of the specified column as a TimeSpan,
+
+
+ PostgreSQL's interval type has has a resolution of 1 microsecond and ranges from
+ -178000000 to 178000000 years, while .NET's TimeSpan has a resolution of 100 nanoseconds
+ and ranges from roughly -29247 to 29247 years.
+ See https://www.postgresql.org/docs/current/static/datatype-datetime.html
+
+ The zero-based column ordinal.
+ The value of the specified column.
+
+
+
+
+
+
+ Returns a nested data reader for the requested column.
+ The column type must be a record or a to Npgsql known composite type, or an array thereof.
+ Currently only supported in non-sequential mode.
+
+ The zero-based column ordinal.
+ A data reader.
+
+
+
+ Reads a stream of bytes from the specified column, starting at location indicated by dataOffset, into the buffer, starting at the location indicated by bufferOffset.
+
+ The zero-based column ordinal.
+ The index within the row from which to begin the read operation.
+ The buffer into which to copy the data.
+ The index with the buffer to which the data will be copied.
+ The maximum number of characters to read.
+ The actual number of bytes read.
+
+
+
+ Retrieves data as a .
+
+ The zero-based column ordinal.
+ The returned object.
+
+
+
+ Retrieves data as a .
+
+ The zero-based column ordinal.
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ The returned object.
+
+
+
+ Reads a stream of characters from the specified column, starting at location indicated by dataOffset, into the buffer, starting at the location indicated by bufferOffset.
+
+ The zero-based column ordinal.
+ The index within the row from which to begin the read operation.
+ The buffer into which to copy the data.
+ The index with the buffer to which the data will be copied.
+ The maximum number of characters to read.
+ The actual number of characters read.
+
+
+
+ Retrieves data as a .
+
+ The zero-based column ordinal.
+ The returned object.
+
+
+
+ Retrieves data as a .
+
+ The zero-based column ordinal.
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ The returned object.
+
+
+
+ Asynchronously gets the value of the specified column as a type.
+
+ The type of the value to be returned.
+ The type of the value to be returned.
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+
+
+
+ Synchronously gets the value of the specified column as a type.
+
+ Synchronously gets the value of the specified column as a type.
+ The column to be retrieved.
+ The column to be retrieved.
+
+
+
+ Gets the value of the specified column as an instance of .
+
+ The zero-based column ordinal.
+ The value of the specified column.
+
+
+
+ Gets the value of the specified column as an instance of .
+
+ The name of the column.
+ The value of the specified column.
+
+
+
+ Gets a value that indicates whether the column contains nonexistent or missing values.
+
+ The zero-based column ordinal.
+ true if the specified column is equivalent to ; otherwise false.
+
+
+
+ An asynchronous version of , which gets a value that indicates whether the column contains non-existent or missing values.
+ The parameter is currently ignored.
+
+ The zero-based column to be retrieved.
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ true if the specified column value is equivalent to otherwise false.
+
+
+
+ Gets the column ordinal given the name of the column.
+
+ The name of the column.
+ The zero-based column ordinal.
+
+
+
+ Gets a representation of the PostgreSQL data type for the specified field.
+ The returned representation can be used to access various information about the field.
+
+ The zero-based column index.
+
+
+
+ Gets the data type information for the specified field.
+ This is the PostgreSQL type name (e.g. double precision), not the .NET type
+ (see for that).
+
+ The zero-based column index.
+
+
+
+ Gets the OID for the PostgreSQL type for the specified field, as it appears in the pg_type table.
+
+
+ This is a PostgreSQL-internal value that should not be relied upon and should only be used for
+ debugging purposes.
+
+ The zero-based column index.
+
+
+
+ Gets the data type of the specified column.
+
+ The zero-based column ordinal.
+ The data type of the specified column.
+
+
+
+ Returns an that can be used to iterate through the rows in the data reader.
+
+ An that can be used to iterate through the rows in the data reader.
+
+
+
+ Returns schema information for the columns in the current resultset.
+
+
+
+
+
+ Asynchronously returns schema information for the columns in the current resultset.
+
+
+
+
+
+ Returns a System.Data.DataTable that describes the column metadata of the DataReader.
+
+
+
+
+ Asynchronously returns a System.Data.DataTable that describes the column metadata of the DataReader.
+
+
+
+
+ Seeks to the given column. The 4-byte length is read and returned.
+
+
+
+
+ Checks that we have a RowDescription, but not necessary an actual resultset
+ (for operations which work in SchemaOnly mode.
+
+
+
+
+ Unbinds reader from the connector.
+ Should be called before the connector is returned to the pool.
+
+
+
+
+
+
+
+
+
+
+ Contains the connection string returned to the user from
+ after the connection has been opened. Does not contain the password unless Persist Security Info=true.
+
+
+
+
+ Information about PostgreSQL and PostgreSQL-like databases (e.g. type definitions, capabilities...).
+
+
+
+
+ Semaphore to ensure we don't perform type loading and mapping setup concurrently for this data source.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Creates a command ready for use against this .
+
+ An optional SQL for the command.
+
+
+
+ Creates a batch ready for use against this .
+
+
+
+
+ Creates a new for the given .
+
+
+
+
+ Creates a new for the given .
+
+
+
+
+ Manually sets the password to be used the next time a physical connection is opened.
+ Consider using instead.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Provides a simple API for configuring and creating an , from which database connections can be obtained.
+
+
+
+
+ A diagnostics name used by Npgsql when generating tracing, logging and metrics.
+
+
+
+
+
+
+
+ A connection string builder that can be used to configured the connection string on the builder.
+
+
+
+
+ Returns the connection string, as currently configured on the builder.
+
+
+
+
+ Constructs a new , optionally starting out from the given .
+
+
+
+
+ Sets the that will be used for logging.
+
+ The logger factory to be used.
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Enables parameters to be included in logging. This includes potentially sensitive information from data sent to PostgreSQL.
+ You should only enable this flag in development, or if you have the appropriate security measures in place based on the
+ sensitivity of this data.
+
+ If , then sensitive data is logged.
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Configures the JSON serializer options used when reading and writing all System.Text.Json data.
+
+ Options to customize JSON serialization and deserialization.
+
+
+
+
+ Sets up dynamic System.Text.Json mappings. This allows mapping arbitrary .NET types to PostgreSQL json and jsonb
+ types, as well as and its derived types.
+
+
+ A list of CLR types to map to PostgreSQL jsonb (no need to specify ).
+
+
+ A list of CLR types to map to PostgreSQL json (no need to specify ).
+
+
+ Due to the dynamic nature of these mappings, they are not compatible with NativeAOT or trimming.
+
+
+
+
+ Sets up mappings for the PostgreSQL record type as a .NET or .
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Sets up mappings allowing the use of unmapped enum, range and multirange types.
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ When using SSL/TLS, this is a callback that allows customizing how the PostgreSQL-provided certificate is verified. This is an
+ advanced API, consider using or instead.
+
+ The callback containing custom callback verification logic.
+
+
+ Cannot be used in conjunction with , or
+ .
+
+
+ See .
+
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Specifies an SSL/TLS certificate which Npgsql will send to PostgreSQL for certificate-based authentication.
+
+ The client certificate to be sent to PostgreSQL when opening a connection.
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Specifies a collection of SSL/TLS certificates which Npgsql will send to PostgreSQL for certificate-based authentication.
+
+ The client certificate collection to be sent to PostgreSQL when opening a connection.
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Specifies a callback to modify the collection of SSL/TLS client certificates which Npgsql will send to PostgreSQL for
+ certificate-based authentication. This is an advanced API, consider using or
+ instead.
+
+ The callback to modify the client certificate collection.
+
+
+ The callback is invoked every time a physical connection is opened, and is therefore suitable for rotating short-lived client
+ certificates. Simply make sure the certificate collection argument has the up-to-date certificate(s).
+
+
+ The callback's collection argument already includes any client certificates specified via the connection string or environment
+ variables.
+
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Sets the that will be used validate SSL certificate, received from the server.
+
+ The CA certificate.
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Specifies a callback that will be used to validate SSL certificate, received from the server.
+
+ The callback to get CA certificate.
+ The same builder instance so that multiple calls can be chained.
+
+ This overload, which accepts a callback, is suitable for scenarios where the certificate rotates
+ and might change during the lifetime of the application.
+ When that's not the case, use the overload which directly accepts the certificate.
+
+
+
+
+ Configures a periodic password provider, which is automatically called by the data source at some regular interval. This is the
+ recommended way to fetch a rotating access token.
+
+ A callback which returns the password to be sent to PostgreSQL.
+ How long to cache the password before re-invoking the callback.
+
+ If a password refresh attempt fails, it will be re-attempted with this interval.
+ This should typically be much lower than .
+
+ The same builder instance so that multiple calls can be chained.
+
+
+ The provided callback is invoked in a timer, and not when opening connections. It therefore doesn't affect opening time.
+
+
+ The provided cancellation token is only triggered when the entire data source is disposed. If you'd like to apply a timeout to the
+ token fetching, do so within the provided callback.
+
+
+
+
+
+ Configures a password provider, which is called by the data source when opening connections.
+
+
+ A callback that may be invoked during which returns the password to be sent to PostgreSQL.
+
+
+ A callback that may be invoked during which returns the password to be sent to PostgreSQL.
+
+ The same builder instance so that multiple calls can be chained.
+
+
+ The provided callback is invoked when opening connections. Therefore its important the callback internally depends on cached
+ data or returns quickly otherwise. Any unnecessary delay will affect connection opening time.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Register a connection initializer, which allows executing arbitrary commands when a physical database connection is first opened.
+
+
+ A synchronous connection initialization lambda, which will be called from when a new physical
+ connection is opened.
+
+
+ An asynchronous connection initialization lambda, which will be called from
+ when a new physical connection is opened.
+
+
+ If an initializer is registered, both sync and async versions must be provided. If you do not use sync APIs in your code, simply
+ throw , which would also catch accidental cases of sync opening.
+
+
+ Take care that the setting you apply in the initializer does not get reverted when the connection is returned to the pool, since
+ Npgsql sends DISCARD ALL by default. The option can be used to
+ turn this off.
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Builds and returns an which is ready for use.
+
+
+
+
+ Builds and returns a which is ready for use for load-balancing and failover scenarios.
+
+
+
+
+ The exception that is thrown when server-related issues occur.
+
+
+ PostgreSQL errors (e.g. query SQL issues, constraint violations) are raised via
+ which is a subclass of this class.
+ Purely Npgsql-related issues which aren't related to the server will be raised
+ via the standard CLR exceptions (e.g. ArgumentException).
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception.
+
+ The error message that explains the reason for the exception.
+ The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
+
+
+
+ Initializes a new instance of the class with a specified error message.
+
+ The message that describes the error.
+
+
+
+ Specifies whether the exception is considered transient, that is, whether retrying the operation could
+ succeed (e.g. a network error or a timeout).
+
+
+
+
+ If the exception was thrown as a result of executing a , references the within
+ the batch which triggered the exception. Otherwise .
+
+
+
+
+ Initializes a new instance of the class with serialized data.
+
+ The SerializationInfo that holds the serialized object data about the exception being thrown.
+ The StreamingContext that contains contextual information about the source or destination.
+
+
+
+ A factory to create instances of various Npgsql objects.
+
+
+
+
+ Gets an instance of the .
+ This can be used to retrieve strongly typed data objects.
+
+
+
+
+ Returns a strongly typed instance.
+
+
+
+
+ Returns a strongly typed instance.
+
+
+
+
+ Returns a strongly typed instance.
+
+
+
+
+ Returns a strongly typed instance.
+
+
+
+
+ Returns a strongly typed instance.
+
+
+
+
+ Returns a strongly typed instance.
+
+
+
+
+ Gets the service object of the specified type.
+
+ An object that specifies the type of service object to get.
+ A service object of type serviceType, or null if there is no service object of type serviceType.
+
+
+
+ Large object manager. This class can be used to store very large files in a PostgreSQL database.
+
+
+
+
+ The largest chunk size (in bytes) read and write operations will read/write each roundtrip to the network. Default 4 MB.
+
+
+
+
+ Creates an NpgsqlLargeObjectManager for this connection. The connection must be opened to perform remote operations.
+
+
+
+
+
+ Execute a function
+
+
+
+
+ Execute a function that returns a byte array
+
+
+
+
+
+ Create an empty large object in the database. If an oid is specified but is already in use, an PostgresException will be thrown.
+
+ A preferred oid, or specify 0 if one should be automatically assigned
+ The oid for the large object created
+ If an oid is already in use
+
+
+
+ Create an empty large object in the database. If an oid is specified but is already in use, an PostgresException will be thrown.
+
+ A preferred oid, or specify 0 if one should be automatically assigned
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ The oid for the large object created
+ If an oid is already in use
+
+
+
+ Opens a large object on the backend, returning a stream controlling this remote object.
+ A transaction snapshot is taken by the backend when the object is opened with only read permissions.
+ When reading from this object, the contents reflects the time when the snapshot was taken.
+ Note that this method, as well as operations on the stream must be wrapped inside a transaction.
+
+ Oid of the object
+ An NpgsqlLargeObjectStream
+
+
+
+ Opens a large object on the backend, returning a stream controlling this remote object.
+ A transaction snapshot is taken by the backend when the object is opened with only read permissions.
+ When reading from this object, the contents reflects the time when the snapshot was taken.
+ Note that this method, as well as operations on the stream must be wrapped inside a transaction.
+
+ Oid of the object
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ An NpgsqlLargeObjectStream
+
+
+
+ Opens a large object on the backend, returning a stream controlling this remote object.
+ Note that this method, as well as operations on the stream must be wrapped inside a transaction.
+
+ Oid of the object
+ An NpgsqlLargeObjectStream
+
+
+
+ Opens a large object on the backend, returning a stream controlling this remote object.
+ Note that this method, as well as operations on the stream must be wrapped inside a transaction.
+
+ Oid of the object
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ An NpgsqlLargeObjectStream
+
+
+
+ Deletes a large object on the backend.
+
+ Oid of the object to delete
+
+
+
+ Deletes a large object on the backend.
+
+ Oid of the object to delete
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+
+
+ Exports a large object stored in the database to a file on the backend. This requires superuser permissions.
+
+ Oid of the object to export
+ Path to write the file on the backend
+
+
+
+ Exports a large object stored in the database to a file on the backend. This requires superuser permissions.
+
+ Oid of the object to export
+ Path to write the file on the backend
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+
+
+ Imports a large object to be stored as a large object in the database from a file stored on the backend. This requires superuser permissions.
+
+ Path to read the file on the backend
+ A preferred oid, or specify 0 if one should be automatically assigned
+
+
+
+ Imports a large object to be stored as a large object in the database from a file stored on the backend. This requires superuser permissions.
+
+ Path to read the file on the backend
+ A preferred oid, or specify 0 if one should be automatically assigned
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+
+
+ Since PostgreSQL 9.3, large objects larger than 2GB can be handled, up to 4TB.
+ This property returns true whether the PostgreSQL version is >= 9.3.
+
+
+
+
+ An interface to remotely control the seekable stream for an opened large object on a PostgreSQL server.
+ Note that the OpenRead/OpenReadWrite method as well as all operations performed on this stream must be wrapped inside a database transaction.
+
+
+
+
+ Since PostgreSQL 9.3, large objects larger than 2GB can be handled, up to 4TB.
+ This property returns true whether the PostgreSQL version is >= 9.3.
+
+
+
+
+ Reads count bytes from the large object. The only case when fewer bytes are read is when end of stream is reached.
+
+ The buffer where read data should be stored.
+ The offset in the buffer where the first byte should be read.
+ The maximum number of bytes that should be read.
+ How many bytes actually read, or 0 if end of file was already reached.
+
+
+
+ Reads count bytes from the large object. The only case when fewer bytes are read is when end of stream is reached.
+
+ The buffer where read data should be stored.
+ The offset in the buffer where the first byte should be read.
+ The maximum number of bytes that should be read.
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ How many bytes actually read, or 0 if end of file was already reached.
+
+
+
+ Writes count bytes to the large object.
+
+ The buffer to write data from.
+ The offset in the buffer at which to begin copying bytes.
+ The number of bytes to write.
+
+
+
+ Writes count bytes to the large object.
+
+ The buffer to write data from.
+ The offset in the buffer at which to begin copying bytes.
+ The number of bytes to write.
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+
+
+ CanTimeout always returns false.
+
+
+
+
+ CanRead always returns true, unless the stream has been closed.
+
+
+
+
+ CanWrite returns true if the stream was opened with write permissions, and the stream has not been closed.
+
+
+
+
+ CanSeek always returns true, unless the stream has been closed.
+
+
+
+
+ Returns the current position in the stream. Getting the current position does not need a round-trip to the server, however setting the current position does.
+
+
+
+
+ Gets the length of the large object. This internally seeks to the end of the stream to retrieve the length, and then back again.
+
+
+
+
+ Gets the length of the large object. This internally seeks to the end of the stream to retrieve the length, and then back again.
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+
+
+ Seeks in the stream to the specified position. This requires a round-trip to the backend.
+
+ A byte offset relative to the origin parameter.
+ A value of type SeekOrigin indicating the reference point used to obtain the new position.
+
+
+
+
+ Seeks in the stream to the specified position. This requires a round-trip to the backend.
+
+ A byte offset relative to the origin parameter.
+ A value of type SeekOrigin indicating the reference point used to obtain the new position.
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+
+
+ Does nothing.
+
+
+
+
+ Truncates or enlarges the large object to the given size. If enlarging, the large object is extended with null bytes.
+ For PostgreSQL versions earlier than 9.3, the value must fit in an Int32.
+
+ Number of bytes to either truncate or enlarge the large object.
+
+
+
+ Truncates or enlarges the large object to the given size. If enlarging, the large object is extended with null bytes.
+ For PostgreSQL versions earlier than 9.3, the value must fit in an Int32.
+
+ Number of bytes to either truncate or enlarge the large object.
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+
+
+ Releases resources at the backend allocated for this stream.
+
+
+
+
+ Releases resources at the backend allocated for this stream, iff disposing is true.
+
+ Whether to release resources allocated at the backend.
+
+
+
+ Configures Npgsql logging
+
+
+
+
+ Determines whether parameter contents will be logged alongside SQL statements - this may reveal sensitive information.
+ Defaults to false.
+
+
+
+
+
+ Globally initializes Npgsql logging to use the provided .
+ Must be called before any Npgsql APIs are used.
+
+
+ This is a legacy-only, backwards compatibility API. New applications should set the logger factory on
+ and use the resulting instead.
+
+
+ The logging factory to use when logging from Npgsql.
+
+ Determines whether parameter contents will be logged alongside SQL statements - this may reveal sensitive information.
+ Defaults to .
+
+
+
+
+ An which manages connections for multiple hosts, is aware of their states (primary, secondary,
+ offline...) and can perform failover and load balancing across them.
+
+
+ See .
+
+
+
+
+ Returns a new, unopened connection from this data source.
+
+ Specifies the server type (e.g. primary, standby).
+
+
+
+ Returns a new, opened connection from this data source.
+
+ Specifies the server type (e.g. primary, standby).
+
+
+
+ Returns a new, opened connection from this data source.
+
+ Specifies the server type (e.g. primary, standby).
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+
+
+ Returns an that wraps this multi-host one with the given server type.
+
+ Specifies the server type (e.g. primary, standby).
+
+
+
+ Clears the database state (primary, secondary, offline...) for all data sources managed by this multi-host data source.
+ Can be useful to make Npgsql retry a PostgreSQL instance which was previously detected to be offline.
+
+
+
+
+ Reads a forward-only stream of rows from a nested data source.
+ Can be retrieved using or
+ .
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Returns a nested data reader for the requested column.
+ The column type must be a record or a to Npgsql known composite type, or an array thereof.
+
+ The zero-based column ordinal.
+ A data reader.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Provides information on a PostgreSQL notification. Notifications are sent when your connection has registered for
+ notifications on a specific channel via the LISTEN command. NOTIFY can be used to generate such notifications,
+ allowing for an inter-connection communication channel.
+
+
+
+
+ Process ID of the PostgreSQL backend that sent this notification.
+
+
+
+
+ The channel on which the notification was sent.
+
+
+
+
+ An optional payload string that was sent with this notification.
+
+
+
+
+ Thrown when trying to use a connection that is already busy performing some other operation.
+ Provides information on the already-executing operation to help with debugging.
+
+
+
+
+ Creates a new instance of .
+
+
+ A command which was in progress when the operation which triggered this exception was executed.
+
+
+
+
+ If the connection is busy with another command, this will contain a reference to that command.
+ Otherwise, if the connection if busy with another type of operation (e.g. COPY), contains
+ .
+
+
+
+
+ This class represents a parameter to a command that will be sent to server
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class with the parameter name and a value.
+
+ The name of the parameter to map.
+ The value of the .
+
+
+ When you specify an in the value parameter, the is
+ inferred from the CLR type.
+
+
+ When using this constructor, you must be aware of a possible misuse of the constructor which takes a
+ parameter. This happens when calling this constructor passing an int 0 and the compiler thinks you are passing a value of
+ . Use for example to have compiler calling the correct constructor.
+
+
+
+
+
+ Initializes a new instance of the class with the parameter name and the data type.
+
+ The name of the parameter to map.
+ One of the values.
+
+
+
+ Initializes a new instance of the .
+
+ The name of the parameter to map.
+ One of the values.
+
+
+
+ Initializes a new instance of the .
+
+ The name of the parameter to map.
+ One of the values.
+ The length of the parameter.
+
+
+
+ Initializes a new instance of the .
+
+ The name of the parameter to map.
+ One of the values.
+ The length of the parameter.
+
+
+
+ Initializes a new instance of the
+
+ The name of the parameter to map.
+ One of the values.
+ The length of the parameter.
+ The name of the source column.
+
+
+
+ Initializes a new instance of the .
+
+ The name of the parameter to map.
+ One of the values.
+ The length of the parameter.
+ The name of the source column.
+
+
+
+ Initializes a new instance of the .
+
+ The name of the parameter to map.
+ One of the values.
+ The length of the parameter.
+ The name of the source column.
+ One of the values.
+
+ if the value of the field can be , otherwise .
+
+
+ The total number of digits to the left and right of the decimal point to which is resolved.
+
+ The total number of decimal places to which is resolved.
+ One of the values.
+ An that is the value of the .
+
+
+
+ Initializes a new instance of the .
+
+ The name of the parameter to map.
+ One of the values.
+ The length of the parameter.
+ The name of the source column.
+ One of the values.
+
+ if the value of the field can be , otherwise .
+
+
+ The total number of digits to the left and right of the decimal point to which is resolved.
+
+ The total number of decimal places to which is resolved.
+ One of the values.
+ An that is the value of the .
+
+
+
+ Gets or sets The name of the .
+
+ The name of the .
+ The default is an empty string.
+
+
+
+
+
+
+ Gets or sets the value of the parameter.
+
+
+ An that is the value of the parameter.
+ The default value is .
+
+
+
+
+ Gets or sets the of the parameter.
+
+ One of the values. The default is .
+
+
+
+ Gets or sets the of the parameter.
+
+ One of the values. The default is .
+
+
+
+ Used to specify which PostgreSQL type will be sent to the database for this parameter.
+
+
+
+
+
+
+
+
+
+
+ Gets or sets the maximum number of digits used to represent the property.
+
+
+ The maximum number of digits used to represent the property.
+ The default value is 0, which indicates that the data provider sets the precision for .
+
+
+
+ Gets or sets the number of decimal places to which is resolved.
+
+ The number of decimal places to which is resolved. The default is 0.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The collection to which this parameter belongs, if any.
+
+
+
+
+ The PostgreSQL data type, such as int4 or text, as discovered from pg_type.
+ This property is automatically set if parameters have been derived via
+ and can be used to
+ acquire additional information about the parameters' data type.
+
+
+
+ Attempt to resolve a type info based on available (postgres) type information on the parameter.
+
+
+ Bind the current value to the type info, truncate (if applicable), take its size, and do any final validation before writing.
+
+
+
+
+
+
+ Creates a new that is a copy of the current instance.
+
+ A new that is a copy of this instance.
+
+
+
+ Represents a collection of parameters relevant to a as well as their respective mappings to columns in
+ a .
+
+
+
+
+ Initializes a new instance of the NpgsqlParameterCollection class.
+
+
+
+
+ Gets the with the specified name.
+
+ The name of the to retrieve.
+
+ The with the specified name, or a reference if the parameter is not found.
+
+
+
+
+ Gets the at the specified index.
+
+ The zero-based index of the to retrieve.
+ The at the specified index.
+
+
+
+ Adds the specified object to the .
+
+ The to add to the collection.
+ The index of the new object.
+
+
+
+
+
+
+ Adds a to the given the specified parameter name and
+ value.
+
+ The name of the .
+ The value of the to add to the collection.
+ The parameter that was added.
+
+
+
+ Adds a to the given the specified parameter name,
+ data type and value.
+
+ The name of the .
+ One of the NpgsqlDbType values.
+ The value of the to add to the collection.
+ The parameter that was added.
+
+
+
+ Adds a to the given the specified parameter name and
+ value.
+
+ The name of the .
+ The value of the to add to the collection.
+ One of the values.
+ The length of the column.
+ The parameter that was added.
+
+
+
+ Adds a to the given the specified parameter name and
+ value.
+
+ The name of the .
+ The value of the to add to the collection.
+ One of the values.
+ The length of the column.
+ The name of the source column.
+ The parameter that was added.
+
+
+
+ Adds a to the given the specified value.
+
+ The value of the to add to the collection.
+ The parameter that was added.
+
+
+
+ Adds a to the given the specified data type and value.
+
+ One of the values.
+ The value of the to add to the collection.
+ The parameter that was added.
+
+
+
+ Adds a to the given the parameter name and the data type.
+
+ The name of the parameter.
+ One of the values.
+ The index of the new object.
+
+
+
+ Adds a to the with the parameter name, the data type,
+ and the column length.
+
+ The name of the parameter.
+ One of the values.
+ The length of the column.
+ The index of the new object.
+
+
+
+ Adds a to the with the parameter name, the data type, the
+ column length, and the source column name.
+
+ The name of the parameter.
+ One of the values.
+ The length of the column.
+ The name of the source column.
+ The index of the new object.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Removes the specified from the collection using a specific index.
+
+ The zero-based index of the parameter.
+
+
+
+
+
+
+ Removes the specified from the collection.
+
+ The name of the to remove from the collection.
+
+
+
+ Removes the specified from the collection.
+
+ The to remove from the collection.
+
+
+
+
+
+
+ Gets a value indicating whether a with the specified parameter name exists in the collection.
+
+ The name of the object to find.
+
+ A reference to the requested parameter is returned in this out param if it is found in the list.
+ This value is if the parameter is not found.
+
+
+ if the collection contains the parameter and param will contain the parameter;
+ otherwise, .
+
+
+
+
+ Removes all items from the collection.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Gets the number of objects in the collection.
+
+ The number of objects in the collection.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Report the offset within the collection of the given parameter.
+
+ Parameter to find.
+ Index of the parameter, or -1 if the parameter is not present.
+
+
+
+ Insert the specified parameter into the collection.
+
+ Index of the existing parameter before which to insert the new one.
+ Parameter to insert.
+
+
+
+ Report whether the specified parameter is present in the collection.
+
+ Parameter to find.
+ True if the parameter was found, otherwise false.
+
+
+
+ Remove the specified parameter from the collection.
+
+ Parameter to remove.
+ True if the parameter was found and removed, otherwise false.
+
+
+
+ Convert collection to a System.Array.
+
+ Destination array.
+ Starting index in destination array.
+
+
+
+ Convert collection to a System.Array.
+
+ NpgsqlParameter[]
+
+
+
+ The parameter collection includes no parameters.
+
+
+
+
+ The parameter collection includes only named parameters.
+
+
+
+
+ The parameter collection includes only positional parameters.
+
+
+
+
+ The parameter collection includes both named and positional parameters.
+ This is only supported when is set to .
+
+
+
+
+ A generic version of which provides more type safety and
+ avoids boxing of value types. Use instead of .
+
+ The type of the value that will be stored in the parameter.
+
+
+
+ Gets or sets the strongly-typed value of the parameter.
+
+
+
+
+ Gets or sets the value of the parameter. This delegates to .
+
+
+
+
+ Initializes a new instance of .
+
+
+
+
+ Initializes a new instance of with a parameter name and value.
+
+
+
+
+ Initializes a new instance of with a parameter name and type.
+
+
+
+
+ Initializes a new instance of with a parameter name and type.
+
+
+
+
+ Provides an API for a raw binary COPY operation, a high-performance data import/export mechanism to
+ a PostgreSQL table. Initiated by
+
+
+ See https://www.postgresql.org/docs/current/static/sql-copy.html.
+
+
+
+
+ The copy binary format header signature
+
+
+
+
+ Cancels and terminates an ongoing operation. Any data already written will be discarded.
+
+
+
+
+ Cancels and terminates an ongoing operation. Any data already written will be discarded.
+
+
+
+
+ Writer for a text import, initiated by .
+
+
+ See https://www.postgresql.org/docs/current/static/sql-copy.html.
+
+
+
+
+ Cancels and terminates an ongoing import. Any data already written will be discarded.
+
+
+
+
+ Cancels and terminates an ongoing import. Any data already written will be discarded.
+
+
+
+
+ Reader for a text export, initiated by .
+
+
+ See https://www.postgresql.org/docs/current/static/sql-copy.html.
+
+
+
+
+ Cancels and terminates an ongoing export.
+
+
+
+
+ Asynchronously cancels and terminates an ongoing export.
+
+
+
+
+ Provides the underlying mechanism for reading schema information.
+
+
+
+
+ Returns the MetaDataCollections that lists all possible collections.
+
+ The MetaDataCollections
+
+
+
+ Returns the Restrictions that contains the meaning and position of the values in the restrictions array.
+
+ The Restrictions
+
+
+
+ Populates some generic type information that is common for base types, arrays, enums, etc. Some will
+ be overridden later.
+
+
+
+
+ Sets some custom, hardcoded info on a DataType row that cannot be loaded/inferred from PostgreSQL
+
+
+
+
+ List of keywords taken from PostgreSQL 9.0 reserved words documentation.
+
+
+
+
+ Provides a simple API for configuring and creating an , from which database connections can be obtained.
+
+
+ On this builder, various features are disabled by default; unless you're looking to save on code size (e.g. when publishing with
+ NativeAOT), use instead.
+
+
+
+
+ A connection string builder that can be used to configured the connection string on the builder.
+
+
+
+
+ Returns the connection string, as currently configured on the builder.
+
+
+
+
+ A diagnostics name used by Npgsql when generating tracing, logging and metrics.
+
+
+
+
+ Constructs a new , optionally starting out from the given
+ .
+
+
+
+
+ Sets the that will be used for logging.
+
+ The logger factory to be used.
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Enables parameters to be included in logging. This includes potentially sensitive information from data sent to PostgreSQL.
+ You should only enable this flag in development, or if you have the appropriate security measures in place based on the
+ sensitivity of this data.
+
+ If , then sensitive data is logged.
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Configures the JSON serializer options used when reading and writing all System.Text.Json data.
+
+ Options to customize JSON serialization and deserialization.
+
+
+
+
+ When using SSL/TLS, this is a callback that allows customizing how the PostgreSQL-provided certificate is verified. This is an
+ advanced API, consider using or instead.
+
+ The callback containing custom callback verification logic.
+
+
+ Cannot be used in conjunction with , or
+ .
+
+
+ See .
+
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Specifies an SSL/TLS certificate which Npgsql will send to PostgreSQL for certificate-based authentication.
+
+ The client certificate to be sent to PostgreSQL when opening a connection.
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Specifies a collection of SSL/TLS certificates which Npgsql will send to PostgreSQL for certificate-based authentication.
+
+ The client certificate collection to be sent to PostgreSQL when opening a connection.
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Specifies a callback to modify the collection of SSL/TLS client certificates which Npgsql will send to PostgreSQL for
+ certificate-based authentication. This is an advanced API, consider using or
+ instead.
+
+ The callback to modify the client certificate collection.
+
+
+ The callback is invoked every time a physical connection is opened, and is therefore suitable for rotating short-lived client
+ certificates. Simply make sure the certificate collection argument has the up-to-date certificate(s).
+
+
+ The callback's collection argument already includes any client certificates specified via the connection string or environment
+ variables.
+
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Sets the that will be used validate SSL certificate, received from the server.
+
+ The CA certificate.
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Specifies a callback that will be used to validate SSL certificate, received from the server.
+
+ The callback to get CA certificate.
+ The same builder instance so that multiple calls can be chained.
+
+ This overload, which accepts a callback, is suitable for scenarios where the certificate rotates
+ and might change during the lifetime of the application.
+ When that's not the case, use the overload which directly accepts the certificate.
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Configures a periodic password provider, which is automatically called by the data source at some regular interval. This is the
+ recommended way to fetch a rotating access token.
+
+ A callback which returns the password to be sent to PostgreSQL.
+ How long to cache the password before re-invoking the callback.
+
+ If a password refresh attempt fails, it will be re-attempted with this interval.
+ This should typically be much lower than .
+
+ The same builder instance so that multiple calls can be chained.
+
+
+ The provided callback is invoked in a timer, and not when opening connections. It therefore doesn't affect opening time.
+
+
+ The provided cancellation token is only triggered when the entire data source is disposed. If you'd like to apply a timeout to the
+ token fetching, do so within the provided callback.
+
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Configures a password provider, which is called by the data source when opening connections.
+
+
+ A callback that may be invoked during which returns the password to be sent to PostgreSQL.
+
+
+ A callback that may be invoked during which returns the password to be sent to PostgreSQL.
+
+ The same builder instance so that multiple calls can be chained.
+
+
+ The provided callback is invoked when opening connections. Therefore its important the callback internally depends on cached
+ data or returns quickly otherwise. Any unnecessary delay will affect connection opening time.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sets up mappings for the PostgreSQL array types.
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Sets up mappings for the PostgreSQL range types.
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Sets up mappings for the PostgreSQL multirange types.
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Sets up mappings for the PostgreSQL record type as a .NET object[].
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Sets up mappings for the PostgreSQL tsquery and tsvector types.
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Sets up mappings for the PostgreSQL ltree extension types.
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Sets up mappings for extra conversions from PostgreSQL to .NET types.
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Enables the possibility to use TLS/SSl encryption for connections to PostgreSQL. This does not guarantee that encryption will
+ actually be used; see for more details.
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Enables the possibility to use GSS/SSPI authentication for connections to PostgreSQL. This does not guarantee that it will
+ actually be used; see for more details.
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Sets up dynamic System.Text.Json mappings. This allows mapping arbitrary .NET types to PostgreSQL json and jsonb
+ types, as well as and its derived types.
+
+
+ A list of CLR types to map to PostgreSQL jsonb (no need to specify ).
+
+
+ A list of CLR types to map to PostgreSQL json (no need to specify ).
+
+
+ Due to the dynamic nature of these mappings, they are not compatible with NativeAOT or trimming.
+
+
+
+
+ Sets up mappings for the PostgreSQL record type as a .NET or .
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Sets up mappings allowing the use of unmapped enum, range and multirange types.
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Register a connection initializer, which allows executing arbitrary commands when a physical database connection is first opened.
+
+
+ A synchronous connection initialization lambda, which will be called from when a new physical
+ connection is opened.
+
+
+ An asynchronous connection initialization lambda, which will be called from
+ when a new physical connection is opened.
+
+
+ If an initializer is registered, both sync and async versions must be provided. If you do not use sync APIs in your code, simply
+ throw , which would also catch accidental cases of sync opening.
+
+
+ Take care that the setting you apply in the initializer does not get reverted when the connection is returned to the pool, since
+ Npgsql sends DISCARD ALL by default. The option can be used to
+ turn this off.
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Builds and returns an which is ready for use.
+
+
+
+
+ Builds and returns a which is ready for use for load-balancing and failover scenarios.
+
+
+
+
+ Options to configure Npgsql's support for OpenTelemetry tracing.
+ Currently no options are available.
+
+
+
+
+ Represents a transaction to be made in a PostgreSQL database. This class cannot be inherited.
+
+
+
+
+ Specifies the object associated with the transaction.
+
+ The object associated with the transaction.
+
+
+
+ Specifies the object associated with the transaction.
+
+ The object associated with the transaction.
+
+
+
+ If true, the transaction has been committed/rolled back, but not disposed.
+
+
+
+
+ Specifies the isolation level for this transaction.
+
+ The isolation level for this transaction. The default is .
+
+
+
+ Commits the database transaction.
+
+
+
+
+ Commits the database transaction.
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+
+
+ Rolls back a transaction from a pending state.
+
+
+
+
+ Rolls back a transaction from a pending state.
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+
+
+ Creates a transaction save point.
+
+ The name of the savepoint.
+
+ This method does not cause a database roundtrip to be made. The savepoint creation statement will instead be sent along with
+ the next command.
+
+
+
+
+ Creates a transaction save point.
+
+ The name of the savepoint.
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+ This method does not cause a database roundtrip to be made, and will therefore always complete synchronously.
+ The savepoint creation statement will instead be sent along with the next command.
+
+
+
+
+ Rolls back a transaction from a pending savepoint state.
+
+ The name of the savepoint.
+
+
+
+ Rolls back a transaction from a pending savepoint state.
+
+ The name of the savepoint.
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+
+
+ Releases a transaction from a pending savepoint state.
+
+ The name of the savepoint.
+
+
+
+ Releases a transaction from a pending savepoint state.
+
+ The name of the savepoint.
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+
+
+ Indicates whether this transaction supports database savepoints.
+
+
+
+
+ Disposes the transaction, rolling it back if it is still pending.
+
+
+
+
+ Disposes the transaction, rolling it back if it is still pending.
+
+
+
+
+ Disposes the transaction, without rolling back. Used only in special circumstances, e.g. when
+ the connection is broken.
+
+
+
+
+ Unbinds transaction from the connector.
+ Should be called before the connector is returned to the pool.
+
+
+
+
+ Represents a .pgpass file, which contains passwords for noninteractive connections
+
+
+
+
+ File name being parsed for credentials
+
+
+
+
+ Initializes a new instance of the class
+
+
+
+
+
+ Parses file content and gets all credentials from the file
+
+ corresponding to all lines in the .pgpass file
+
+
+
+ Searches queries loaded from .PGPASS file to find first entry matching the provided parameters.
+
+ Hostname to query. Use null to match any.
+ Port to query. Use null to match any.
+ Database to query. Use null to match any.
+ User name to query. Use null to match any.
+ Matching if match was found. Otherwise, returns null.
+
+
+
+ Represents a hostname, port, database, username, and password combination that has been retrieved from a .pgpass file
+
+
+
+
+ Hostname parsed from the .pgpass file
+
+
+
+
+ Port parsed from the .pgpass file
+
+
+
+
+ Database parsed from the .pgpass file
+
+
+
+
+ User name parsed from the .pgpass file
+
+
+
+
+ Password parsed from the .pgpass file
+
+
+
+
+ This class represents an entry from the .pgpass file
+
+ Hostname parsed from the .pgpass file
+ Port parsed from the .pgpass file
+ Database parsed from the .pgpass file
+ User name parsed from the .pgpass file
+ Password parsed from the .pgpass file
+
+
+
+ Creates new based on string in the format hostname:port:database:username:password. The : and \ characters should be escaped with a \.
+
+ string for the entry from the pgpass file
+ New instance of for the string
+ Entry is not formatted as hostname:port:database:username:password or non-wildcard port is not a number
+
+
+
+ Checks whether this matches the parameters supplied
+
+ Hostname to check against this entry
+ Port to check against this entry
+ Database to check against this entry
+ Username to check against this entry
+ True if the entry is a match. False otherwise.
+
+
+
+ Checks if 2 strings are a match for a considering that either value can be a wildcard (*)
+
+ Value being searched
+ Value from the PGPASS entry
+ True if the values are a match. False otherwise.
+
+
+
+ Tracks all connectors currently managed by this pool, whether idle or busy.
+ Only updated rarely - when physical connections are opened/closed - but is read in perf-sensitive contexts.
+
+
+
+
+ Reader side for the idle connector channel. Contains nulls in order to release waiting attempts after
+ a connector has been physically closed/broken.
+
+
+
+
+ Incremented every time this pool is cleared via or
+ . Allows us to identify connections which were
+ created before the clear.
+
+
+
+
+ Provides lookup for a pool based on a connection string.
+
+
+ Note that pools created directly as are referenced directly by users, and aren't managed here.
+
+
+
+
+ Resets the pool manager to its initial state, for test purposes only.
+ Assumes that no other threads are accessing the pool.
+
+
+
+
+ The default implementation of , for standard PostgreSQL databases..
+
+
+
+
+
+
+
+ The default implementation of NpgsqlDatabase, for standard PostgreSQL databases.
+
+
+
+
+ The PostgreSQL types detected in the database.
+
+
+
+
+
+
+
+ The PostgreSQL version string as returned by the version() function. Populated during loading.
+
+
+
+
+ True if the backend is Amazon Redshift; otherwise, false.
+
+
+
+
+
+
+
+ True if the 'pg_enum' table includes the 'enumsortorder' column; otherwise, false.
+
+
+
+
+ True if the 'pg_type' table includes the 'typcategory' column; otherwise, false.
+
+
+ pg_type.typcategory is added after 8.4.
+ see: https://www.postgresql.org/docs/8.4/static/catalog-pg-type.html#CATALOG-TYPCATEGORY-TABLE
+
+
+
+
+ Loads database information from the PostgreSQL database specified by .
+
+ The database connection.
+ The timeout while loading types from the backend.
+ True to load types asynchronously.
+
+ A task representing the asynchronous operation.
+
+
+
+
+ Generates a raw SQL query string to select type information.
+
+
+ Select all types (base, array which is also base, enum, range, composite).
+ Note that arrays are distinguished from primitive types through them having typreceive=array_recv.
+ Order by primitives first, container later.
+ For arrays and ranges, join in the element OID and type (to filter out arrays of unhandled
+ types).
+
+
+
+
+ Loads type information from the backend specified by .
+
+ The database connection.
+ The timeout while loading types from the backend.
+ True to load types asynchronously.
+
+ A collection of types loaded from the backend.
+
+
+ Unknown typtype for type '{internalName}' in pg_type: {typeChar}.
+
+
+
+ Provides constants for PostgreSQL error codes.
+
+
+ See https://www.postgresql.org/docs/current/static/errcodes-appendix.html
+
+
+
+
+ The exception that is thrown when the PostgreSQL backend reports errors (e.g. query
+ SQL issues, constraint violations).
+
+
+ This exception only corresponds to a PostgreSQL-delivered error.
+ Other errors (e.g. network issues) will be raised via ,
+ and purely Npgsql-related issues which aren't related to the server will be raised
+ via the standard CLR exceptions (e.g. ).
+
+ See https://www.postgresql.org/docs/current/static/errcodes-appendix.html,
+ https://www.postgresql.org/docs/current/static/protocol-error-fields.html
+
+
+
+
+ Creates a new instance.
+
+
+
+
+ Creates a new instance.
+
+
+
+
+ Populates a with the data needed to serialize the target object.
+
+ The to populate with data.
+ The destination (see ) for this serialization.
+
+
+
+
+
+
+ Specifies whether the exception is considered transient, that is, whether retrying the operation could
+ succeed (e.g. a network error). Check .
+
+
+
+
+ Severity of the error or notice.
+ Always present.
+
+
+
+
+ Severity of the error or notice, not localized.
+ Always present since PostgreSQL 9.6.
+
+
+
+
+ The SQLSTATE code for the error.
+
+
+ Always present.
+ Constants are defined in .
+ See https://www.postgresql.org/docs/current/static/errcodes-appendix.html
+
+
+
+
+ The primary human-readable error message. This should be accurate but terse.
+
+
+ Always present.
+
+
+
+
+ An optional secondary error message carrying more detail about the problem.
+ May run to multiple lines.
+
+
+
+
+ An optional suggestion what to do about the problem.
+ This is intended to differ from Detail in that it offers advice (potentially inappropriate) rather than hard facts.
+ May run to multiple lines.
+
+
+
+
+ The field value is a decimal ASCII integer, indicating an error cursor position as an index into the original query string.
+ The first character has index 1, and positions are measured in characters not bytes.
+ 0 means not provided.
+
+
+
+
+ This is defined the same as the field, but it is used when the cursor position refers to an internally generated command rather than the one submitted by the client.
+ The field will always appear when this field appears.
+ 0 means not provided.
+
+
+
+
+ The text of a failed internally-generated command.
+ This could be, for example, a SQL query issued by a PL/pgSQL function.
+
+
+
+
+ An indication of the context in which the error occurred.
+ Presently this includes a call stack traceback of active PL functions.
+ The trace is one entry per line, most recent first.
+
+
+
+
+ If the error was associated with a specific database object, the name of the schema containing that object, if any.
+
+ PostgreSQL 9.3 and up.
+
+
+
+ Table name: if the error was associated with a specific table, the name of the table.
+ (Refer to the schema name field for the name of the table's schema.)
+
+ PostgreSQL 9.3 and up.
+
+
+
+ If the error was associated with a specific table column, the name of the column.
+ (Refer to the schema and table name fields to identify the table.)
+
+ PostgreSQL 9.3 and up.
+
+
+
+ If the error was associated with a specific data type, the name of the data type.
+ (Refer to the schema name field for the name of the data type's schema.)
+
+ PostgreSQL 9.3 and up.
+
+
+
+ If the error was associated with a specific constraint, the name of the constraint.
+ Refer to fields listed above for the associated table or domain.
+ (For this purpose, indexes are treated as constraints, even if they weren't created with constraint syntax.)
+
+ PostgreSQL 9.3 and up.
+
+
+
+ The file name of the source-code location where the error was reported.
+
+ PostgreSQL 9.3 and up.
+
+
+
+ The line number of the source-code location where the error was reported.
+
+
+
+
+ The name of the source-code routine reporting the error.
+
+
+
+
+ PostgreSQL notices are non-critical messages generated by PostgreSQL, either as a result of a user query
+ (e.g. as a warning or informational notice), or due to outside activity (e.g. if the database administrator
+ initiates a "fast" database shutdown).
+
+
+ https://www.postgresql.org/docs/current/static/protocol-flow.html#PROTOCOL-ASYNC
+
+
+
+
+ Severity of the error or notice.
+ Always present.
+
+
+
+
+ Severity of the error or notice, not localized.
+ Always present since PostgreSQL 9.6.
+
+
+
+
+ The SQLSTATE code for the error.
+
+
+ Always present.
+ See https://www.postgresql.org/docs/current/static/errcodes-appendix.html
+
+
+
+
+ The primary human-readable error message. This should be accurate but terse.
+
+
+ Always present.
+
+
+
+
+ An optional secondary error message carrying more detail about the problem.
+ May run to multiple lines.
+
+
+
+
+ An optional suggestion what to do about the problem.
+ This is intended to differ from Detail in that it offers advice (potentially inappropriate) rather than hard facts.
+ May run to multiple lines.
+
+
+
+
+ The field value is a decimal ASCII integer, indicating an error cursor position as an index into the original query string.
+ The first character has index 1, and positions are measured in characters not bytes.
+ 0 means not provided.
+
+
+
+
+ This is defined the same as the field, but it is used when the cursor position refers to an internally generated command rather than the one submitted by the client.
+ The field will always appear when this field appears.
+ 0 means not provided.
+
+
+
+
+ The text of a failed internally-generated command.
+ This could be, for example, a SQL query issued by a PL/pgSQL function.
+
+
+
+
+ An indication of the context in which the error occurred.
+ Presently this includes a call stack traceback of active PL functions.
+ The trace is one entry per line, most recent first.
+
+
+
+
+ If the error was associated with a specific database object, the name of the schema containing that object, if any.
+
+ PostgreSQL 9.3 and up.
+
+
+
+ Table name: if the error was associated with a specific table, the name of the table.
+ (Refer to the schema name field for the name of the table's schema.)
+
+ PostgreSQL 9.3 and up.
+
+
+
+ If the error was associated with a specific table column, the name of the column.
+ (Refer to the schema and table name fields to identify the table.)
+
+ PostgreSQL 9.3 and up.
+
+
+
+ If the error was associated with a specific data type, the name of the data type.
+ (Refer to the schema name field for the name of the data type's schema.)
+
+ PostgreSQL 9.3 and up.
+
+
+
+ If the error was associated with a specific constraint, the name of the constraint.
+ Refer to fields listed above for the associated table or domain.
+ (For this purpose, indexes are treated as constraints, even if they weren't created with constraint syntax.)
+
+ PostgreSQL 9.3 and up.
+
+
+
+ The file name of the source-code location where the error was reported.
+
+ PostgreSQL 9.3 and up.
+
+
+
+ The line number of the source-code location where the error was reported.
+
+
+
+
+ The name of the source-code routine reporting the error.
+
+
+
+
+ Creates a new instance.
+
+
+
+
+ Creates a new instance.
+
+
+
+
+ Provides data for a PostgreSQL notice event.
+
+
+
+
+ The Notice that was sent from the database.
+
+
+
+
+ Represents a PostgreSQL array data type, which can hold several multiple values in a single column.
+
+
+ See https://www.postgresql.org/docs/current/static/arrays.html.
+
+
+
+
+ The PostgreSQL data type of the element contained within this array.
+
+
+
+
+ Constructs a representation of a PostgreSQL array data type.
+
+
+
+
+ Constructs a representation of a PostgreSQL array data type.
+
+
+
+
+
+
+
+ Represents a PostgreSQL base data type, which is a simple scalar value.
+
+
+
+
+ Constructs a representation of a PostgreSQL base data type.
+
+
+
+
+ Constructs a representation of a PostgreSQL base data type.
+
+
+
+
+
+
+
+ Represents a PostgreSQL composite data type, which can hold multiple fields of varying types in a single column.
+
+
+ See https://www.postgresql.org/docs/current/static/rowtypes.html.
+
+
+
+
+ Holds the name and types for all fields.
+
+
+
+
+ Constructs a representation of a PostgreSQL array data type.
+
+
+
+
+ Constructs a representation of a PostgreSQL domain data type.
+
+
+
+
+ Represents a field in a PostgreSQL composite data type.
+
+
+
+
+ The name of the composite field.
+
+
+
+
+ The type of the composite field.
+
+
+
+
+
+
+
+ Represents a PostgreSQL domain type.
+
+
+ See https://www.postgresql.org/docs/current/static/sql-createdomain.html.
+
+ When PostgreSQL returns a RowDescription for a domain type, the type OID is the base type's
+ (so fetching a domain type over text returns a RowDescription for text).
+ However, when a composite type is returned, the type OID there is that of the domain,
+ so we provide "clean" support for domain types.
+
+
+
+
+ The PostgreSQL data type of the base type, i.e. the type this domain is based on.
+
+
+
+
+ True if the domain has a NOT NULL constraint, otherwise false.
+
+
+
+
+ Constructs a representation of a PostgreSQL domain data type.
+
+
+
+
+ Constructs a representation of a PostgreSQL domain data type.
+
+
+
+
+ Represents a PostgreSQL enum data type.
+
+
+ See https://www.postgresql.org/docs/current/static/datatype-enum.html.
+
+
+
+
+ The enum's fields.
+
+
+
+
+ Constructs a representation of a PostgreSQL enum data type.
+
+
+
+
+ Constructs a representation of a PostgreSQL enum data type.
+
+
+
+
+ Represents a PostgreSQL multirange data type.
+
+
+ See https://www.postgresql.org/docs/current/static/rangetypes.html.
+ Multirange types were introduced in PostgreSQL 14.
+
+
+
+
+ The PostgreSQL data type of the range of this multirange.
+
+
+
+
+ Constructs a representation of a PostgreSQL multirange data type.
+
+
+
+
+ Constructs a representation of a PostgreSQL multirange data type.
+
+
+
+
+ Represents a PostgreSQL range data type.
+
+
+ See https://www.postgresql.org/docs/current/static/rangetypes.html.
+
+
+
+
+ The PostgreSQL data type of the subtype of this range.
+
+
+
+
+ The PostgreSQL data type of the multirange of this range.
+
+
+
+
+ Constructs a representation of a PostgreSQL range data type.
+
+
+
+
+ Constructs a representation of a PostgreSQL range data type.
+
+
+
+
+ Represents a PostgreSQL data type, such as int4 or text, as discovered from pg_type.
+ This class is abstract, see derived classes for concrete types of PostgreSQL types.
+
+
+ Instances of this class are shared between connections to the same databases.
+ For more info about what this class and its subclasses represent, see
+ https://www.postgresql.org/docs/current/static/catalog-pg-type.html.
+
+
+
+
+ Constructs a representation of a PostgreSQL data type.
+
+ The data type's namespace (or schema).
+ The data type's name.
+ The data type's OID.
+
+
+
+ Constructs a representation of a PostgreSQL data type.
+
+ The data type's fully qualified name.
+ The data type's OID.
+
+
+
+ The data type's OID - a unique id identifying the data type in a given database (in pg_type).
+
+
+
+
+ The data type's namespace (or schema).
+
+
+
+
+ The data type's name.
+
+
+ Note that this is the standard, user-displayable type name (e.g. integer[]) rather than the internal
+ PostgreSQL name as it is in pg_type (_int4). See for the latter.
+
+
+
+
+ The full name of the backend type, including its namespace.
+
+
+
+
+ A display name for this backend type, including the namespace unless it is pg_catalog (the namespace
+ for all built-in types).
+
+
+
+
+ The data type's internal PostgreSQL name (e.g. _int4 not integer[]).
+ See for a more user-friendly name.
+
+
+
+
+ If a PostgreSQL array type exists for this type, it will be referenced here.
+ Otherwise null.
+
+
+
+
+ If a PostgreSQL range type exists for this type, it will be referenced here.
+ Otherwise null.
+
+
+
+
+ Generates the type name including any facts (size, precision, scale), given the PostgreSQL type modifier.
+
+
+
+
+ Returns a string that represents the current object.
+
+
+
+ Canonizes (nested) domain types to underlying types, does not handle composites.
+
+
+ A base type.
+
+
+ An enum carrying its variants.
+
+
+ A pseudo type like anyarray.
+
+
+
+ Represents a PostgreSQL data type that isn't known to Npgsql and cannot be handled.
+
+
+
+
+ Constructs a the unknown backend type.
+
+
+
+
+ Internally represents a statement has been prepared, is in the process of being prepared, or is a
+ candidate for preparation (i.e. awaiting further usages).
+
+
+
+
+ If true, the user explicitly requested this statement be prepared. It does not get closed as part of
+ the automatic preparation LRU mechanism.
+
+
+
+
+ If this statement is about to be prepared, but replaces a previous statement which needs to be closed,
+ this holds the name of the previous statement. Otherwise null.
+
+
+
+
+ Contains the handler types for a prepared statement's parameters, for overloaded cases (same SQL, different param types)
+ Only populated after the statement has been prepared (i.e. null for candidates).
+
+
+
+
+ The state of a .
+
+
+
+
+ The statement hasn't been prepared yet, nor is it in the process of being prepared.
+ This is the value for autoprepare candidates which haven't been prepared yet, and is also
+ a temporary state during preparation.
+
+
+
+
+ The statement is in the process of being prepared.
+
+
+
+
+ The statement has been fully prepared and can be executed.
+
+
+
+
+ The statement is in the process of being unprepared. This is a temporary state that only occurs during
+ unprepare. Specifically, it means that a Close message for the statement has already been written
+ to the write buffer.
+
+
+
+
+ The statement has been unprepared and is no longer usable.
+
+
+
+
+ The statement was invalidated because e.g. table schema has changed since preparation.
+
+
+
+
+ Total number of current prepared statements (whether explicit or automatic).
+
+
+
+
+ This API is for internal use and for implementing logical replication plugins.
+ It is not meant to be consumed in common Npgsql usage scenarios.
+
+
+
+
+ This API is for internal use and for implementing logical replication plugins.
+ It is not meant to be consumed in common Npgsql usage scenarios.
+
+
+ Creates a new replication slot and returns information about the newly-created slot.
+
+ The to use for creating the
+ replication slot
+ The name of the slot to create. Must be a valid replication slot name (see
+
+ https://www.postgresql.org/docs/current/warm-standby.html#STREAMING-REPLICATION-SLOTS-MANIPULATION).
+
+ The name of the output plugin used for logical decoding (see
+
+ https://www.postgresql.org/docs/current/logicaldecoding-output-plugin.html).
+
+ if this replication slot shall be temporary one; otherwise
+ . Temporary slots are not saved to disk and are automatically dropped on error or
+ when the session has finished.
+ A to specify what to do with the
+ snapshot created during logical slot initialization. , which is
+ also the default, will export the snapshot for use in other sessions. This option can't be used inside a
+ transaction. will use the snapshot for the current transaction
+ executing the command. This option must be used in a transaction, and
+ must be the first command run in that transaction. Finally, will
+ just use the snapshot for logical decoding as normal but won't do anything else with it.
+
+ If , this logical replication slot supports decoding of two-phase transactions. With this option,
+ two-phase commands like PREPARE TRANSACTION, COMMIT PREPARED and ROLLBACK PREPARED are decoded and transmitted.
+ The transaction will be decoded and transmitted at PREPARE TRANSACTION time. The default is .
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ A representing a class that
+ can be used to initialize instances of subclasses.
+
+
+
+ Instructs the server to start streaming the WAL for logical replication, starting at WAL location
+ or at the slot's consistent point if isn't specified.
+ The server can reply with an error, for example if the requested section of the WAL has already been recycled.
+
+ The to use for starting replication
+ The replication slot that will be updated as replication progresses so that the server
+ knows which WAL segments are still needed by the standby.
+
+ The token to monitor for stopping the replication.
+ The WAL location to begin streaming at.
+ The collection of options passed to the slot's logical decoding plugin.
+
+ Whether the plugin will be bypassing and reading directly from the buffer.
+
+ A representing an that
+ can be used to stream WAL entries in form of instances.
+
+
+
+ Contains information about a newly-created logical replication slot.
+
+
+
+
+ Creates a new logical replication slot
+
+ The logical decoding output plugin to the corresponding replication slot was created for.
+ A struct with information to create the replication slot.
+
+
+
+ The identifier of the snapshot exported by the command.
+ The snapshot is valid until a new command is executed on this connection or the replication connection is closed.
+
+
+
+
+ The name of the output plugin used by the newly-created logical replication slot.
+
+
+
+
+ The WAL location at which the slot became consistent.
+ This is the earliest location from which streaming can start on this replication slot.
+
+
+
+
+ Represents a logical replication connection to a PostgreSQL server.
+
+
+
+
+ Initializes a new instance of .
+
+
+
+
+ Initializes a new instance of with the given connection string.
+
+ The connection used to open the PostgreSQL database.
+
+
+
+ Decides what to do with the snapshot created during logical slot initialization.
+
+
+
+
+ Export the snapshot for use in other sessions. This is the default.
+ This option can't be used inside a transaction.
+
+
+
+
+ Use the snapshot for the current transaction executing the command.
+ This option must be used in a transaction, and CREATE_REPLICATION_SLOT must be the first command run
+ in that transaction.
+
+
+
+
+ Just use the snapshot for logical decoding as normal but don't do anything else with it.
+
+
+
+
+ Logical Replication Protocol begin message
+
+
+
+
+ The final LSN of the transaction.
+
+
+
+
+ Commit timestamp of the transaction.
+ The value is in number of microseconds since PostgreSQL epoch (2000-01-01).
+
+
+
+
+ Logical Replication Protocol begin prepare message
+
+
+
+
+ Logical Replication Protocol commit message
+
+
+
+
+ Flags; currently unused.
+
+
+
+
+ The LSN of the commit.
+
+
+
+
+ The end LSN of the transaction.
+
+
+
+
+ Commit timestamp of the transaction.
+
+
+
+
+ Flags for the commit.
+
+
+
+
+ No flags.
+
+
+
+
+ Logical Replication Protocol commit prepared message
+
+
+
+
+ Flags for the commit prepared; currently unused.
+
+
+
+
+ The LSN of the commit prepared.
+
+
+
+
+ The end LSN of the commit prepared transaction.
+
+
+
+
+ Commit timestamp of the transaction.
+
+
+
+
+ Flags for the commit prepared; currently unused.
+
+
+
+
+ No flags.
+
+
+
+
+ Logical Replication Protocol update message for tables with REPLICA IDENTITY set to DEFAULT.
+
+
+
+
+ Columns representing the new row.
+
+
+
+
+ Abstract base class for Logical Replication Protocol delete message types.
+
+
+
+
+ The relation for this .
+
+
+
+
+ Logical Replication Protocol delete message for tables with REPLICA IDENTITY REPLICA IDENTITY set to FULL.
+
+
+
+
+ Columns representing the deleted row.
+
+
+
+
+ Logical Replication Protocol update message for tables with REPLICA IDENTITY set to FULL.
+
+
+
+
+ Columns representing the old row.
+
+
+
+
+ Columns representing the new row.
+
+
+
+
+ Logical Replication Protocol update message for tables with REPLICA IDENTITY set to USING INDEX.
+
+
+
+
+ Columns representing the key.
+
+
+
+
+ Columns representing the new row.
+
+
+
+
+ Logical Replication Protocol insert message
+
+
+
+
+ The relation for this .
+
+
+
+
+ Columns representing the new row.
+
+
+
+
+ Logical Replication Protocol delete message for tables with REPLICA IDENTITY set to DEFAULT or USING INDEX.
+
+
+
+
+ Columns representing the key.
+
+
+
+
+ Logical Replication Protocol logical decoding message
+
+
+
+
+ Flags; Either 0 for no flags or 1 if the logical decoding message is transactional.
+
+
+
+
+ The LSN of the logical decoding message.
+
+
+
+
+ The prefix of the logical decoding message.
+
+
+
+
+ The content of the logical decoding message.
+
+
+
+
+ Logical Replication Protocol origin message
+
+
+
+
+ The LSN of the commit on the origin server.
+
+
+
+
+ Name of the origin.
+
+
+
+
+ The base class of all Logical Replication Protocol Messages
+
+
+ See https://www.postgresql.org/docs/current/protocol-logicalrep-message-formats.html for details about the
+ protocol.
+
+
+
+
+
+
+
+ Abstract base class for Logical Replication Protocol prepare and begin prepare message
+
+
+
+
+ The user defined GID of the two-phase transaction.
+
+
+
+
+ Logical Replication Protocol prepare message
+
+
+
+
+ Flags for the prepare; currently unused.
+
+
+
+
+ Flags for the prepare; currently unused.
+
+
+
+
+ No flags.
+
+
+
+
+ Abstract base class for the logical replication protocol begin prepare and prepare message
+
+
+
+
+ The LSN of the prepare.
+
+
+
+
+ The end LSN of the prepared transaction.
+
+
+
+
+ Prepare timestamp of the transaction.
+
+
+
+
+ Logical Replication Protocol relation message
+
+
+
+
+ ID of the relation.
+
+
+
+
+ Namespace (empty string for pg_catalog).
+
+
+
+
+ Relation name.
+
+
+
+
+ Replica identity setting for the relation (same as relreplident in pg_class):
+ columns used to form “replica identity” for rows.
+
+
+
+
+ Relation columns
+
+
+
+
+ Represents a column in a Logical Replication Protocol relation message
+
+
+
+
+ Flags for the column.
+
+
+
+
+ Name of the column.
+
+
+
+
+ ID of the column's data type.
+
+
+
+
+ Type modifier of the column (atttypmod).
+
+
+
+
+ Flags for the column.
+
+
+
+
+ No flags.
+
+
+
+
+ Marks the column as part of the key.
+
+
+
+
+ Replica identity setting for the relation (same as relreplident in pg_class).
+
+
+ See
+
+
+
+
+ Default (primary key, if any).
+
+
+
+
+ Nothing.
+
+
+
+
+ All columns.
+
+
+
+
+ Index with indisreplident set (same as nothing if the index used has been dropped)
+
+
+
+
+ Represents a column in a Logical Replication Protocol relation message
+
+
+
+
+ Flags for the column. Currently can be either 0 for no flags or 1 which marks the column as part of the key.
+
+
+
+
+ Name of the column.
+
+
+
+
+ ID of the column's data type.
+
+
+
+
+ Type modifier of the column (atttypmod).
+
+
+
+
+ Logical Replication Protocol rollback prepared message
+
+
+
+
+ Flags for the rollback prepared; currently unused.
+
+
+
+
+ The end LSN of the prepared transaction.
+
+
+
+
+ The end LSN of the rollback prepared transaction.
+
+
+
+
+ Prepare timestamp of the transaction.
+
+
+
+
+ Rollback timestamp of the transaction.
+
+
+
+
+ Flags for the rollback prepared; currently unused.
+
+
+
+
+ No flags.
+
+
+
+
+ Logical Replication Protocol stream abort message
+
+
+
+
+ Xid of the subtransaction (will be same as xid of the transaction for top-level transactions).
+
+
+
+
+ Logical Replication Protocol stream commit message
+
+
+
+
+ Flags; currently unused (must be 0).
+
+
+
+
+ The LSN of the commit.
+
+
+
+
+ The end LSN of the transaction.
+
+
+
+
+ Commit timestamp of the transaction.
+
+
+
+
+ Logical Replication Protocol stream prepare message
+
+
+
+
+ Flags for the prepare; currently unused.
+
+
+
+
+ Flags for the prepare; currently unused.
+
+
+
+
+ No flags.
+
+
+
+
+ Logical Replication Protocol stream start message
+
+
+
+
+ A value of 1 indicates this is the first stream segment for this XID, 0 for any other stream segment.
+
+
+
+
+ Logical Replication Protocol stream stop message
+
+
+
+
+ The common base class for all streaming replication messages that can be part of a streaming transaction (protocol V2)
+
+
+
+
+ Xid of the transaction (only present for streamed transactions).
+
+
+
+
+ The common base class for all replication messages that set the transaction xid of a transaction
+
+
+
+
+ Xid of the transaction.
+
+
+
+
+ Logical Replication Protocol truncate message
+
+
+
+
+ Option flags for TRUNCATE
+
+
+
+
+ The relations being truncated.
+
+
+
+
+ Enum representing the additional options for the TRUNCATE command as flags
+
+
+
+
+ No additional option was specified
+
+
+
+
+ CASCADE was specified
+
+
+
+
+ RESTART IDENTITY was specified
+
+
+
+
+ Logical Replication Protocol type message
+
+
+
+
+ ID of the data type.
+
+
+
+
+ Namespace (empty string for pg_catalog).
+
+
+
+
+ Name of the data type.
+
+
+
+
+ Abstract base class for Logical Replication Protocol delete message types.
+
+
+
+
+ The relation for this .
+
+
+
+
+ Columns representing the new row.
+
+
+
+
+ Options to be passed to the pgoutput plugin
+
+
+
+
+ Creates a new instance of .
+
+ The publication names to include into the stream
+ The version of the logical streaming replication protocol
+ Send values in binary representation
+ Enable streaming of in-progress transactions
+ Write logical decoding messages into the replication stream
+ Enable streaming of prepared transactions
+
+
+
+ Creates a new instance of .
+
+ The publication names to include into the stream
+ The version of the logical streaming replication protocol
+ Send values in binary representation
+ Enable streaming of in-progress transactions
+ Write logical decoding messages into the replication stream
+ Enable streaming of prepared transactions
+
+
+
+ The version of the Logical Streaming Replication Protocol
+
+
+
+
+ The publication names to stream
+
+
+
+
+ Send values in binary representation
+
+
+ This works in PostgreSQL versions 14+
+
+
+
+
+ Enable streaming of in-progress transactions
+
+
+ This works as of logical streaming replication protocol version 2 (PostgreSQL 14+)
+
+
+
+
+ Write logical decoding messages into the replication stream
+
+
+ This works in PostgreSQL versions 14+
+
+
+
+
+ Enable streaming of prepared transactions
+
+
+ This works in PostgreSQL versions 15+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Acts as a proxy for a logical replication slot initialized for for the logical streaming replication protocol
+ (pgoutput logical decoding plugin).
+
+
+
+
+ Creates a new instance.
+
+
+ Create a instance with this
+ constructor to wrap an existing PostgreSQL replication slot that has
+ been initialized for the pgoutput logical decoding plugin.
+
+ The name of the existing replication slot
+
+
+
+ Creates a new instance.
+
+
+ Create a instance with this
+ constructor to wrap an existing PostgreSQL replication slot that has
+ been initialized for the pgoutput logical decoding plugin.
+
+ The representing the existing replication slot
+
+
+
+ Creates a new instance.
+
+
+ This constructor is intended to be consumed by plugins sitting on top of
+
+
+ The from which the new instance should be initialized
+
+
+
+ Represents a streaming tuple containing .
+
+
+
+
+ The number of columns in the tuple.
+
+
+
+
+
+
+
+ Represents a column value in a logical replication session.
+
+
+
+
+ The length of the value in bytes.
+
+
+
+
+ The kind of data transmitted for a tuple in a Logical Replication Protocol message.
+
+
+
+
+ Gets a value that indicates whether the column contains nonexistent or missing values.
+
+ true if the specified column is equivalent to ; otherwise false.
+
+
+
+ Gets a value that indicates whether the column contains an unchanged TOASTed value (the actual value is not sent).
+
+ Whether the specified column is an unchanged TOASTed value.
+
+
+
+ Gets a representation of the PostgreSQL data type for the specified field.
+ The returned representation can be used to access various information about the field.
+
+
+
+
+ Gets the data type information for the specified field.
+ This is be the PostgreSQL type name (e.g. double precision), not the .NET type
+ (see for that).
+
+
+
+
+ Gets the data type of the specified column.
+
+ The data type of the specified column.
+
+
+
+ Gets the value of the specified column as a type.
+
+ The type of the value to be returned.
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+
+
+
+ Gets the value of the specified column as an instance of .
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+
+
+
+ Retrieves data as a .
+
+
+
+
+ Retrieves data as a .
+
+
+
+
+ The kind of data transmitted for a tuple in a Logical Replication Protocol message.
+
+
+
+
+ Identifies the data as NULL value.
+
+
+
+
+ Identifies unchanged TOASTed value (the actual value is not sent).
+
+
+
+
+ Identifies the data as text formatted value.
+
+
+
+
+ Identifies the data as binary value.
+
+ Added in PG14
+
+
+
+ Extension methods to use with the pg_output logical decoding plugin.
+
+
+
+
+ Creates a class that wraps a replication slot using the
+ "pgoutput" logical decoding plugin and can be used to start streaming replication via the logical
+ streaming replication protocol.
+
+
+ See https://www.postgresql.org/docs/current/protocol-logical-replication.html
+ and https://www.postgresql.org/docs/current/protocol-logicalrep-message-formats.html
+ for more information.
+
+ The to use for creating the replication slot
+ The name of the slot to create. Must be a valid replication slot name (see
+ https://www.postgresql.org/docs/current/warm-standby.html#STREAMING-REPLICATION-SLOTS-MANIPULATION).
+
+
+ if this replication slot shall be temporary one; otherwise .
+ Temporary slots are not saved to disk and are automatically dropped on error or when the session has finished.
+
+
+ A to specify what to do with the snapshot created during logical slot
+ initialization. , which is also the default, will export the
+ snapshot for use in other sessions. This option can't be used inside a transaction.
+ will use the snapshot for the current transaction executing the
+ command. This option must be used in a transaction, and must be the
+ first command run in that transaction. Finally, will just use
+ the snapshot for logical decoding as normal but won't do anything else with it.
+
+
+ If , this logical replication slot supports decoding of two-phase transactions. With this option,
+ two-phase commands like PREPARE TRANSACTION, COMMIT PREPARED and ROLLBACK PREPARED are decoded and transmitted.
+ The transaction will be decoded and transmitted at PREPARE TRANSACTION time. The default is .
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+ A that wraps the newly-created replication slot.
+
+
+
+
+ Instructs the server to start the Logical Streaming Replication Protocol (pgoutput logical decoding plugin),
+ starting at WAL location or at the slot's consistent point if
+ isn't specified.
+ The server can reply with an error, for example if the requested section of the WAL has already been recycled.
+
+ The to use for starting replication
+ The replication slot that will be updated as replication progresses so that the server
+ knows which WAL segments are still needed by the standby.
+
+ The collection of options passed to the slot's logical decoding plugin.
+ The token to monitor for stopping the replication.
+ The WAL location to begin streaming at.
+ A representing an that
+ can be used to stream WAL entries in form of instances.
+
+
+
+ Represents a physical replication connection to a PostgreSQL server.
+
+
+
+
+ Initializes a new instance of .
+
+
+
+
+ Initializes a new instance of with the given connection string.
+
+ The connection used to open the PostgreSQL database.
+
+
+
+ Creates a that wraps a PostgreSQL physical replication slot and
+ can be used to start physical streaming replication
+
+
+ The name of the slot to create. Must be a valid replication slot name
+ (see Section 26.2.6.1).
+
+
+ if this replication slot shall be a temporary one; otherwise
+ . Temporary slots are not saved to disk and are automatically dropped on error or
+ when the session has finished.
+
+
+ If this is set to this physical replication slot reserves WAL immediately. Otherwise,
+ WAL is only reserved upon connection from a streaming replication client.
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ A representing a that represents the
+ newly-created replication slot.
+
+
+
+
+ Read some information associated to a replication slot.
+
+ This command is currently only supported for physical replication slots.
+
+
+
+ The name of the slot to read. Must be a valid replication slot name
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ A representing a or
+ if the replication slot does not exist.
+
+
+
+ Instructs the server to start streaming the WAL for physical replication, starting at WAL location
+ . The server can reply with an error, for example if the requested
+ section of the WAL has already been recycled.
+
+
+ If the client requests a timeline that's not the latest but is part of the history of the server, the server
+ will stream all the WAL on that timeline starting from the requested start point up to the point where the
+ server switched to another timeline.
+
+
+ The replication slot that will be updated as replication progresses so that the server
+ knows which WAL segments are still needed by the standby.
+
+ The WAL location to begin streaming at.
+ The token to be used for stopping the replication.
+ Streaming starts on timeline tli.
+ A representing an that
+ can be used to stream WAL entries in form of instances.
+
+
+
+ Instructs the server to start streaming the WAL for logical replication, starting at WAL location
+ . The server can reply with an error, for example if the requested
+ section of WAL has already been recycled.
+
+
+ If the client requests a timeline that's not the latest but is part of the history of the server, the server
+ will stream all the WAL on that timeline starting from the requested start point up to the point where the
+ server switched to another timeline.
+
+ The WAL location to begin streaming at.
+ The token to be used for stopping the replication.
+ Streaming starts on timeline tli.
+ A representing an that
+ can be used to stream WAL entries in form of instances.
+
+
+
+ Instructs the server to start streaming the WAL for physical replication, starting at the WAL location
+ and timeline id specified in . The server can reply with an error, for example
+ if the requested section of the WAL has already been recycled.
+
+
+ If the client requests a timeline that's not the latest but is part of the history of the server, the server
+ will stream all the WAL on that timeline starting from the requested start point up to the point where the
+ server switched to another timeline.
+
+
+ The replication slot that will be updated as replication progresses so that the server
+ knows which WAL segments are still needed by the standby.
+
+ The must contain a valid to be used for this overload.
+
+
+ The token to be used for stopping the replication.
+ A representing an that
+ can be used to stream WAL entries in form of instances.
+
+
+
+ Wraps a replication slot that uses physical replication.
+
+
+
+
+ Creates a new instance.
+
+
+ Create a instance with this constructor to wrap an existing PostgreSQL replication slot
+ that has been initialized for physical replication.
+
+ The name of the existing replication slot
+ The replication slot's restart_lsn
+ The timeline ID associated to restart_lsn, following the current timeline history.
+
+
+
+ The replication slot's restart_lsn.
+
+
+
+
+ The timeline ID associated to restart_lsn, following the current timeline history.
+
+
+
+
+ Defines the core behavior of replication connections and provides the base class for
+ and
+ .
+
+
+
+
+ Gets or sets the string used to connect to a PostgreSQL database. See the manual for details.
+
+
+ The connection string that includes the server name, the database name, and other parameters needed to establish the initial
+ connection. The default value is an empty string.
+
+
+ Since replication connections are a special kind of connection,
+ , ,
+ and
+ are always disabled no matter what you set them to in your connection string.
+
+
+
+
+ The location of the last WAL byte + 1 received in the standby.
+
+
+
+
+ The location of the last WAL byte + 1 flushed to disk in the standby.
+
+
+
+
+ The location of the last WAL byte + 1 applied (e. g. written to disk) in the standby.
+
+
+
+
+ Send replies at least this often.
+ Timeout. disables automated replies.
+
+
+
+
+ Time that receiver waits for communication from master.
+ Timeout. disables the timeout.
+
+
+
+
+ The version of the PostgreSQL server we're connected to.
+
+
+ This can only be called when the connection is open.
+
+
+ In case of a development or pre-release version this field will contain
+ the version of the next version to be released from this branch.
+
+
+
+
+
+
+ The PostgreSQL server version as returned by the server_version option.
+
+ This can only be called when the connection is open.
+
+
+
+
+
+ Gets or sets the wait time before terminating the attempt to execute a command and generating an error.
+
+ The time to wait for the command to execute. The default value is 30 seconds.
+
+
+
+ The client encoding for the connection
+ This can only be called when there is an active connection.
+
+
+
+
+ Process id of backend server.
+ This can only be called when there is an active connection.
+
+
+
+
+ Opens a database replication connection with the property settings specified by the
+ .
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ A task representing the asynchronous open operation.
+
+
+
+ Closes the replication connection and performs tasks associated
+ with freeing, releasing, or resetting its unmanaged resources asynchronously.
+
+ A task that represents the asynchronous dispose operation.
+
+
+
+ Requests the server to identify itself.
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+ A containing information about the system we are connected to.
+
+
+
+
+ Requests the server to send the current setting of a run-time parameter.
+ This is similar to the SQL command SHOW.
+
+ The name of a run-time parameter.
+ Available parameters are documented in https://www.postgresql.org/docs/current/runtime-config.html.
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ The current setting of the run-time parameter specified in as .
+
+
+
+ Requests the server to send over the timeline history file for timeline tli.
+
+ The timeline for which the history file should be sent.
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ The timeline history file for timeline tli
+
+
+
+ Sets the current status of the replication as it is interpreted by the consuming client. The value supplied
+ in will be sent to the server via and
+ with the next status update.
+
+ A status update which will happen upon server request, upon expiration of
+ our upon an enforced status update via , whichever happens first.
+ If you want the value you set here to be pushed to the server immediately (e. g. in synchronous replication scenarios),
+ call after calling this method.
+
+
+
+ This is a convenience method setting both and in one operation.
+ You can use it if your application processes replication messages in a way that doesn't care about the difference between
+ writing a message and flushing it to a permanent storage medium.
+
+ The location of the last WAL byte + 1 applied (e. g. processed or written to disk) and flushed to disk in the standby.
+
+
+
+ Sends a forced status update to PostgreSQL with the current WAL tracking information.
+
+ The connection currently isn't streaming
+ A Task representing the sending of the status update (and not any PostgreSQL response).
+
+
+
+ Drops a replication slot, freeing any reserved server-side resources.
+ If the slot is a logical slot that was created in a database other than
+ the database the walsender is connected to, this command fails.
+
+ The name of the slot to drop.
+
+ causes the command to wait until the slot becomes
+ inactive if it currently is active instead of the default behavior of raising an error.
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ A task representing the asynchronous drop operation.
+
+
+
+ The common base class for all streaming replication messages
+
+
+
+
+ The starting point of the WAL data in this message.
+
+
+
+
+ The current end of WAL on the server.
+
+
+
+
+ The server's system clock at the time this message was transmitted, as microseconds since midnight on 2000-01-01.
+
+
+ Since the client using Npgsql and the server may be located in different time zones,
+ as of Npgsql 7.0 this value is no longer converted to local time but keeps its original value in UTC.
+ You can check if you don't want to introduce behavior depending on Npgsql versions.
+
+
+
+
+ Contains information about a newly-created replication slot.
+
+
+
+
+ The name of the newly-created replication slot.
+
+
+
+
+ Contains information about a replication slot.
+
+
+
+
+ Creates a new instance.
+
+
+ The name of the replication slot.
+
+
+ The WAL location at which the slot became consistent.
+
+
+
+
+ Creates a new instance.
+
+
+ The name of the replication slot.
+
+
+ The WAL location at which the slot became consistent.
+
+
+
+
+ The name of the replication slot.
+
+
+
+
+ The WAL location at which the slot became consistent.
+
+
+
+
+ The identifier of the snapshot exported by the CREATE_REPLICATION_SLOT command.
+
+
+
+
+ Contains server identification information returned from .
+
+
+
+
+ The unique system identifier identifying the cluster.
+ This can be used to check that the base backup used to initialize the standby came from the same cluster.
+
+
+
+
+ Current timeline ID. Also useful to check that the standby is consistent with the master.
+
+
+
+
+ Current WAL flush location. Useful to get a known location in the write-ahead log where streaming can start.
+
+
+
+
+ Database connected to.
+
+
+
+
+ Text representations of PostgreSQL WAL operations decoded by the "test_decoding" plugin. See
+ https://www.postgresql.org/docs/current/test-decoding.html.
+
+
+
+
+ Decoded text representation of the operation performed in this WAL entry
+
+
+
+
+
+
+
+ Returns a clone of this message, which can be accessed after other replication messages have been retrieved.
+
+
+
+
+ Options to be passed to the test_decoding plugin
+
+
+
+
+ Creates a new instance of .
+
+ Include the transaction number for BEGIN and COMMIT command output
+ Include the timestamp for COMMIT command output
+ Set the output mode to binary
+ Skip output for transactions that didn't change the database
+ Only output data that don't have the replication origin set
+ Include output from table rewrites that were caused by DDL statements
+ Enable streaming output
+
+
+
+ Include the transaction number for BEGIN and COMMIT command output
+
+
+
+
+ Include the timestamp for COMMIT command output
+
+
+
+
+ Set the output mode to binary
+
+
+
+
+ Skip output for transactions that didn't change the database
+
+
+
+
+ Only output data that don't have the replication origin set
+
+
+
+
+ Include output from table rewrites that were caused by DDL statements
+
+
+
+
+ Enable streaming output
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Acts as a proxy for a logical replication slot
+ initialized for for the test_decoding logical decoding plugin.
+
+
+
+
+ Creates a new instance.
+
+
+ Create a instance with this
+ constructor to wrap an existing PostgreSQL replication slot that has
+ been initialized for the test_decoding logical decoding plugin.
+
+ The name of the existing replication slot
+
+
+
+ Creates a new instance.
+
+
+ Create a instance with this
+ constructor to wrap an existing PostgreSQL replication slot that has
+ been initialized for the test_decoding logical decoding plugin.
+
+ The representing the existing replication slot
+
+
+
+ Extension methods to use with the
+ test_decoding logical decoding plugin.
+ See https://www.postgresql.org/docs/current/test-decoding.html.
+
+
+
+
+ Creates a class that wraps a replication slot using the
+ test_decoding logical decoding plugin.
+
+
+ See https://www.postgresql.org/docs/current/test-decoding.html
+ for more information.
+
+ The to use for creating the
+ replication slot
+ The name of the slot to create. Must be a valid replication slot name (see
+ https://www.postgresql.org/docs/current/warm-standby.html#STREAMING-REPLICATION-SLOTS-MANIPULATION).
+
+
+ if this replication slot shall be temporary one; otherwise .
+ Temporary slots are not saved to disk and are automatically dropped on error or when the session has finished.
+
+
+ A to specify what to do with the snapshot created during logical slot
+ initialization. , which is also the default, will export the
+ snapshot for use in other sessions. This option can't be used inside a transaction.
+ will use the snapshot for the current transaction executing the
+ command. This option must be used in a transaction, and must be the
+ first command run in that transaction. Finally, will just use
+ the snapshot for logical decoding as normal but won't do anything else with it.
+
+
+ If , this logical replication slot supports decoding of two-phase transactions. With this option,
+ two-phase commands like PREPARE TRANSACTION, COMMIT PREPARED and ROLLBACK PREPARED are decoded and transmitted.
+ The transaction will be decoded and transmitted at PREPARE TRANSACTION time. The default is .
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+
+ A that wraps the newly-created replication slot.
+
+
+
+
+ Instructs the server to start streaming the WAL for logical replication using the test_decoding logical decoding plugin,
+ starting at WAL location or at the slot's consistent point if
+ isn't specified.
+ The server can reply with an error, for example if the requested section of the WAL has already been recycled.
+
+ The to use for starting replication
+ The replication slot that will be updated as replication progresses so that the server
+ knows which WAL segments are still needed by the standby.
+
+ The token to monitor for stopping the replication.
+ The collection of options passed to the slot's logical decoding plugin.
+ The WAL location to begin streaming at.
+ A representing an that
+ can be used to stream WAL entries in form of instances.
+
+
+
+ Represents a PostgreSQL timeline history file
+
+
+
+
+ File name of the timeline history file, e.g., 00000002.history.
+
+
+
+
+ Contents of the timeline history file.
+
+
+
+
+ A message representing a section of the WAL data stream.
+
+
+
+
+ A section of the WAL data stream that is raw WAL data in physical replication or decoded with the selected
+ logical decoding plugin in logical replication. It is only valid until the next
+ is requested from the stream.
+
+
+ A single WAL record is never split across two XLogData messages.
+ When a WAL record crosses a WAL page boundary, and is therefore already split using continuation records,
+ it can be split at the page boundary. In other words, the first main WAL record and its continuation
+ records can be sent in different XLogData messages.
+
+
+
+
+ Stripped-down version of , mainly to support Amazon Redshift.
+
+
+
+
+ Performs some post-setup configuration that's common to both table columns and non-columns.
+
+
+
+
+ Provides schema information about a column.
+
+
+ Note that this can correspond to a field returned in a query which isn't an actual table column
+
+ See https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqldatareader.getschematable(v=vs.110).aspx
+ for information on the meaning of the different fields.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The describing the type of this column.
+
+
+
+
+ The OID of the type of this column in the PostgreSQL pg_type catalog table.
+
+
+
+
+ The OID of the PostgreSQL table of this column.
+
+
+
+
+ The column's position within its table. Note that this is different from ,
+ which is the column's position within the resultset.
+
+
+
+
+ The default SQL expression for this column.
+
+
+
+
+ The value for this column's type.
+
+
+
+
+
+
+
+
+ Receives a user SQL query as passed in by the user in or
+ , and rewrites it for PostgreSQL compatibility.
+
+
+ This includes doing rewriting named parameter placeholders to positional (@p => $1), and splitting the query
+ up by semicolons (legacy batching, SELECT 1; SELECT 2).
+
+
+ The user-facing being executed.
+ Whether PostgreSQL standards-conforming are used.
+
+ A bool indicating whether parameters contains a list of preconfigured parameters or an empty list to be filled with derived
+ parameters.
+
+
+
+
+
+ Receives a user SQL query as passed in by the user in or
+ , and rewrites it for PostgreSQL compatibility.
+
+
+ This includes doing rewriting named parameter placeholders to positional (@p => $1), and splitting the query
+ up by semicolons (legacy batching, SELECT 1; SELECT 2).
+
+
+ The user-facing being executed.
+ Whether PostgreSQL standards-conforming are used.
+
+ A bool indicating whether parameters contains a list of preconfigured parameters or an empty list to be filled with derived
+ parameters.
+
+
+
+
+ Specifies server type preference.
+
+
+
+
+ Any successful connection is acceptable.
+
+
+
+
+ Session must accept read-write transactions by default (that is, the server must not be in hot standby mode and the
+ default_transaction_read_only parameter must be off).
+
+
+
+
+ Session must not accept read-write transactions by default (the converse).
+
+
+
+
+ Server must not be in hot standby mode.
+
+
+
+
+ Server must be in hot standby mode.
+
+
+
+
+ First try to find a primary server, but if none of the listed hosts is a primary server, try again in mode.
+
+
+
+
+ First try to find a standby server, but if none of the listed hosts is a standby server, try again in mode.
+
+
+
+
+ Utility class to execute a potentially non-cancellable while allowing to timeout and/or cancel awaiting for it and at the same time prevent event if the original fails later.
+
+
+
+
+ Executes a potentially non-cancellable while allowing to timeout and/or cancel awaiting for it.
+ If the given task does not complete within , a is thrown.
+ The executed may be left in an incomplete state after the that this method returns completes dues to timeout and/or cancellation request.
+ The method guarantees that the abandoned, incomplete is not going to produce event if it fails later.
+
+ Gets the for execution with a combined that attempts to cancel the in an event of the timeout or external cancellation request.
+ The timeout after which the should be faulted with a if it hasn't otherwise completed.
+ The to monitor for a cancellation request.
+ The result .
+ The representing the asynchronous wait.
+
+
+
+ Executes a potentially non-cancellable while allowing to timeout and/or cancel awaiting for it.
+ If the given task does not complete within , a is thrown.
+ The executed may be left in an incomplete state after the that this method returns completes dues to timeout and/or cancellation request.
+ The method guarantees that the abandoned, incomplete is not going to produce event if it fails later.
+
+ Gets the for execution with a combined that attempts to cancel the in an event of the timeout or external cancellation request.
+ The timeout after which the should be faulted with a if it hasn't otherwise completed.
+ The to monitor for a cancellation request.
+ The representing the asynchronous wait.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A type mapper, managing how to read and write CLR values to PostgreSQL data types.
+
+
+ The preferred way to manage type mappings is on . An alternative, but discouraged, method, is to
+ manage them globally via ).
+
+
+
+
+ The default name translator to convert CLR type names and member names. Defaults to .
+
+
+
+
+ Maps a CLR enum to a PostgreSQL enum type.
+
+
+ CLR enum labels are mapped by name to PostgreSQL enum labels.
+ The translation strategy can be controlled by the parameter,
+ which defaults to .
+ You can also use the on your enum fields to manually specify a PostgreSQL enum label.
+ If there is a discrepancy between the .NET and database labels while an enum is read or written,
+ an exception will be raised.
+
+
+ A PostgreSQL type name for the corresponding enum type in the database.
+ If null, the name translator given in will be used.
+
+
+ A component which will be used to translate CLR names (e.g. SomeClass) into database names (e.g. some_class).
+ Defaults to .
+
+ The .NET enum type to be mapped
+
+
+
+ Removes an existing enum mapping.
+
+
+ A PostgreSQL type name for the corresponding enum type in the database.
+ If null, the name translator given in will be used.
+
+
+ A component which will be used to translate CLR names (e.g. SomeClass) into database names (e.g. some_class).
+ Defaults to .
+
+
+
+
+ Maps a CLR enum to a PostgreSQL enum type.
+
+
+ CLR enum labels are mapped by name to PostgreSQL enum labels.
+ The translation strategy can be controlled by the parameter,
+ which defaults to .
+ You can also use the on your enum fields to manually specify a PostgreSQL enum label.
+ If there is a discrepancy between the .NET and database labels while an enum is read or written,
+ an exception will be raised.
+
+ The .NET enum type to be mapped
+
+ A PostgreSQL type name for the corresponding enum type in the database.
+ If null, the name translator given in will be used.
+
+
+ A component which will be used to translate CLR names (e.g. SomeClass) into database names (e.g. some_class).
+ Defaults to .
+
+
+
+
+ Removes an existing enum mapping.
+
+ The .NET enum type to be mapped
+
+ A PostgreSQL type name for the corresponding enum type in the database.
+ If null, the name translator given in will be used.
+
+
+ A component which will be used to translate CLR names (e.g. SomeClass) into database names (e.g. some_class).
+ Defaults to .
+
+
+
+
+ Maps a CLR type to a PostgreSQL composite type.
+
+
+ CLR fields and properties by string to PostgreSQL names.
+ The translation strategy can be controlled by the parameter,
+ which defaults to .
+ You can also use the on your members to manually specify a PostgreSQL name.
+ If there is a discrepancy between the .NET type and database type while a composite is read or written,
+ an exception will be raised.
+
+
+ A PostgreSQL type name for the corresponding composite type in the database.
+ If null, the name translator given in will be used.
+
+
+ A component which will be used to translate CLR names (e.g. SomeClass) into database names (e.g. some_class).
+ Defaults to .
+
+ The .NET type to be mapped
+
+
+
+ Removes an existing composite mapping.
+
+
+ A PostgreSQL type name for the corresponding composite type in the database.
+ If null, the name translator given in will be used.
+
+
+ A component which will be used to translate CLR names (e.g. SomeClass) into database names (e.g. some_class).
+ Defaults to
+
+
+
+
+ Maps a CLR type to a composite type.
+
+
+ Maps CLR fields and properties by string to PostgreSQL names.
+ The translation strategy can be controlled by the parameter,
+ which defaults to .
+ If there is a discrepancy between the .NET type and database type while a composite is read or written,
+ an exception will be raised.
+
+ The .NET type to be mapped.
+
+ A PostgreSQL type name for the corresponding composite type in the database.
+ If null, the name translator given in will be used.
+
+
+ A component which will be used to translate CLR names (e.g. SomeClass) into database names (e.g. some_class).
+ Defaults to .
+
+
+
+
+ Removes an existing composite mapping.
+
+ The .NET type to be unmapped.
+
+ A PostgreSQL type name for the corresponding composite type in the database.
+ If null, the name translator given in will be used.
+
+
+ A component which will be used to translate CLR names (e.g. SomeClass) into database names (e.g. some_class).
+ Defaults to .
+
+
+
+
+ Adds a type info resolver factory which can add or modify support for PostgreSQL types.
+ Typically used by plugins.
+
+ The type resolver factory to be added.
+
+
+
+ Configures the JSON serializer options used when reading and writing all System.Text.Json data.
+
+ Options to customize JSON serialization and deserialization.
+
+
+
+
+ Sets up dynamic System.Text.Json mappings. This allows mapping arbitrary .NET types to PostgreSQL json and jsonb
+ types, as well as and its derived types.
+
+
+ A list of CLR types to map to PostgreSQL jsonb (no need to specify ).
+
+
+ A list of CLR types to map to PostgreSQL json (no need to specify ).
+
+
+ Due to the dynamic nature of these mappings, they are not compatible with NativeAOT or trimming.
+
+
+
+
+ Sets up mappings for the PostgreSQL record type as a .NET or .
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Sets up mappings allowing the use of unmapped enum, range and multirange types.
+
+ The same builder instance so that multiple calls can be chained.
+
+
+
+ Resets all mapping changes performed on this type mapper and reverts it to its original, starting state.
+
+
+
+
+ The base class for user type mappings.
+
+
+
+
+ The name of the PostgreSQL type that this mapping is for.
+
+
+
+
+ The CLR type that this mapping is for.
+
+
+
+
+ Represents a timeout that will expire at some point.
+
+
+
+
+ A wrapper around to simplify reset management.
+
+
+ Since there's no way to reset a once it was cancelled,
+ we need to make sure that an existing cancellation token source hasn't been cancelled,
+ every time we start it (see https://github.com/dotnet/runtime/issues/4694).
+
+
+
+
+ Used, so we wouldn't concurently use the cts for the cancellation, while it's being disposed
+
+
+
+
+ Set the timeout on the wrapped
+ and make sure that it hasn't been cancelled yet
+
+
+ An optional token to cancel the asynchronous operation. The default value is .
+
+ The from the wrapped
+
+
+
+ Restart the timeout on the wrapped without reinitializing it,
+ even if is already set to
+
+
+
+
+ Reset the wrapper to contain a unstarted and uncancelled
+ in order make sure the next call to will not invalidate
+ the cancellation token.
+
+ The from the wrapped
+
+
+
+ Reset the wrapper to contain a unstarted and uncancelled
+ in order make sure the next call to will not invalidate
+ the cancellation token.
+
+
+
+
+ Set the timeout on the wrapped
+ to
+
+
+ can still arrive at a state
+ where it's value is if the
+ passed to gets a cancellation request.
+ If this is the case it will be resolved upon the next call to
+ or . Calling multiple times or without calling
+ first will do no any harm (besides eating a tiny amount of CPU cycles).
+
+
+
+
+ Cancel the wrapped
+
+
+
+
+ Cancel the wrapped after delay
+
+
+
+
+ The from the wrapped
+ .
+
+
+ The token is only valid after calling
+ and before calling the next time.
+ Otherwise you may end up with a token that has already been
+ cancelled or belongs to a cancellation token source that has
+ been disposed.
+
+
+
+
+ Allocation free helper function to find if version is greater than expected
+
+
+
+
+
+
+
+ Note that a connection may be closed before its TransactionScope completes. In this case we close the NpgsqlConnection
+ as usual but the connector in a special list in the pool; it will be closed only when the scope completes.
+
+
+
+
+ Represents a PostgreSQL data type that can be written or read to the database.
+ Used in places such as to unambiguously specify
+ how to encode or decode values.
+
+
+ See https://www.postgresql.org/docs/current/static/datatype.html.
+
+
+
+
+ Corresponds to the PostgreSQL 8-byte "bigint" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-numeric.html
+
+
+
+ Corresponds to the PostgreSQL 8-byte floating-point "double" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-numeric.html
+
+
+
+ Corresponds to the PostgreSQL 4-byte "integer" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-numeric.html
+
+
+
+ Corresponds to the PostgreSQL arbitrary-precision "numeric" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-numeric.html
+
+
+
+ Corresponds to the PostgreSQL floating-point "real" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-numeric.html
+
+
+
+ Corresponds to the PostgreSQL 2-byte "smallint" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-numeric.html
+
+
+
+ Corresponds to the PostgreSQL "money" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-money.html
+
+
+
+ Corresponds to the PostgreSQL "boolean" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-boolean.html
+
+
+
+ Corresponds to the PostgreSQL geometric "box" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-geometric.html
+
+
+
+ Corresponds to the PostgreSQL geometric "circle" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-geometric.html
+
+
+
+ Corresponds to the PostgreSQL geometric "line" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-geometric.html
+
+
+
+ Corresponds to the PostgreSQL geometric "lseg" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-geometric.html
+
+
+
+ Corresponds to the PostgreSQL geometric "path" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-geometric.html
+
+
+
+ Corresponds to the PostgreSQL geometric "point" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-geometric.html
+
+
+
+ Corresponds to the PostgreSQL geometric "polygon" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-geometric.html
+
+
+
+ Corresponds to the PostgreSQL "char(n)" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-character.html
+
+
+
+ Corresponds to the PostgreSQL "text" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-character.html
+
+
+
+ Corresponds to the PostgreSQL "varchar" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-character.html
+
+
+
+ Corresponds to the PostgreSQL internal "name" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-character.html
+
+
+
+ Corresponds to the PostgreSQL "citext" type for the citext module.
+
+ See https://www.postgresql.org/docs/current/static/citext.html
+
+
+
+ Corresponds to the PostgreSQL "char" type.
+
+
+ This is an internal field and should normally not be used for regular applications.
+
+ See https://www.postgresql.org/docs/current/static/datatype-text.html
+
+
+
+
+ Corresponds to the PostgreSQL "bytea" type, holding a raw byte string.
+
+ See https://www.postgresql.org/docs/current/static/datatype-binary.html
+
+
+
+ Corresponds to the PostgreSQL "date" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-datetime.html
+
+
+
+ Corresponds to the PostgreSQL "time" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-datetime.html
+
+
+
+ Corresponds to the PostgreSQL "timestamp" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-datetime.html
+
+
+
+ Corresponds to the PostgreSQL "timestamp with time zone" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-datetime.html
+
+
+
+ Corresponds to the PostgreSQL "interval" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-datetime.html
+
+
+
+ Corresponds to the PostgreSQL "time with time zone" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-datetime.html
+
+
+
+ Corresponds to the obsolete PostgreSQL "abstime" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-datetime.html
+
+
+
+ Corresponds to the PostgreSQL "inet" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-net-types.html
+
+
+
+ Corresponds to the PostgreSQL "cidr" type, a field storing an IPv4 or IPv6 network.
+
+ See https://www.postgresql.org/docs/current/static/datatype-net-types.html
+
+
+
+ Corresponds to the PostgreSQL "macaddr" type, a field storing a 6-byte physical address.
+
+ See https://www.postgresql.org/docs/current/static/datatype-net-types.html
+
+
+
+ Corresponds to the PostgreSQL "macaddr8" type, a field storing a 6-byte or 8-byte physical address.
+
+ See https://www.postgresql.org/docs/current/static/datatype-net-types.html
+
+
+
+ Corresponds to the PostgreSQL "bit" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-bit.html
+
+
+
+ Corresponds to the PostgreSQL "varbit" type, a field storing a variable-length string of bits.
+
+ See https://www.postgresql.org/docs/current/static/datatype-boolean.html
+
+
+
+ Corresponds to the PostgreSQL "tsvector" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-textsearch.html
+
+
+
+ Corresponds to the PostgreSQL "tsquery" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-textsearch.html
+
+
+
+ Corresponds to the PostgreSQL "regconfig" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-textsearch.html
+
+
+
+ Corresponds to the PostgreSQL "uuid" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-uuid.html
+
+
+
+ Corresponds to the PostgreSQL "xml" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-xml.html
+
+
+
+ Corresponds to the PostgreSQL "json" type, a field storing JSON in text format.
+
+ See https://www.postgresql.org/docs/current/static/datatype-json.html
+
+
+
+
+ Corresponds to the PostgreSQL "jsonb" type, a field storing JSON in an optimized binary.
+ format.
+
+
+ Supported since PostgreSQL 9.4.
+ See https://www.postgresql.org/docs/current/static/datatype-json.html
+
+
+
+
+ Corresponds to the PostgreSQL "jsonpath" type, a field storing JSON path in text format.
+ format.
+
+
+ Supported since PostgreSQL 12.
+ See https://www.postgresql.org/docs/current/datatype-json.html#DATATYPE-JSONPATH
+
+
+
+
+ Corresponds to the PostgreSQL "hstore" type, a dictionary of string key-value pairs.
+
+ See https://www.postgresql.org/docs/current/static/hstore.html
+
+
+
+ Corresponds to the PostgreSQL "refcursor" type.
+
+
+
+
+ Corresponds to the PostgreSQL internal "oidvector" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-oid.html
+
+
+
+ Corresponds to the PostgreSQL internal "int2vector" type.
+
+
+
+
+ Corresponds to the PostgreSQL "oid" type.
+
+ See https://www.postgresql.org/docs/current/static/datatype-oid.html
+
+
+
+ Corresponds to the PostgreSQL "xid" type, an internal transaction identifier.
+
+ See https://www.postgresql.org/docs/current/static/datatype-oid.html
+
+
+
+ Corresponds to the PostgreSQL "xid8" type, an internal transaction identifier.
+
+ See https://www.postgresql.org/docs/current/static/datatype-oid.html
+
+
+
+ Corresponds to the PostgreSQL "cid" type, an internal command identifier.
+
+ See https://www.postgresql.org/docs/current/static/datatype-oid.html
+
+
+
+ Corresponds to the PostgreSQL "regtype" type, a numeric (OID) ID of a type in the pg_type table.
+
+
+
+
+ Corresponds to the PostgreSQL "tid" type, a tuple id identifying the physical location of a row within its table.
+
+
+
+
+ Corresponds to the PostgreSQL "pg_lsn" type, which can be used to store LSN (Log Sequence Number) data which
+ is a pointer to a location in the WAL.
+
+
+ See: https://www.postgresql.org/docs/current/datatype-pg-lsn.html and
+ https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=7d03a83f4d0736ba869fa6f93973f7623a27038a
+
+
+
+
+ A special value that can be used to send parameter values to the database without
+ specifying their type, allowing the database to cast them to another value based on context.
+ The value will be converted to a string and send as text.
+
+
+ This value shouldn't ordinarily be used, and makes sense only when sending a data type
+ unsupported by Npgsql.
+
+
+
+
+ The geometry type for PostgreSQL spatial extension PostGIS.
+
+
+
+
+ The geography (geodetic) type for PostgreSQL spatial extension PostGIS.
+
+
+
+
+ The PostgreSQL ltree type, each value is a label path "a.label.tree.value", forming a tree in a set.
+
+ See https://www.postgresql.org/docs/current/static/ltree.html
+
+
+
+ The PostgreSQL lquery type for PostgreSQL extension ltree
+
+ See https://www.postgresql.org/docs/current/static/ltree.html
+
+
+
+ The PostgreSQL ltxtquery type for PostgreSQL extension ltree
+
+ See https://www.postgresql.org/docs/current/static/ltree.html
+
+
+
+ Corresponds to the PostgreSQL "int4range" type.
+
+
+
+
+ Corresponds to the PostgreSQL "int8range" type.
+
+
+
+
+ Corresponds to the PostgreSQL "numrange" type.
+
+
+
+
+ Corresponds to the PostgreSQL "tsrange" type.
+
+
+
+
+ Corresponds to the PostgreSQL "tstzrange" type.
+
+
+
+
+ Corresponds to the PostgreSQL "daterange" type.
+
+
+
+
+ Corresponds to the PostgreSQL "int4multirange" type.
+
+
+
+
+ Corresponds to the PostgreSQL "int8multirange" type.
+
+
+
+
+ Corresponds to the PostgreSQL "nummultirange" type.
+
+
+
+
+ Corresponds to the PostgreSQL "tsmultirange" type.
+
+
+
+
+ Corresponds to the PostgreSQL "tstzmultirange" type.
+
+
+
+
+ Corresponds to the PostgreSQL "datemultirange" type.
+
+
+
+
+ Corresponds to the PostgreSQL "array" type, a variable-length multidimensional array of
+ another type. This value must be combined with another value from
+ via a bit OR (e.g. NpgsqlDbType.Array | NpgsqlDbType.Integer)
+
+ See https://www.postgresql.org/docs/current/static/arrays.html
+
+
+
+ Corresponds to the PostgreSQL "range" type, continuous range of values of specific type.
+ This value must be combined with another value from
+ via a bit OR (e.g. NpgsqlDbType.Range | NpgsqlDbType.Integer)
+
+
+ Supported since PostgreSQL 9.2.
+ See https://www.postgresql.org/docs/current/static/rangetypes.html
+
+
+
+
+ Corresponds to the PostgreSQL "multirange" type, continuous range of values of specific type.
+ This value must be combined with another value from
+ via a bit OR (e.g. NpgsqlDbType.Multirange | NpgsqlDbType.Integer)
+
+
+ Supported since PostgreSQL 14.
+ See https://www.postgresql.org/docs/current/static/rangetypes.html
+
+
+
+ Can return null when a custom range type is used.
+
+
+ Can return null when a plugin type or custom range type is used.
+
+
+ Should not be used with display names, first normalize it instead.
+
+
+
+ A raw representation of the PostgreSQL interval datatype. Use only when or NodaTime
+ Period do not have sufficient range to handle your values.
+
+
+
+ See https://www.postgresql.org/docs/current/static/datatype-geometric.html.
+
+
+ Do not use this type unless you have to: prefer or NodaTime
+ Period when possible.
+
+
+
+
+
+ Constructs an .
+
+
+
+
+ Months and years, after time for alignment.
+
+
+
+
+ Days, after time for alignment.
+
+
+
+
+ Remaining time unit smaller than a day, in microseconds.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Wraps a PostgreSQL Write-Ahead Log Sequence Number (see: https://www.postgresql.org/docs/current/datatype-pg-lsn.html)
+
+
+ Log Sequence Numbers are a fundamental concept of the PostgreSQL Write-Ahead Log and by that of
+ PostgreSQL replication. See https://www.postgresql.org/docs/current/wal-internals.html for what they represent.
+
+ This struct provides conversions from/to and and beyond that tries to port
+ the methods and operators in https://git.postgresql.org/gitweb/?p=postgresql.git;a=blob;f=src/backend/utils/adt/pg_lsn.c
+ but nothing more.
+
+
+
+
+ Zero is used indicate an invalid Log Sequence Number. No XLOG record can begin at zero.
+
+
+
+
+ Initializes a new instance of .
+
+ The value to wrap.
+
+
+
+ Returns a value indicating whether this instance is equal to a specified
+ instance.
+
+ A instance to compare to this instance.
+ if the current instance is equal to the value parameter;
+ otherwise, .
+
+
+
+ Compares this instance to a specified and returns an indication of their
+ relative values.
+
+ A instance to compare to this instance.
+ A signed number indicating the relative values of this instance and .
+
+
+
+ Returns a value indicating whether this instance is equal to a specified object.
+
+ An object to compare to this instance
+ if the current instance is equal to the value parameter;
+ otherwise, .
+
+
+
+ Returns the hash code for this instance.
+
+ A 32-bit signed integer hash code.
+
+
+
+ Converts the numeric value of this instance to its equivalent string representation.
+
+ The string representation of the value of this instance, consisting of two hexadecimal numbers of
+ up to 8 digits each, separated by a slash
+
+
+
+ Converts the string representation of a Log Sequence Number to a instance.
+
+ A string that represents the Log Sequence Number to convert.
+
+ A equivalent to the Log Sequence Number specified in .
+
+ The parameter is .
+
+ The parameter represents a number less than or greater than
+ .
+
+ The parameter is not in the right format.
+
+
+
+ Converts the span representation of a Log Sequence Number to a instance.
+
+ A span containing the characters that represent the Log Sequence Number to convert.
+
+ A equivalent to the Log Sequence Number specified in .
+
+
+ The parameter represents a number less than or greater than
+ .
+
+ The parameter is not in the right format.
+
+
+
+ Tries to convert the string representation of a Log Sequence Number to an
+ instance. A return value indicates whether the conversion succeeded or failed.
+
+ A string that represents the Log Sequence Number to convert.
+
+ When this method returns, contains a instance equivalent to the Log Sequence
+ Number contained in , if the conversion succeeded, or the default value for
+ (0) if the conversion failed. The conversion fails if the
+ parameter is or , is not in the right format, or represents a number
+ less than or greater than . This parameter is
+ passed uninitialized; any value originally supplied in result will be overwritten.
+
+
+ if c> was converted successfully; otherwise, .
+
+
+
+
+ Tries to convert the span representation of a Log Sequence Number to an
+ instance. A return value indicates whether the conversion succeeded or failed.
+
+ A span containing the characters that represent the Log Sequence Number to convert.
+
+ When this method returns, contains a instance equivalent to the Log Sequence
+ Number contained in , if the conversion succeeded, or the default value for
+ (0) if the conversion failed. The conversion fails if the
+ parameter is empty, is not in the right format, or represents a number less than
+ or greater than . This parameter is passed
+ uninitialized; any value originally supplied in result will be overwritten.
+
+
+ if was converted successfully; otherwise, .
+
+
+
+ Converts the value of a 64-bit unsigned integer to a instance.
+
+ A 64-bit unsigned integer.
+ A new instance of initialized to .
+
+
+
+ Converts the value of a instance to a 64-bit unsigned integer value.
+
+ A instance
+ The contents of as 64-bit unsigned integer.
+
+
+
+ Returns a value that indicates whether two specified instances of are equal.
+
+ The first Log Sequence Number to compare.
+ The second Log Sequence Number to compare.
+
+ if equals ; otherwise, .
+
+
+
+
+ Returns a value that indicates whether two specified instances of are not
+ equal.
+
+ The first Log Sequence Number to compare.
+ The second Log Sequence Number to compare.
+
+ if does not equal ; otherwise,
+ .
+
+
+
+
+ Returns a value indicating whether a specified instance is greater than
+ another specified instance.
+
+ The first value to compare.
+ The second value to compare.
+
+ if is greater than ; otherwise,
+ .
+
+
+
+
+ Returns a value indicating whether a specified instance is less than
+ another specified instance.
+
+ The first value to compare.
+ The second value to compare.
+
+ if is less than ; otherwise,
+ .
+
+
+
+
+ Returns a value indicating whether a specified instance is greater than or
+ equal to another specified instance.
+
+ The first value to compare.
+ The second value to compare.
+
+ if is greater than or equal to ;
+ otherwise, .
+
+
+
+
+ Returns the larger of two values.
+
+ The first value to compare.
+ The second value to compare.
+
+ The larger of the two values.
+
+
+
+
+ Returns the smaller of two values.
+
+ The first value to compare.
+ The second value to compare.
+
+ The smaller of the two values.
+
+
+
+
+ Returns a value indicating whether a specified instance is less than or
+ equal to another specified instance.
+
+ The first value to compare.
+ The second value to compare.
+
+ if is less than or equal to ;
+ otherwise, .
+
+
+
+
+ Subtracts two specified values.
+
+ The first value.
+ The second value.
+ The number of bytes separating those write-ahead log locations.
+
+
+
+ Subtract the number of bytes from a instance, giving a new
+ instance.
+ Handles both positive and negative numbers of bytes.
+
+
+ The instance representing a write-ahead log location.
+
+ The number of bytes to subtract.
+ A new instance.
+
+ The resulting instance would represent a number less than
+ .
+
+
+
+
+ Add the number of bytes to a instance, giving a new
+ instance.
+ Handles both positive and negative numbers of bytes.
+
+
+ The instance representing a write-ahead log location.
+
+ The number of bytes to add.
+ A new instance.
+
+ The resulting instance would represent a number greater than
+ .
+
+
+
+
+ Represents a PostgreSQL range type.
+
+ The element type of the values in the range.
+
+ See: https://www.postgresql.org/docs/current/static/rangetypes.html
+
+
+
+
+ Defined by PostgreSQL to represent an empty range.
+
+
+
+
+ Defined by PostgreSQL to represent an infinite lower bound.
+ Some element types may have specific handling for this value distinct from a missing or null value.
+
+
+
+
+ Defined by PostgreSQL to represent an infinite upper bound.
+ Some element types may have specific handling for this value distinct from a missing or null value.
+
+
+
+
+ Defined by PostgreSQL to represent an null bound.
+ Some element types may have specific handling for this value distinct from an infinite or missing value.
+
+
+
+
+ Defined by PostgreSQL to represent a lower inclusive bound.
+
+
+
+
+ Defined by PostgreSQL to represent a lower exclusive bound.
+
+
+
+
+ Defined by PostgreSQL to represent an upper inclusive bound.
+
+
+
+
+ Defined by PostgreSQL to represent an upper exclusive bound.
+
+
+
+
+ Defined by PostgreSQL to separate the values for the upper and lower bounds.
+
+
+
+
+ The used by to convert bounds into .
+
+
+
+
+ True if implements ; otherwise, false.
+
+
+
+
+ Represents the empty range. This field is read-only.
+
+
+
+
+ The lower bound of the range. Only valid when is false.
+
+
+
+
+ The upper bound of the range. Only valid when is false.
+
+
+
+
+ The characteristics of the boundaries.
+
+
+
+
+ True if the lower bound is part of the range (i.e. inclusive); otherwise, false.
+
+
+
+
+ True if the upper bound is part of the range (i.e. inclusive); otherwise, false.
+
+
+
+
+ True if the lower bound is indefinite (i.e. infinite or unbounded); otherwise, false.
+
+
+
+
+ True if the upper bound is indefinite (i.e. infinite or unbounded); otherwise, false.
+
+
+
+
+ True if the range is empty; otherwise, false.
+
+
+
+
+ Constructs an with inclusive and definite bounds.
+
+ The lower bound of the range.
+ The upper bound of the range.
+
+
+
+ Constructs an with definite bounds.
+
+ The lower bound of the range.
+ True if the lower bound is is part of the range (i.e. inclusive); otherwise, false.
+ The upper bound of the range.
+ True if the upper bound is part of the range (i.e. inclusive); otherwise, false.
+
+
+
+ Constructs an .
+
+ The lower bound of the range.
+ True if the lower bound is is part of the range (i.e. inclusive); otherwise, false.
+ True if the lower bound is indefinite (i.e. infinite or unbounded); otherwise, false.
+ The upper bound of the range.
+ True if the upper bound is part of the range (i.e. inclusive); otherwise, false.
+ True if the upper bound is indefinite (i.e. infinite or unbounded); otherwise, false.
+
+
+
+ Constructs an .
+
+ The lower bound of the range.
+ The upper bound of the range.
+ The characteristics of the range boundaries.
+
+
+
+ Attempts to determine if the range is malformed or implicitly empty.
+
+ The lower bound of the range.
+ The upper bound of the range.
+ The characteristics of the range boundaries.
+
+ True if the range is implicitly empty; otherwise, false.
+
+
+
+
+ Evaluates the boundary flags.
+
+ True if the lower bound is is part of the range (i.e. inclusive); otherwise, false.
+ True if the lower bound is indefinite (i.e. infinite or unbounded); otherwise, false.
+ True if the upper bound is part of the range (i.e. inclusive); otherwise, false.
+ True if the upper bound is indefinite (i.e. infinite or unbounded); otherwise, false.
+
+ The boundary characteristics.
+
+
+
+
+ Indicates whether the on the left is equal to the on the right.
+
+ The on the left.
+ The on the right.
+
+ True if the on the left is equal to the on the right; otherwise, false.
+
+
+
+
+ Indicates whether the on the left is not equal to the on the right.
+
+ The on the left.
+ The on the right.
+
+ True if the on the left is not equal to the on the right; otherwise, false.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Parses the well-known text representation of a PostgreSQL range type into a .
+
+ A PosgreSQL range type in a well-known text format.
+
+ The represented by the .
+
+
+ Malformed range literal.
+
+
+ Malformed range literal. Missing left parenthesis or bracket.
+
+
+ Malformed range literal. Missing right parenthesis or bracket.
+
+
+ Malformed range literal. Missing comma after lower bound.
+
+
+ See: https://www.postgresql.org/docs/current/static/rangetypes.html
+
+
+
+
+ Represents a type converter for .
+
+
+
+
+ Adds a to the closed form .
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Represents characteristics of range type boundaries.
+
+
+ See: https://www.postgresql.org/docs/current/static/rangetypes.html
+
+
+
+
+ The default flag. The range is not empty and has boundaries that are definite and exclusive.
+
+
+
+
+ The range is empty. E.g. '(0,0)', 'empty'.
+
+
+
+
+ The lower bound is inclusive. E.g. '[0,5]', '[0,5)', '[0,)'.
+
+
+
+
+ The upper bound is inclusive. E.g. '[0,5]', '(0,5]', '(,5]'.
+
+
+
+
+ The lower bound is infinite or indefinite. E.g. '(null,5]', '(-infinity,5]', '(,5]'.
+
+
+
+
+ The upper bound is infinite or indefinite. E.g. '[0,null)', '[0,infinity)', '[0,)'.
+
+
+
+
+ Both the lower and upper bounds are inclusive.
+
+
+
+
+ Both the lower and upper bounds are indefinite.
+
+
+
+
+ The lower bound is both inclusive and indefinite. This represents an error condition.
+
+
+
+
+ The upper bound is both inclusive and indefinite. This represents an error condition.
+
+
+
+
+ Represents a PostgreSQL tsquery. This is the base class for the
+ lexeme, not, or, and, and "followed by" nodes.
+
+
+
+
+ Node kind
+
+
+
+
+ NodeKind
+
+
+
+
+ Represents the empty tsquery. Should only be used at top level.
+
+
+
+
+ Lexeme
+
+
+
+
+ Not operator
+
+
+
+
+ And operator
+
+
+
+
+ Or operator
+
+
+
+
+ "Followed by" operator
+
+
+
+
+ Constructs an .
+
+
+
+
+
+ Writes the tsquery in PostgreSQL's text format.
+
+
+
+
+ Writes the tsquery in PostgreSQL's text format.
+
+
+
+
+ Parses a tsquery in PostgreSQL's text format.
+
+
+
+
+
+
+
+
+
+
+
+
+ Returns a value indicating whether this instance and a specified object represent the same value.
+
+ An object to compare to this instance.
+ if g is equal to this instance; otherwise, .
+
+
+
+ Indicates whether the values of two specified objects are equal.
+
+ The first object to compare.
+ The second object to compare.
+ if and are equal; otherwise, .
+
+
+
+ Indicates whether the values of two specified objects are not equal.
+
+ The first object to compare.
+ The second object to compare.
+ if and are not equal; otherwise, .
+
+
+
+ TsQuery Lexeme node.
+
+
+
+
+ Lexeme text.
+
+
+
+
+ Weights is a bitmask of the Weight enum.
+
+
+
+
+ Prefix search.
+
+
+
+
+ Creates a tsquery lexeme with only lexeme text.
+
+ Lexeme text.
+
+
+
+ Creates a tsquery lexeme with lexeme text and weights.
+
+ Lexeme text.
+ Bitmask of enum Weight.
+
+
+
+ Creates a tsquery lexeme with lexeme text, weights and prefix search flag.
+
+ Lexeme text.
+ Bitmask of enum Weight.
+ Is prefix search?
+
+
+
+ Weight enum, can be OR'ed together.
+
+
+
+
+ None
+
+
+
+
+ D
+
+
+
+
+ C
+
+
+
+
+ B
+
+
+
+
+ A
+
+
+
+
+
+
+
+
+
+
+ TsQuery Not node.
+
+
+
+
+ Child node
+
+
+
+
+ Creates a not operator, with a given child node.
+
+
+
+
+
+
+
+
+
+
+
+ Base class for TsQuery binary operators (& and |).
+
+
+
+
+ Left child
+
+
+
+
+ Right child
+
+
+
+
+ Constructs a .
+
+
+
+
+ TsQuery And node.
+
+
+
+
+ Creates an and operator, with two given child nodes.
+
+
+
+
+
+
+
+
+
+
+
+
+ TsQuery Or Node.
+
+
+
+
+ Creates an or operator, with two given child nodes.
+
+
+
+
+
+
+
+
+
+
+
+
+ TsQuery "Followed by" Node.
+
+
+
+
+ The distance between the 2 nodes, in lexemes.
+
+
+
+
+ Creates a "followed by" operator, specifying 2 child nodes and the
+ distance between them in lexemes.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Represents an empty tsquery. Shold only be used as top node.
+
+
+
+
+ Creates a tsquery that represents an empty query. Should not be used as child node.
+
+
+
+
+
+
+
+
+
+
+ Represents a PostgreSQL tsvector.
+
+
+
+
+ Parses a tsvector in PostgreSQL's text format.
+
+
+
+
+
+
+ Returns the lexeme at a specific index
+
+
+
+
+
+
+ Gets the number of lexemes.
+
+
+
+
+ Returns an enumerator.
+
+
+
+
+
+ Returns an enumerator.
+
+
+
+
+
+ Gets a string representation in PostgreSQL's format.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Represents a lexeme. A lexeme consists of a text string and optional word entry positions.
+
+
+
+
+ Gets or sets the text.
+
+
+
+
+ Creates a lexeme with no word entry positions.
+
+
+
+
+
+ Creates a lexeme with word entry positions.
+
+
+
+
+
+
+ Gets a word entry position.
+
+
+
+
+
+
+ Gets the number of word entry positions.
+
+
+
+
+ Creates a string representation in PostgreSQL's format.
+
+
+
+
+
+ Represents a word entry position and an optional weight.
+
+
+
+
+ Creates a WordEntryPos with a given position and weight.
+
+ Position values can range from 1 to 16383; larger numbers are silently set to 16383.
+ A weight labeled between A and D.
+
+
+
+ The weight is labeled from A to D. D is the default, and not printed.
+
+
+
+
+ The position is a 14-bit unsigned integer indicating the position in the text this lexeme occurs. Cannot be 0.
+
+
+
+
+ Prints this lexeme in PostgreSQL's format, i.e. position is followed by weight (weight is only printed if A, B or C).
+
+
+
+
+
+ Determines whether the specified object is equal to the current object.
+
+
+
+
+ Determines whether the specified object is equal to the current object.
+
+
+
+
+ Gets a hash code for the current object.
+
+
+
+
+ Determines whether the specified object is equal to the current object.
+
+
+
+
+ Determines whether the specified object is unequal to the current object.
+
+
+
+
+ The weight is labeled from A to D. D is the default, and not printed.
+
+
+
+
+ D, the default
+
+
+
+
+ C
+
+
+
+
+ B
+
+
+
+
+ A
+
+
+
+
+ Determines whether the specified object is equal to the current object.
+
+
+
+
+ Determines whether the specified object is equal to the current object.
+
+
+
+
+ Gets a hash code for the current object.
+
+
+
+
+ Determines whether the specified object is equal to the current object.
+
+
+
+
+ Determines whether the specified object is unequal to the current object.
+
+
+
+
+ Represents a PostgreSQL point type.
+
+
+ See https://www.postgresql.org/docs/current/static/datatype-geometric.html
+
+
+
+
+ Represents a PostgreSQL line type.
+
+
+ See https://www.postgresql.org/docs/current/static/datatype-geometric.html
+
+
+
+
+ Represents a PostgreSQL Line Segment type.
+
+
+
+
+ Represents a PostgreSQL box type.
+
+
+ See https://www.postgresql.org/docs/current/static/datatype-geometric.html
+
+
+
+
+ Represents a PostgreSQL Path type.
+
+
+
+
+ Represents a PostgreSQL Polygon type.
+
+
+
+
+ Represents a PostgreSQL Circle type.
+
+
+
+
+ Represents a PostgreSQL inet type, which is a combination of an IPAddress and a subnet mask.
+
+
+ https://www.postgresql.org/docs/current/static/datatype-net-types.html
+
+
+
+
+ Represents a PostgreSQL cidr type.
+
+
+ https://www.postgresql.org/docs/current/static/datatype-net-types.html
+
+
+
+
+ Represents a PostgreSQL tid value
+
+
+ https://www.postgresql.org/docs/current/static/datatype-oid.html
+
+
+
+
+ Block number
+
+
+
+
+ Tuple index within block
+
+
+
+
+ Indicates that this property or field corresponds to a PostgreSQL field with the specified name
+
+
+
+
+ The name of PostgreSQL field that corresponds to this CLR property or field
+
+
+
+
+ Indicates that this property or field corresponds to a PostgreSQL field with the specified name
+
+ The name of PostgreSQL field that corresponds to this CLR property or field
+
+
+ This API supports the logging infrastructure and is not intended to be used directly from your code. It is subject to change in the future.
+
+
+
diff --git a/SalesPacking_MES_API_Project/bin/Debug/PackingCount/2025_06.csv b/SalesPacking_MES_API_Project/bin/Debug/PackingCount/2025_06.csv
new file mode 100644
index 0000000..50fb0e9
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/PackingCount/2025_06.csv
@@ -0,0 +1,4 @@
+TestDate,Packing_Count,PRO_SET,LUX_SET,PRO_FACE,LUX_FACE,PRO_EYE,LUX_EYE,PRO_BODY,LUX_BODY,MAXIMUM,ALPHA_SET,ALPHA_FACE,ALPHA_EYE,ALPHA_BODY,ALTO,Effect,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,케이블,토너,가죽케이스(PRO_Black),가죽케이스(PRO_Beige),가죽케이스(PRO_Red),가죽케이스(PRO_Pink),가죽케이스(MAX_Black),가죽케이스(MAX_Apr),가죽케이스(MAX_Mint),가죽케이스(MAX_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(MAX_Purple),가죽케이스(PRO_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,나이트샷,모닝샷,우디,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+2025-06-26,12,0,0,0,0,0,0,0,0,9,2,0,0,0,3,1,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,1,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,7,0,0,0,6,3,0,0,0,0,0,0
+2025-06-27,23,0,0,0,0,0,0,0,0,8,0,0,0,0,0,7,1,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,1,2,9,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,1,0,0,12,13,4,0,0,0,0,0,0,7,13,0,0,2,2,3,0,0,2,0,0,0
+2025-06-30,77,0,0,3,0,0,0,1,0,1,2,0,0,0,4,5,2,0,0,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,4,4,20,10,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,31,31,1,0,1,0,0,0,0,1,42,0,0,0,19,18,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/PackingCount/2025_07.csv b/SalesPacking_MES_API_Project/bin/Debug/PackingCount/2025_07.csv
new file mode 100644
index 0000000..87f5176
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/PackingCount/2025_07.csv
@@ -0,0 +1,24 @@
+TestDate,Packing_Count,PRO_SET,LUX_SET,PRO_FACE,LUX_FACE,PRO_EYE,LUX_EYE,PRO_BODY,LUX_BODY,MAXIMUM,ALPHA_SET,ALPHA_FACE,ALPHA_EYE,ALPHA_BODY,ALTO,Effect,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,케이블,토너,가죽케이스(PRO_Black),가죽케이스(PRO_Beige),가죽케이스(PRO_Red),가죽케이스(PRO_Pink),가죽케이스(MAX_Black),가죽케이스(MAX_Apr),가죽케이스(MAX_Mint),가죽케이스(MAX_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(MAX_Purple),가죽케이스(PRO_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,나이트샷,모닝샷,우디,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+2025-07-01,26,0,0,0,0,0,0,0,0,1,1,0,0,0,3,3,2,0,0,136,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,2,3,13,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,9,11,2,0,0,0,0,0,0,2,19,0,0,0,2,0,0,0,0,0,0,0
+2025-07-02,16,0,0,0,0,0,0,0,0,1,0,0,0,0,3,3,0,11,0,38,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,10,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0
+2025-07-03,8,1,0,2,0,1,0,1,0,12,1,1,1,1,12,12,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,5,0,0,0,1,0,0,0
+2025-07-04,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0
+2025-07-07,79,0,0,0,0,0,0,0,0,0,8,0,0,0,14,2,15,0,0,303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,8,7,24,8,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0,0,27,27,8,0,0,0,0,0,0,0,47,0,0,2,20,13,0,0,2,0,0,0
+2025-07-08,10,1,0,0,0,0,0,0,0,0,0,0,0,0,1,6,3,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,5,0,0,0,0,1,0,0,8,8,2,0,0,0,1,1,1,0,8,0,0,0,2,2,0,0,0,0,0,0
+2025-07-09,7,0,0,0,0,0,0,0,0,21,0,0,0,0,2,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+2025-07-10,6,0,0,2,0,0,0,0,0,0,0,1,0,0,1,2,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,2,3,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,2,0,0,1
+2025-07-11,26,2,0,2,1,0,0,0,0,0,0,0,0,0,33,12,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,4,0,1,6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,2,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,7,0,0,0,4,4,0,0,0,0,0,0,0,0
+2025-07-14,48,0,0,1,0,0,0,1,0,16,0,0,0,0,7,12,9,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,2,5,13,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,11,0,0,0,0,3,0,0,32,44,5,0,0,0,0,0,0,6,21,0,0,6,12,12,0,0,1,0,0,0,0,0
+2025-07-15,58,0,0,2,0,0,0,0,0,0,0,0,0,0,7,11,16,0,0,49,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,13,12,2,0,6,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,1,0,0,0,0,8,0,0,2,2,5,11,0,0,1,1,1,5,19,1,9,0,20,20,0,0,0,0,0,0,0,0
+2025-07-16,24,1,0,4,0,0,0,0,0,1,1,0,0,1,1,4,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,4,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,1,1,0,0,0,2,0,0,3,3,0,2,0,0,0,0,0,2,7,0,0,0,7,7,0,0,0,0,0,0,0,0
+2025-07-17,11,0,0,1,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0
+2025-07-18,28,0,0,0,0,0,0,0,0,4,0,0,0,0,0,11,23,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,1,0,3,9,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,1,0,0,0,0,2,0,0,7,24,1,0,0,0,2,1,1,0,5,0,0,0,11,8,0,0,0,0,0,0,0,0
+2025-07-21,44,1,0,1,0,0,0,0,0,4,2,0,0,0,3,7,9,2,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,8,1,4,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,5,0,0,0,0,2,0,0,13,14,2,0,0,0,0,0,0,11,20,0,0,0,14,12,0,0,0,0,0,0,0,0
+2025-07-22,25,0,0,2,0,0,0,0,0,30,3,0,0,0,1,4,23,20,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,38,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,5,10,0,10,0,22,3,0,0,0,0,0,0,0,5
+2025-07-23,16,0,3,0,0,0,0,0,0,2,1,0,0,1,4,4,7,0,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,5,5,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,1,0,0,0,0,1,0,0,10,4,0,0,0,0,0,0,0,4,14,0,0,0,2,2,0,0,1,0,0,0,0,0
+2025-07-24,22,0,2,1,0,0,0,0,0,11,2,0,0,0,4,24,39,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,20,0,0,0,0,4,0,0,0,2,3,0,0,0,0,0,0,2,64,0,0,0,6,6,0,0,2,0,50,100,0,4
+2025-07-25,24,0,0,0,0,0,0,0,0,16,0,0,0,0,1,5,5,2,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,3,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,8,0,0,0,13,12,0,0,0,0,0,0,0,0
+2025-07-28,68,0,0,0,0,0,0,0,0,16,0,0,0,0,4,3,15,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,3,0,5,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,9,0,0,0,0,3,0,0,2,2,1,0,0,0,0,0,0,1,16,0,0,0,43,41,0,0,10,0,0,0,0,0
+2025-07-29,25,0,0,0,0,0,0,0,0,31,0,0,0,1,2,47,9,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,0,4,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,2,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,1,0,0,0,0,0,0,0,0,0
+2025-07-30,16,1,0,1,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0
+2025-07-31,32,0,0,0,1,0,0,0,0,3,0,0,0,0,4,7,2,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,4,2,5,4,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,2,0,0,0,0,5,0,0,48,60,0,0,16,20,0,0,0,1,38,0,0,16,14,3,0,0,0,0,0,0,0,7
diff --git a/SalesPacking_MES_API_Project/bin/Debug/PackingCount/2025_08.csv b/SalesPacking_MES_API_Project/bin/Debug/PackingCount/2025_08.csv
new file mode 100644
index 0000000..58dcfb9
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/PackingCount/2025_08.csv
@@ -0,0 +1,4 @@
+TestDate,Packing_Count,PRO_SET,LUX_SET,PRO_FACE,LUX_FACE,PRO_EYE,LUX_EYE,PRO_BODY,LUX_BODY,MAXIMUM,ALPHA_SET,ALPHA_FACE,ALPHA_EYE,ALPHA_BODY,ALTO,Effect,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,케이블,토너,가죽케이스(PRO_Black),가죽케이스(PRO_Beige),가죽케이스(PRO_Red),가죽케이스(PRO_Pink),가죽케이스(MAX_Black),가죽케이스(MAX_Apr),가죽케이스(MAX_Mint),가죽케이스(MAX_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(MAX_Purple),가죽케이스(PRO_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,나이트샷,모닝샷,우디,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소
+2025-08-01,29,0,0,0,0,0,0,0,0,3,0,0,0,0,4,6,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,3,0,5,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,4,0,1,0,0,3,0,0,65,55,1,0,1,1,0,0,0,4,66,0,0,0,10,2,0,0,0,0,0,0,0,7
+2025-08-04,64,1,0,3,0,0,0,0,0,4,1,0,0,0,6,19,0,0,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,13,5,2,1,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,14,0,1,0,0,10,0,0,9,12,2,0,0,0,0,0,0,1,30,1,1,0,8,8,0,0,0,0,0,0,0,0
+2025-08-05,24,0,0,0,0,0,0,0,0,1,3,0,0,0,2,7,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,1,0,2,0,0,1,0,0,10,12,0,0,0,0,0,0,0,0,12,0,0,0,6,6,0,0,0,0,0,0,0,0
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Renci.SshNet.dll b/SalesPacking_MES_API_Project/bin/Debug/Renci.SshNet.dll
new file mode 100644
index 0000000..4e2d603
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/Renci.SshNet.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Renci.SshNet.xml b/SalesPacking_MES_API_Project/bin/Debug/Renci.SshNet.xml
new file mode 100644
index 0000000..244078a
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/Renci.SshNet.xml
@@ -0,0 +1,19415 @@
+
+
+
+ Renci.SshNet
+
+
+
+
+ Generates a array of the specified length, and fills it with a
+ cryptographically strong random sequence of values.
+
+ The length of the array generate.
+
+
+
+ Fills an array of bytes with a cryptographically strong random sequence of values.
+
+ The array to fill with cryptographically strong random bytes.
+ is null.
+
+ The length of the byte array determines how many random bytes are produced.
+
+
+
+
+ Returns the Internet Protocol (IP) addresses for the specified host.
+
+ The host name or IP address to resolve
+
+ An array of type that holds the IP addresses for the host that
+ is specified by the parameter.
+
+ is null.
+ An error is encountered when resolving .
+
+
+
+ Returns an enumerable collection of file information that matches a search pattern.
+
+
+ The search string to match against the names of files.
+
+ An enumerable collection of files that matches .
+
+ is null.
+ is null.
+ The path represented by does not exist or is not valid.
+
+
+
+ Returns a value indicating whether the specified can be used
+ to send data.
+
+ The to check.
+
+ true if can be written to; otherwise, false.
+
+
+
+
+ Reads a byte from the specified .
+
+ The to read from.
+ Specifies the amount of time after which the call will time out.
+
+ The byte read, or -1 if the socket was closed.
+
+ The read operation timed out.
+ The read failed.
+
+
+
+ Sends a byte using the specified .
+
+ The to write to.
+ The value to send.
+ The write failed.
+
+
+
+ Receives data from a bound into a receive buffer.
+
+
+ An array of type that is the storage location for the received data.
+ The position in parameter to store the received data.
+ The number of bytes to receive.
+ Specifies the amount of time after which the call will time out.
+
+ The number of bytes received.
+
+
+ If no data is available for reading, the method will
+ block until data is available or the time-out value was exceeded. If the time-out value was exceeded, the
+ call will throw a .
+ If you are in non-blocking mode, and there is no data available in the in the protocol stack buffer, the
+ method will complete immediately and throw a .
+
+
+
+
+ Suspends the current thread for the specified number of milliseconds.
+
+ The number of milliseconds for which the thread is suspended.
+
+
+
+ Executes the specified action in a separate thread.
+
+ The action to execute.
+
+
+
+ Base class for all supported authentication methods
+
+
+
+
+ Gets the name of the authentication method.
+
+
+ The name of the authentication method.
+
+
+
+
+ Gets connection username.
+
+
+
+
+ Gets list of allowed authentications.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The username.
+ is whitespace or null.
+
+
+
+ Authenticates the specified session.
+
+ The session to authenticate.
+
+ The result of the authentication process.
+
+
+
+
+ Authenticates the specified session.
+
+ The session to authenticate.
+
+ The result of the authentication process.
+
+
+
+
+ Represents possible authentication methods results
+
+
+
+
+ Authentication was successful.
+
+
+
+
+ Authentication completed with partial success.
+
+
+
+
+ Authentication failed.
+
+
+
+
+ Serves as base class for client implementations, provides common client functionality.
+
+
+
+
+ Holds value indicating whether the connection info is owned by this client.
+
+
+
+
+ Gets the current session.
+
+
+ The current session.
+
+
+
+
+ Gets the factory for creating new services.
+
+
+ The factory for creating new services.
+
+
+
+
+ Gets the connection info.
+
+
+ The connection info.
+
+ The method was called after the client was disposed.
+
+
+
+ Gets a value indicating whether this client is connected to the server.
+
+
+ true if this client is connected; otherwise, false.
+
+ The method was called after the client was disposed.
+
+
+
+ Gets or sets the keep-alive interval.
+
+
+ The keep-alive interval. Specify negative one (-1) milliseconds to disable the
+ keep-alive. This is the default value.
+
+ The method was called after the client was disposed.
+
+
+
+ Occurs when an error occurred.
+
+
+
+
+
+
+
+ Occurs when host key received.
+
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+ The connection info.
+ Specified whether this instance owns the connection info.
+ is null.
+
+ If is true, then the
+ connection info will be disposed when this instance is disposed.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The connection info.
+ Specified whether this instance owns the connection info.
+ The factory to use for creating new services.
+ is null.
+ is null.
+
+ If is true, then the
+ connection info will be disposed when this instance is disposed.
+
+
+
+
+ Connects client to the server.
+
+ The client is already connected.
+ The method was called after the client was disposed.
+ Socket connection to the SSH server or proxy server could not be established, or an error occurred while resolving the hostname.
+ SSH session could not be established.
+ Authentication of SSH session failed.
+ Failed to establish proxy connection.
+
+
+
+ Disconnects client from the server.
+
+ The method was called after the client was disposed.
+
+
+
+ Sends a keep-alive message to the server.
+
+
+ Use to configure the client to send a keep-alive at regular
+ intervals.
+
+ The method was called after the client was disposed.
+
+
+
+ Called when client is connecting to the server.
+
+
+
+
+ Called when client is connected to the server.
+
+
+
+
+ Called when client is disconnecting from the server.
+
+
+
+
+ Called when client is disconnected from the server.
+
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Check if the current instance is disposed.
+
+ THe current instance is disposed.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Stops the keep-alive timer, and waits until all timer callbacks have been
+ executed.
+
+
+
+
+ Starts the keep-alive timer.
+
+
+ When is negative one (-1) milliseconds, then
+ the timer will not be started.
+
+
+
+
+ Represents SSH channel.
+
+
+
+
+ Occurs when is received.
+
+
+
+
+ Occurs when an exception is thrown when processing channel messages.
+
+
+
+
+ Occurs when is received.
+
+
+
+
+ Occurs when is received.
+
+
+
+
+ Occurs when is received.
+
+
+
+
+ Gets the local channel number.
+
+
+ The local channel number.
+
+
+
+
+ Gets the maximum size of a data packet that we can receive using the channel.
+
+
+ The maximum size of a packet.
+
+
+
+ This is the maximum size (in bytes) we support for the data (payload) of a
+ SSH_MSG_CHANNEL_DATA message we receive.
+
+
+ We currently do not enforce this limit.
+
+
+
+
+
+ Gets the maximum size of a data packet that can be sent using the channel.
+
+
+ The maximum size of data that can be sent using a
+ on the current channel.
+
+ The channel has not been opened, or the open has not yet been confirmed.
+
+
+
+ Gets a value indicating whether this channel is open.
+
+
+ true if this channel is open; otherwise, false.
+
+
+
+
+ Sends a SSH_MSG_CHANNEL_DATA message with the specified payload.
+
+ The payload to send.
+
+
+
+ Sends a SSH_MSG_CHANNEL_DATA message with the specified payload.
+
+ An array of containing the payload to send.
+ The zero-based offset in at which to begin taking data from.
+ The number of bytes of to send.
+
+
+ When the size of the data to send exceeds the maximum packet size or the remote window
+ size does not allow the full data to be sent, then this method will send the data in
+ multiple chunks and will wait for the remote window size to be adjusted when it's zero.
+
+
+ This is done to support SSH servers will a small window size that do not agressively
+ increase their window size. We need to take into account that there may be SSH servers
+ that only increase their window size when it has reached zero.
+
+
+
+
+
+ Sends a SSH_MSG_CHANNEL_EOF message to the remote server.
+
+ The channel is closed.
+
+
+
+ A "direct-tcpip" SSH channel.
+
+
+
+
+ Occurs when an exception is thrown while processing channel messages.
+
+
+
+
+ Gets a value indicating whether this channel is open.
+
+
+ true if this channel is open; otherwise, false.
+
+
+
+
+ Gets the local channel number.
+
+
+ The local channel number.
+
+
+
+
+ Opens a channel for a locally forwarded TCP/IP port.
+
+ The name of the remote host to forward to.
+ The port of the remote hosts to forward to.
+ The forwarded port for which the channel is opened.
+ The socket to receive requests from, and send responses from the remote host to.
+
+
+
+ Binds the channel to the remote host.
+
+
+
+
+ A "forwarded-tcpip" SSH channel.
+
+
+
+
+ Occurs when an exception is thrown while processing channel messages.
+
+
+
+
+ Binds the channel to the specified endpoint.
+
+ The endpoint to connect to.
+ The forwarded port for which the channel is opened.
+
+
+
+ Session SSH channel.
+
+
+
+
+ Opens the channel.
+
+
+
+
+ Sends the pseudo terminal request.
+
+ The environment variable.
+ The columns.
+ The rows.
+ The width.
+ The height.
+ The terminal mode values.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the X11 forwarding request.
+
+ if set to true the it is single connection.
+ The protocol.
+ The cookie.
+ The screen number.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the environment variable request.
+
+ Name of the variable.
+ The variable value.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the shell request.
+
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the exec request.
+
+ The command.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the exec request.
+
+ Length of the break.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the subsystem request.
+
+ The subsystem.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the window change request.
+
+ The columns.
+ The rows.
+ The width.
+ The height.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the local flow request.
+
+ if set to true [client can do].
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the signal request.
+
+ Name of the signal.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the exit status request.
+
+ The exit status.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the exit signal request.
+
+ Name of the signal.
+ if set to true [core dumped].
+ The error message.
+ The language.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends eow@openssh.com request.
+
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends keepalive@openssh.com request.
+
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Represents base class for SSH channel implementations.
+
+
+
+
+ Holds a value indicating whether the SSH_MSG_CHANNEL_CLOSE has been sent to the remote party.
+
+
+ true when a SSH_MSG_CHANNEL_CLOSE message has been sent to the other party;
+ otherwise, false.
+
+
+
+
+ Holds a value indicating whether a SSH_MSG_CHANNEL_CLOSE has been received from the other
+ party.
+
+
+ true when a SSH_MSG_CHANNEL_CLOSE message has been received from the other party;
+ otherwise, false.
+
+
+
+
+ Holds a value indicating whether the SSH_MSG_CHANNEL_EOF has been received from the other party.
+
+
+ true when a SSH_MSG_CHANNEL_EOF message has been received from the other party;
+ otherwise, false.
+
+
+
+
+ Holds a value indicating whether the SSH_MSG_CHANNEL_EOF has been sent to the remote party.
+
+
+ true when a SSH_MSG_CHANNEL_EOF message has been sent to the remote party;
+ otherwise, false.
+
+
+
+
+ Occurs when an exception is thrown when processing channel messages.
+
+
+
+
+ Initializes a new instance.
+
+ The session.
+ The local channel number.
+ Size of the window.
+ Size of the packet.
+
+
+
+ Gets the session.
+
+
+ Thhe session.
+
+
+
+
+ Gets the type of the channel.
+
+
+ The type of the channel.
+
+
+
+
+ Gets the local channel number.
+
+
+ The local channel number.
+
+
+
+
+ Gets the maximum size of a data packet that we can receive using the channel.
+
+
+ The maximum size of a packet.
+
+
+
+ This is the maximum size (in bytes) we support for the data (payload) of a
+ SSH_MSG_CHANNEL_DATA message we receive.
+
+
+ We currently do not enforce this limit.
+
+
+
+
+
+ Gets the size of the local window.
+
+
+ The size of the local window.
+
+
+
+
+ Gets the remote channel number.
+
+
+ The remote channel number.
+
+
+
+
+ Gets the maximum size of a data packet that we can send using the channel.
+
+
+ The maximum size of data that can be sent using a
+ on the current channel.
+
+ The channel has not been opened, or the open has not yet been confirmed.
+
+
+
+ Gets the window size of the remote server.
+
+
+ The size of the server window.
+
+
+
+
+ Gets a value indicating whether this channel is open.
+
+
+ true if this channel is open; otherwise, false.
+
+
+
+
+ Occurs when is received.
+
+
+
+
+ Occurs when is received.
+
+
+
+
+ Occurs when is received.
+
+
+
+
+ Occurs when is received.
+
+
+
+
+ Occurs when is received.
+
+
+
+
+ Occurs when is received.
+
+
+
+
+ Occurs when is received.
+
+
+
+
+ Gets a value indicating whether the session is connected.
+
+
+ true if the session is connected; otherwise, false.
+
+
+
+
+ Gets the connection info.
+
+ The connection info.
+
+
+
+ Gets the session semaphore to control number of session channels.
+
+ The session semaphore.
+
+
+
+ Sends a SSH_MSG_CHANNEL_DATA message with the specified payload.
+
+ The payload to send.
+
+
+
+ Sends a SSH_MSG_CHANNEL_DATA message with the specified payload.
+
+ An array of containing the payload to send.
+ The zero-based offset in at which to begin taking data from.
+ The number of bytes of to send.
+
+
+ When the size of the data to send exceeds the maximum packet size or the remote window
+ size does not allow the full data to be sent, then this method will send the data in
+ multiple chunks and will wait for the remote window size to be adjusted when it's zero.
+
+
+ This is done to support SSH servers will a small window size that do not agressively
+ increase their window size. We need to take into account that there may be SSH servers
+ that only increase their window size when it has reached zero.
+
+
+
+
+
+ Called when channel window need to be adjust.
+
+ The bytes to add.
+
+
+
+ Called when channel data is received.
+
+ The data.
+
+
+
+ Called when channel extended data is received.
+
+ The data.
+ The data type code.
+
+
+
+ Called when channel has no more data to receive.
+
+
+
+
+ Called when channel is closed by the server.
+
+
+
+
+ Called when channel request received.
+
+ Channel request information.
+
+
+
+ Called when channel request was successful
+
+
+
+
+ Called when channel request failed.
+
+
+
+
+ Raises event.
+
+ The exception.
+
+
+
+ Sends a message to the server.
+
+ The message to send.
+
+ true if the message was sent to the server; otherwise, false.
+
+ The size of the packet exceeds the maximum size defined by the protocol.
+
+ This methods returns false when the attempt to send the message results in a
+ or a .
+
+
+
+
+ Sends SSH message to the server.
+
+ The message.
+
+
+
+ Sends a SSH_MSG_CHANNEL_EOF message to the remote server.
+
+ The channel is closed.
+
+
+
+ Waits for the handle to be signaled or for an error to occurs.
+
+ The wait handle.
+
+
+
+ Closes the channel, waiting for the SSH_MSG_CHANNEL_CLOSE message to be received from the server.
+
+
+
+
+ Called when an occurs while processing a channel message.
+
+ The .
+
+ This method will in turn invoke , and
+ raise the event.
+
+
+
+
+ Determines the length of data that currently can be sent in a single message.
+
+ The length of the message that must be sent.
+
+ The actual data length that currently can be sent.
+
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Implements "direct-tcpip" SSH channel.
+
+
+
+
+ Initializes a new instance.
+
+ The session.
+ The local channel number.
+ Size of the window.
+ Size of the packet.
+
+
+
+ Gets the type of the channel.
+
+
+ The type of the channel.
+
+
+
+
+ Occurs as the forwarded port is being stopped.
+
+
+
+
+ Binds channel to remote host.
+
+
+
+
+ Closes the socket, hereby interrupting the blocking receive in .
+
+
+
+
+ Shuts down the socket.
+
+ One of the values that specifies the operation that will no longer be allowed.
+
+
+
+ Closes the channel, waiting for the SSH_MSG_CHANNEL_CLOSE message to be received from the server.
+
+
+
+
+ Called when channel data is received.
+
+ The data.
+
+
+
+ Called when channel is opened by the server.
+
+ The remote channel number.
+ Initial size of the window.
+ Maximum size of the packet.
+
+
+
+ Called when channel has no more data to receive.
+
+
+
+
+ Called whenever an unhandled occurs in causing
+ the message loop to be interrupted, or when an exception occurred processing a channel message.
+
+
+
+
+ Called when the server wants to terminate the connection immmediately.
+
+
+ The sender MUST NOT send or receive any data after this message, and
+ the recipient MUST NOT accept any data after receiving this message.
+
+
+
+
+ Implements "forwarded-tcpip" SSH channel.
+
+
+
+
+ Initializes a new instance.
+
+ The session.
+ The local channel number.
+ Size of the window.
+ Size of the packet.
+ The remote channel number.
+ The window size of the remote party.
+ The maximum size of a data packet that we can send to the remote party.
+
+
+
+ Gets the type of the channel.
+
+
+ The type of the channel.
+
+
+
+
+ Binds the channel to the specified endpoint.
+
+ The endpoint to connect to.
+ The forwarded port for which the channel is opened.
+
+
+
+ Occurs as the forwarded port is being stopped.
+
+
+
+
+ Shuts down the socket.
+
+ One of the values that specifies the operation that will no longer be allowed.
+
+
+
+ Closes the socket, hereby interrupting the blocking receive in .
+
+
+
+
+ Closes the channel waiting for the SSH_MSG_CHANNEL_CLOSE message to be received from the server.
+
+
+
+
+ Called when channel data is received.
+
+ The data.
+
+
+
+ Implements Session SSH channel.
+
+
+
+
+ Counts failed channel open attempts
+
+
+
+
+ Holds a value indicating whether the session semaphore has been obtained by the current
+ channel.
+
+
+ 0 when the session semaphore has not been obtained or has already been released,
+ and 1 when the session has been obtained and still needs to be released.
+
+
+
+
+ Wait handle to signal when response was received to open the channel
+
+
+
+
+ Initializes a new instance.
+
+ The session.
+ The local channel number.
+ Size of the window.
+ Size of the packet.
+
+
+
+ Gets the type of the channel.
+
+
+ The type of the channel.
+
+
+
+
+ Opens the channel.
+
+
+
+
+ Called when channel is opened by the server.
+
+ The remote channel number.
+ Initial size of the window.
+ Maximum size of the packet.
+
+
+
+ Called when channel failed to open.
+
+ The reason code.
+ The description.
+ The language.
+
+
+
+ Sends the pseudo terminal request.
+
+ The environment variable.
+ The columns.
+ The rows.
+ The width.
+ The height.
+ The terminal mode values.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the X11 forwarding request.
+
+ if set to true the it is single connection.
+ The protocol.
+ The cookie.
+ The screen number.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the environment variable request.
+
+ Name of the variable.
+ The variable value.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the shell request.
+
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the exec request.
+
+ The command.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the exec request.
+
+ Length of the break.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the subsystem request.
+
+ The subsystem.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the window change request.
+
+ The columns.
+ The rows.
+ The width.
+ The height.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the local flow request.
+
+ if set to true [client can do].
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the signal request.
+
+ Name of the signal.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the exit status request.
+
+ The exit status.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends the exit signal request.
+
+ Name of the signal.
+ if set to true [core dumped].
+ The error message.
+ The language.
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends eow@openssh.com request.
+
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Sends keepalive@openssh.com request.
+
+
+ true if request was successful; otherwise false.
+
+
+
+
+ Called when channel request was successful
+
+
+
+
+ Called when channel request failed.
+
+
+
+
+ Sends the channel open message.
+
+ The client is not connected.
+ The operation timed out.
+ The size of the packet exceeds the maximum size defined by the protocol.
+
+
+ When a session semaphore for this instance has not yet been obtained by this or any other thread,
+ the thread will block until such a semaphore is available and send a
+ to the remote host.
+
+
+ Note that the session semaphore is released in any of the following cases:
+
+ -
+ A is received for the channel being opened.
+
+ -
+ The remote host does not respond to the within the configured .
+
+ -
+ The remote host closes the channel.
+
+ -
+ The is disposed.
+
+ -
+ A socket error occurs sending a message to the remote host.
+
+
+
+
+ If the session semaphore was already obtained for this instance (and not released), then this method
+ immediately returns control to the caller. This should only happen when another thread has obtain the
+ session semaphore and already sent the , but the remote host did not
+ confirmed or rejected attempt to open the channel.
+
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases the session semaphore.
+
+
+ When the session semaphore has already been released, or was never obtained by
+ this instance, then this method does nothing.
+
+
+
+
+ Lists channel types as defined by the protocol.
+
+
+
+
+ session
+
+
+
+
+ x11
+
+
+
+
+ forwarded-tcpip
+
+
+
+
+ direct-tcpip
+
+
+
+
+ Initializes a new instance.
+
+ The session.
+ The local channel number.
+ Size of the window.
+ Size of the packet.
+
+
+
+ Occurs when is received.
+
+
+
+
+ Occurs when is received.
+
+
+
+
+ Called when channel is opened by the server.
+
+ The remote channel number.
+ Initial size of the window.
+ Maximum size of the packet.
+
+
+
+ Send message to open a channel.
+
+ Message to send
+ The client is not connected.
+ The operation timed out.
+ The size of the packet exceeds the maximum size defined by the protocol.
+
+
+
+ Called when channel failed to open.
+
+ The reason code.
+ The description.
+ The language.
+
+
+
+ Unsubscribes the current from session events.
+
+ The session.
+
+ Does nothing when is null.
+
+
+
+
+ Initializes a new instance.
+
+ The session.
+ The local channel number.
+ Size of the window.
+ Size of the packet.
+ The remote channel number.
+ The window size of the remote party.
+ The maximum size of a data packet that we can send to the remote party.
+
+
+
+ Provides additional information for asynchronous command execution
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets or sets the bytes received. If SFTP only file bytes are counted.
+
+ Total bytes received.
+
+
+
+ Gets or sets the bytes sent by SFTP.
+
+ Total bytes sent.
+
+
+
+ Gets a user-defined object that qualifies or contains information about an asynchronous operation.
+
+ A user-defined object that qualifies or contains information about an asynchronous operation.
+
+
+
+ Gets a that is used to wait for an asynchronous operation to complete.
+
+ A that is used to wait for an asynchronous operation to complete.
+
+
+
+ Gets a value that indicates whether the asynchronous operation completed synchronously.
+
+ true if the asynchronous operation completed synchronously; otherwise, false.
+
+
+
+ Gets a value that indicates whether the asynchronous operation has completed.
+
+ true if the operation is complete; otherwise, false.
+
+
+
+ Gets a value indicating whether was already called for this
+ .
+
+
+ true if was already called for this ;
+ otherwise, false.
+
+
+
+
+ Holds information about key size and cipher to use
+
+
+
+
+ Gets the size of the key.
+
+
+ The size of the key.
+
+
+
+
+ Gets the cipher.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Size of the key.
+ The cipher.
+
+
+
+ Base class to encapsulates the results of an asynchronous operation.
+
+
+
+
+ Gets or sets a value indicating whether has been called on the current
+ .
+
+
+ true if has been called on the current ;
+ otherwise, false.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The async callback.
+ The state.
+
+
+
+ Marks asynchronous operation as completed.
+
+ The exception.
+ if set to true [completed synchronously].
+
+
+
+ Waits until the asynchronous operation completes, and then returns.
+
+
+
+
+ Gets a user-defined object that qualifies or contains information about an asynchronous operation.
+
+ A user-defined object that qualifies or contains information about an asynchronous operation.
+
+
+
+ Gets a value that indicates whether the asynchronous operation completed synchronously.
+
+ true if the asynchronous operation completed synchronously; otherwise, false.
+
+
+
+ Gets a that is used to wait for an asynchronous operation to complete.
+
+ A that is used to wait for an asynchronous operation to complete.
+
+
+
+ Gets a value that indicates whether the asynchronous operation has completed.
+
+
+ true if the operation is complete; otherwise, false.
+
+
+
+ Base class to encapsulates the results of an asynchronous operation that returns result.
+
+ The type of the result.
+
+
+
+ Initializes a new instance of the class.
+
+ The async callback.
+ The state.
+
+
+
+ Marks asynchronous operation as completed.
+
+ The result.
+ if set to true [completed synchronously].
+
+
+
+ Waits until the asynchronous operation completes, and then returns the value generated by the asynchronous operation.
+
+
+ The invocation result.
+
+
+
+
+ Provides data for event.
+
+
+
+
+ Gets banner message.
+
+
+
+
+ Gets banner language.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The username.
+ Banner message.
+ Banner language.
+
+
+
+ Base class for authentication events.
+
+
+
+
+ Gets the username.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The username.
+
+
+
+ Provides data for event.
+
+
+
+
+ Gets or sets the new password.
+
+
+ The new password.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The username.
+
+
+
+ Provides prompt information when is raised
+
+
+
+
+ Gets the prompt sequence id.
+
+
+
+
+ Gets or sets a value indicating whether the user input should be echoed as characters are typed.
+
+
+ true if the user input should be echoed as characters are typed; otherwise, false.
+
+
+
+
+ Gets server information request.
+
+
+
+
+ Gets or sets server information response.
+
+
+ The response.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The sequence id.
+ if set to true the user input should be echoed.
+ The request.
+
+
+
+ Provides data for event.
+
+
+
+
+ Gets prompt language.
+
+
+
+
+ Gets prompt instruction.
+
+
+
+
+ Gets server information request prompts.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The username.
+ The instruction.
+ The language.
+ The information request prompts.
+
+
+
+ Represents an arbitrarily large signed integer.
+
+
+
+
+ Gets number of bits used by the number.
+
+
+ The number of the bit used.
+
+
+
+
+ Mods the inverse.
+
+ The bi.
+ The modulus.
+
+ Modulus inverted number.
+
+
+
+
+ Returns positive remainder that results from division with two specified values.
+
+ The value to be divided.
+ The value to divide by.
+
+ Positive remainder that results from the division.
+
+
+
+
+ Generates a new, random of the specified length.
+
+ The number of bits for the new number.
+ A random number of the specified length.
+
+
+
+ Initializes a new instance of the structure using a 32-bit signed integer value.
+
+ A 32-bit signed integer.
+
+
+
+ Initializes a new instance of the structure using an unsigned 32-bit integer value.
+
+ An unsigned 32-bit integer value.
+
+
+
+ Initializes a new instance of the structure using a 64-bit signed integer value.
+
+ A 64-bit signed integer.
+
+
+
+ Initializes a new instance of the structure with an unsigned 64-bit integer value.
+
+ An unsigned 64-bit integer.
+
+
+
+ Initializes a new instance of the structure using a double-precision floating-point value.
+
+ A double-precision floating-point value.
+
+
+
+ Initializes a new instance of the structure using a single-precision floating-point value.
+
+ A single-precision floating-point value.
+
+
+
+ Initializes a new instance of the structure using a value.
+
+ A decimal number.
+
+
+
+ Initializes a new instance of the structure using the values in a byte array.
+
+ An array of values in little-endian order.
+ is null.
+
+
+
+ Indicates whether the value of the current object is an even number.
+
+
+ true if the value of the BigInteger object is an even number; otherwise, false.
+
+
+
+
+ Indicates whether the value of the current object is .
+
+
+ true if the value of the object is ;
+ otherwise, false.
+
+
+
+
+ Indicates whether the value of the current object is a power of two.
+
+
+ true if the value of the object is a power of two;
+ otherwise, false.
+
+
+
+
+ Indicates whether the value of the current object is .
+
+
+ true if the value of the object is ;
+ otherwise, false.
+
+
+
+
+ Gets a number that indicates the sign (negative, positive, or zero) of the current object.
+
+
+ A number that indicates the sign of the object.
+
+
+
+
+ Gets a value that represents the number negative one (-1).
+
+
+ An integer whose value is negative one (-1).
+
+
+
+
+ Gets a value that represents the number one (1).
+
+
+ An object whose value is one (1).
+
+
+
+
+ Gets a value that represents the number 0 (zero).
+
+
+ An integer whose value is 0 (zero).
+
+
+
+
+ Defines an explicit conversion of a object to a 32-bit signed integer value.
+
+ The value to convert to a 32-bit signed integer.
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an explicit conversion of a object to an unsigned 32-bit integer value.
+
+ The value to convert to an unsigned 32-bit integer.
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an explicit conversion of a object to a 16-bit signed integer value.
+
+ The value to convert to a 16-bit signed integer.
+
+ An object that contains the value of the parameter.
+
+
+
+
+
+
+
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an explicit conversion of a object to an unsigned byte value.
+
+ The value to convert to a .
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an explicit conversion of a object to a signed 8-bit value.
+
+ The value to convert to a signed 8-bit value.
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an explicit conversion of a object to a 64-bit signed integer value.
+
+ The value to convert to a 64-bit signed integer.
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an explicit conversion of a object to an unsigned 64-bit integer value.
+
+ The value to convert to an unsigned 64-bit integer.
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an explicit conversion of a object to a value.
+
+ The value to convert to a .
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an explicit conversion of a object to a single-precision floating-point value.
+
+ The value to convert to a single-precision floating-point value.
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an explicit conversion of a object to a value.
+
+ The value to convert to a .
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an implicit conversion of a signed 32-bit integer to a value.
+
+ The value to convert to a .
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an implicit conversion of a 32-bit unsigned integer to a value.
+
+ The value to convert to a .
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an implicit conversion of a signed 16-bit integer to a BigInteger value.
+
+ The value to convert to a .
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an implicit conversion of a 16-bit unsigned integer to a value.
+
+ The value to convert to a .
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an implicit conversion of an unsigned byte to a value.
+
+ The value to convert to a .
+
+ An object that contains the value of the parameter.
+
+
+
+
+
+
+ The value to convert to a .
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an implicit conversion of a signed 64-bit integer to a value.
+
+ The value to convert to a .
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an implicit conversion of a 64-bit unsigned integer to a value.
+
+ The value to convert to a .
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an explicit conversion of a value to a value.
+
+ The value to convert to a .
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an explicit conversion of a object to a value.
+
+ The value to convert to a .
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Defines an explicit conversion of a object to a value.
+
+ The value to convert to a .
+
+ An object that contains the value of the parameter.
+
+
+
+
+ Adds the values of two specified objects.
+
+ The first value to add.
+ The second value to add.
+
+ The sum of and .
+
+
+
+
+ Subtracts a value from another value.
+
+ The value to subtract from (the minuend).
+ The value to subtract (the subtrahend).
+
+ The result of subtracting from .
+
+
+
+
+ Multiplies two specified values.
+
+ The first value to multiply.
+ The second value to multiply.
+
+ The product of left and right.
+
+
+
+
+ Divides a specified value by another specified value by using
+ integer division.
+
+ The value to be divided.
+ The value to divide by.
+
+ The integral result of the division.
+
+
+
+
+ Returns the remainder that results from division with two specified values.
+
+ The value to be divided.
+ The value to divide by.
+
+ The remainder that results from the division.
+
+
+
+
+ Negates a specified value.
+
+ The value to negate.
+
+ The result of the parameter multiplied by negative one (-1).
+
+
+
+
+ Returns the value of the operand.
+
+ An integer value.
+
+ The value of the operand.
+
+
+ The sign of the operand is unchanged.
+
+
+
+
+ Increments a value by 1.
+
+ The value to increment.
+
+ The value of the parameter incremented by 1.
+
+
+
+
+ Decrements a value by 1.
+
+ The value to decrement.
+
+ The value of the parameter decremented by 1.
+
+
+
+
+ Performs a bitwise And operation on two values.
+
+ The first value.
+ The second value.
+
+ The result of the bitwise And operation.
+
+
+
+
+ Performs a bitwise Or operation on two values.
+
+ The first value.
+ The second value.
+
+ The result of the bitwise Or operation.
+
+
+
+
+ Performs a bitwise exclusive Or (XOr) operation on two values.
+
+ The first value.
+ The second value.
+
+ The result of the bitwise Or operation.
+
+
+
+
+ Returns the bitwise one's complement of a value.
+
+ An integer value.
+
+ The bitwise one's complement of .
+
+
+
+
+ Shifts a value a specified number of bits to the left.
+
+ The value whose bits are to be shifted.
+ The number of bits to shift value to the left.
+
+ A value that has been shifted to the left by the specified number of bits.
+
+
+
+
+ Shifts a value a specified number of bits to the right.
+
+ The value whose bits are to be shifted.
+ The number of bits to shift value to the right.
+
+ A value that has been shifted to the right by the specified number of bits.
+
+
+
+
+ Returns a value that indicates whether a value is less than another
+ value.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is less than ; otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a value is less than a 64-bit signed integer.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if left is than ; otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a 64-bit signed integer is less than a value.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is less than ;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a 64-bit signed integer is less than a value.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is less than ; otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a 64-bit unsigned integer is less than a value.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is less than ; otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a value is less than or equal
+ to another value.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is less than or equal to ;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a value is less than or equal
+ to a 64-bit signed integer.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is less than or equal to ;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a 64-bit signed integer is less than or equal to a value.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is less than or equal to ;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a value is less than or equal to
+ a 64-bit unsigned integer.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is less than or equal to ;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a 64-bit unsigned integer is less than or equal to a
+ value.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is less than or equal to ;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a value is greater than another
+ value.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is greater than ;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a is greater than a 64-bit signed integer value.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is greater than ;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a 64-bit signed integer is greater than a value.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is greater than ;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a value is greater than a 64-bit unsigned integer.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is greater than ;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a 64-bit unsigned integer is greater than a value.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is greater than ;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a value is greater than or equal
+ to another value.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is greater than ;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a value is greater than or equal
+ to a 64-bit signed integer value.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is greater than ;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a 64-bit signed integer is greater than or equal to a
+ value.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is greater than ;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a value is greater than or equal to a
+ 64-bit unsigned integer value.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is greater than ;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a 64-bit unsigned integer is greater than or equal to a
+ value.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if is greater than ;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether the values of two objects are equal.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if the and parameters have the same value;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a value and a signed long integer value are equal.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if the and parameters have the same value;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a signed long integer value and a value are equal.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if the and parameters have the same value;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a value and an unsigned long integer value are equal.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if the and parameters have the same value;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether an unsigned long integer value and a value are equal.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if the and parameters have the same value;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether two objects have different values.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if and are not equal;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a value and a 64-bit signed integer are not equal.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if and are not equal;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a 64-bit signed integer and a value are not equal.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if and are not equal;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a value and a 64-bit unsigned integer are not equal.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if and are not equal;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether a 64-bit unsigned integer and a value are not equal.
+
+ The first value to compare.
+ The second value to compare.
+
+ true if and are not equal;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether the current instance and a specified object have the same value.
+
+ The object to compare.
+
+ true if the parameter is a object or a type capable
+ of implicit conversion to a value, and its value is equal to the value of the
+ current object; otherwise, false.
+
+
+
+
+ Returns a value that indicates whether the current instance and a specified object
+ have the same value.
+
+ The object to compare.
+
+ true if this object and have the same value;
+ otherwise, false.
+
+
+
+
+ Returns a value that indicates whether the current instance and a signed 64-bit integer have the same value.
+
+ The signed 64-bit integer value to compare.
+
+ true if the signed 64-bit integer and the current instance have the same value; otherwise, false.
+
+
+
+
+ Converts the numeric value of the current object to its equivalent string representation.
+
+
+ The string representation of the current value.
+
+
+
+
+ Converts the numeric value of the current object to its equivalent string representation
+ by using the specified format.
+
+ A standard or custom numeric format string.
+
+ The string representation of the current value in the format specified by the
+ parameter.
+
+ is not a valid format string.
+
+
+
+ Converts the numeric value of the current object to its equivalent string representation
+ by using the specified culture-specific formatting information.
+
+ An object that supplies culture-specific formatting information.
+
+ The string representation of the current value in the format specified by the
+ parameter.
+
+
+
+
+ Converts the numeric value of the current object to its equivalent string representation
+ by using the specified format and culture-specific format information.
+
+ A standard or custom numeric format string.
+ An object that supplies culture-specific formatting information.
+
+ The string representation of the current value as specified by the
+ and parameters.
+
+
+
+
+ Converts the string representation of a number to its equivalent.
+
+ A string that contains the number to convert.
+
+ A value that is equivalent to the number specified in the parameter.
+
+ is null.
+ is not in the correct format.
+
+
+
+ Converts the string representation of a number in a specified style to its equivalent.
+
+ A string that contains a number to convert.
+ A bitwise combination of the enumeration values that specify the permitted format of .
+
+ A value that is equivalent to the number specified in the parameter.
+
+
+ is not a value.
+ -or-
+ includes the or flag along with another value.
+
+ is null.
+ does not comply with the input pattern specified by .
+
+
+
+ Converts the string representation of a number in a specified style to its equivalent.
+
+ A string that contains a number to convert.
+ An object that provides culture-specific formatting information about .
+
+ A value that is equivalent to the number specified in the parameter.
+
+ is null.
+ is not in the correct format.
+
+
+
+ Converts the string representation of a number in a specified style and culture-specific format to its equivalent.
+
+ A string that contains a number to convert.
+ A bitwise combination of the enumeration values that specify the permitted format of .
+ An object that provides culture-specific formatting information about .
+
+ A value that is equivalent to the number specified in the parameter.
+
+
+ is not a value.
+ -or-
+ includes the or flag along with another value.
+
+ is null.
+ does not comply with the input pattern specified by .
+
+
+
+ Tries to convert the string representation of a number to its equivalent, and
+ returns a value that indicates whether the conversion succeeded.
+
+ The string representation of a number.
+ When this method returns, contains the equivalent to the number that is contained in value, or zero (0) if the conversion fails. The conversion fails if the parameter is null or is not of the correct format. This parameter is passed uninitialized.
+
+ true if was converted successfully; otherwise, false.
+
+ is null.
+
+
+
+ Tries to convert the string representation of a number in a specified style and culture-specific format to its
+ equivalent, and returns a value that indicates whether the conversion succeeded.
+
+ The string representation of a number.
+ A bitwise combination of enumeration values that indicates the style elements that can be present in .
+ An object that supplies culture-specific formatting information about .
+ When this method returns, contains the equivalent to the number that is contained in value, or if the conversion fails. The conversion fails if the parameter is null or is not of the correct format. This parameter is passed uninitialized.
+
+ true if was converted successfully; otherwise, false.
+
+
+ is not a value.
+ -or-
+ includes the or flag along with another value.
+
+
+
+
+ Returns the smaller of two values.
+
+ The first value to compare.
+ The second value to compare.
+
+ The or parameter, whichever is smaller.
+
+
+
+
+ Returns the larger of two values.
+
+ The first value to compare.
+ The second value to compare.
+
+ The or parameter, whichever is larger.
+
+
+
+
+ Gets the absolute value of a object.
+
+ A number.
+
+ The absolute value of .
+
+
+
+
+ Divides one value by another, returns the result, and returns the remainder in
+ an output parameter.
+
+ The value to be divided.
+ The value to divide by.
+ When this method returns, contains a value that represents the remainder from the division. This parameter is passed uninitialized.
+
+ The quotient of the division.
+
+
+
+
+ Raises a value to the power of a specified value.
+
+ The number to raise to the power.
+ The exponent to raise by.
+
+ The result of raising to the power.
+
+
+
+
+ Performs modulus division on a number raised to the power of another number.
+
+ The number to raise to the power.
+ The exponent to raise by.
+ The number by which to divide raised to the power.
+
+ The remainder after dividing raised by by
+ .
+
+ is negative.
+
+
+
+ Finds the greatest common divisor of two values.
+
+ The first value.
+ The second value.
+
+ The greatest common divisor of and .
+
+
+
+
+ Returns the logarithm of a specified number in a specified base.
+
+ A number whose logarithm is to be found.
+ The base of the logarithm.
+
+ The base logarithm of value,
+
+ The log of is out of range of the data type.
+
+
+
+ Returns the natural (base e) logarithm of a specified number.
+
+ The number whose logarithm is to be found.
+
+ The natural (base e) logarithm of .
+
+ The base 10 log of value is out of range of the data type.
+
+
+
+ Returns the base 10 logarithm of a specified number.
+
+ A number whose logarithm is to be found.
+
+ The base 10 logarithm of .
+
+ The base 10 log of value is out of range of the data type.
+
+
+
+ Returns a value that indicates whether the current instance and an unsigned 64-bit integer have the same value.
+
+ The unsigned 64-bit integer to compare.
+
+ true if the current instance and the unsigned 64-bit integer have the same value; otherwise, false.
+
+
+
+
+ Returns the hash code for the current object.
+
+
+ A 32-bit signed integer hash code.
+
+
+
+
+ Adds two values and returns the result.
+
+ The first value to add.
+ The second value to add.
+
+ The sum of and .
+
+
+
+
+ Subtracts one value from another and returns the result.
+
+ The value to subtract from (the minuend).
+ The value to subtract (the subtrahend).
+
+ The result of subtracting from .
+
+
+
+
+ Returns the product of two values.
+
+ The first number to multiply.
+ The second number to multiply.
+
+ The product of the and parameters.
+
+
+
+
+ Divides one value by another and returns the result.
+
+ The value to be divided.
+ The value to divide by.
+
+ The quotient of the division.
+
+
+
+
+ Performs integer division on two values and returns the remainder.
+
+ The value to be divided.
+ The value to divide by.
+
+ The remainder after dividing by .
+
+
+
+
+ Negates a specified value.
+
+ The value to negate.
+
+ The result of the parameter multiplied by negative one (-1).
+
+
+
+
+ Compares this instance to a specified object and returns an integer that indicates whether the value of
+ this instance is less than, equal to, or greater than the value of the specified object.
+
+ The object to compare.
+
+ A signed integer that indicates the relationship of the current instance to the parameter,
+ as shown in the following table.
+
+
+ Value
+ Condition
+
+ -
+ Less than zero
+ The current instance is less than .
+
+ -
+ Zero
+ The current instance equals .
+
+ -
+ Greater than zero
+ The current instance is greater than .
+
+
+
+ is not a .
+
+
+
+ Compares this instance to a second and returns an integer that indicates whether the
+ value of this instance is less than, equal to, or greater than the value of the specified object.
+
+ The object to compare.
+
+ A signed integer value that indicates the relationship of this instance to , as
+ shown in the following table.
+
+
+ Value
+ Condition
+
+ -
+ Less than zero
+ The current instance is less than .
+
+ -
+ Zero
+ The current instance equals .
+
+ -
+ Greater than zero
+ The current instance is greater than .
+
+
+
+
+
+
+ Compares this instance to an unsigned 64-bit integer and returns an integer that indicates whether the value of this
+ instance is less than, equal to, or greater than the value of the unsigned 64-bit integer.
+
+ The unsigned 64-bit integer to compare.
+
+ A signed integer that indicates the relative value of this instance and , as shown
+ in the following table.
+
+
+ Value
+ Condition
+
+ -
+ Less than zero
+ The current instance is less than .
+
+ -
+ Zero
+ The current instance equals .
+
+ -
+ Greater than zero
+ The current instance is greater than .
+
+
+
+
+
+
+ Compares this instance to a signed 64-bit integer and returns an integer that indicates whether the value of this
+ instance is less than, equal to, or greater than the value of the signed 64-bit integer.
+
+ The signed 64-bit integer to compare.
+
+ A signed integer that indicates the relative value of this instance and , as shown
+ in the following table.
+
+
+ Value
+ Condition
+
+ -
+ Less than zero
+ The current instance is less than .
+
+ -
+ Zero
+ The current instance equals .
+
+ -
+ Greater than zero
+ The current instance is greater than .
+
+
+
+
+
+
+ Compares two values and returns an integer that indicates whether the first value is less than, equal to, or greater than the second value.
+
+ The first value to compare.
+ The second value to compare.
+
+ A signed integer that indicates the relative values of left and right, as shown in the following table.
+
+
+ Value
+ Condition
+
+ -
+ Less than zero
+ is less than .
+
+ -
+ Zero
+ equals .
+
+ -
+ Greater than zero
+ is greater than .
+
+
+
+
+
+
+ Converts a value to a byte array.
+
+
+ The value of the current object converted to an array of bytes.
+
+
+
+
+ Provides data for event.
+
+
+
+
+ Gets channel data.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Channel number.
+ Channel data.
+
+
+
+ Base class for all channel related events.
+
+
+
+
+ Gets the channel number.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The channel number.
+
+
+
+ Provides data for events.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Channel number.
+ Channel data.
+ Channel data type code.
+
+
+
+ Gets the data type code.
+
+
+
+
+ Provides data for event.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The remote channel number.
+ The initial window size.
+ The maximum packet size.
+
+
+
+ Gets the initial size of the window.
+
+
+ The initial size of the window.
+
+
+
+
+ Gets the maximum size of the packet.
+
+
+ The maximum size of the packet.
+
+
+
+
+ Provides data for event.
+
+
+
+
+ Gets failure reason code.
+
+
+
+
+ Gets failure description.
+
+
+
+
+ Gets failure language.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Channel number.
+ Failure reason code.
+ Failure description.
+ Failure language.
+
+
+
+ Provides data for event.
+
+
+
+
+ Gets request information.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Request information.
+
+
+
+ Provides convenience methods for conversion to and from both Big Endian and Little Endian.
+
+
+
+
+ Converts little endian bytes into number.
+
+ The buffer.
+ Converted .
+
+
+
+ Converts little endian bytes into number.
+
+ The buffer.
+ The buffer offset.
+ Converted .
+
+
+
+ Converts little endian bytes into number.
+
+ The buffer.
+ Converted .
+
+
+
+ Converts little endian bytes into number.
+
+ The buffer.
+ Converted .
+
+
+
+ Populates buffer with little endian number representation.
+
+ The number to convert.
+
+
+
+ Populates buffer with little endian number representation.
+
+ The number to convert.
+ The buffer.
+
+
+
+ Populates buffer with little endian number representation.
+
+ The number to convert.
+
+
+
+ Populates buffer with little endian number representation.
+
+ The number to convert.
+ The buffer.
+
+
+
+ Populates buffer with little endian number representation.
+
+ The number to convert.
+ The buffer.
+ The buffer offset.
+
+
+
+ Populates buffer with little endian number representation.
+
+ The number to convert.
+
+
+
+ Populates buffer with little endian number representation.
+
+ The number to convert.
+ The buffer.
+
+
+
+ Returns the specified 64-bit unsigned integer value as an array of bytes.
+
+ The number to convert.
+ An array of bytes with length 8.
+
+
+
+ Converts big endian bytes into number.
+
+ The buffer.
+ Converted .
+
+
+
+ Converts big endian bytes into number.
+
+ The buffer.
+ The buffer offset.
+ Converted .
+
+
+
+ Converts big endian bytes into number.
+
+ The buffer.
+ Converted .
+
+
+
+ Converts big endian bytes into number.
+
+ The buffer.
+ Converted .
+
+
+
+ Gets the file name part of a given POSIX path.
+
+ The POSIX path to get the file name for.
+
+ The file name part of .
+
+ is null.
+
+
+ If contains no forward slash, then
+ is returned.
+
+
+ If path has a trailing slash, but return a zero-length string.
+
+
+
+
+
+ The exception that is thrown when a proxy connection cannot be established.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+ The inner exception.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ Provides data for the HostKeyReceived event.
+
+
+
+
+ Gets or sets a value indicating whether host key can be trusted.
+
+
+ true if host key can be trusted; otherwise, false.
+
+
+
+
+ Gets the host key.
+
+
+
+
+ Gets the host key name.
+
+
+
+
+ Gets the finger print.
+
+
+
+
+ Gets the length of the key in bits.
+
+
+ The length of the key in bits.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The host.
+
+
+
+ Base class for DER encoded data.
+
+
+
+
+ Gets a value indicating whether end of data is reached.
+
+
+ true if end of data is reached; otherwise, false.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ DER encoded data.
+
+
+
+ Encodes written data as DER byte array.
+
+ DER Encoded array.
+
+
+
+ Reads next mpint data type from internal buffer.
+
+ mpint read.
+
+
+
+ Reads next int data type from internal buffer.
+
+ int read.
+
+
+
+ Writes BOOLEAN data into internal buffer.
+
+ UInt32 data to write.
+
+
+
+ Writes UInt32 data into internal buffer.
+
+ UInt32 data to write.
+
+
+
+ Writes INTEGER data into internal buffer.
+
+ BigInteger data to write.
+
+
+
+ Writes OCTETSTRING data into internal buffer.
+
+ The data.
+
+
+
+ Writes OBJECTIDENTIFIER data into internal buffer.
+
+ The identifier.
+
+
+
+ Writes NULL data into internal buffer.
+
+
+
+
+ Writes DerData data into internal buffer.
+
+ DerData data to write.
+
+
+
+ Provides data for the ErrorOccured events.
+
+
+
+
+ Gets the System.Exception that represents the error that occurred.
+
+
+
+
+ Initializes a new instance of the class.
+
+ An System.Exception that represents the error that occurred.
+
+
+
+ Collection of different extension method
+
+
+
+
+ Determines whether the specified value is null or white space.
+
+ The value.
+
+ true if is null or white space; otherwise, false.
+
+
+
+
+ Reverses the sequence of the elements in the entire one-dimensional .
+
+ The one-dimensional to reverse.
+
+ The with its elements reversed.
+
+
+
+
+ Prints out
+
+ The bytes.
+
+
+
+ Creates an instance of the specified type using that type's default constructor.
+
+ The type to create.
+ Type of the instance to create.
+ A reference to the newly created object.
+
+
+
+ Returns a specified number of contiguous bytes from a given offset.
+
+ The array to return a number of bytes from.
+ The zero-based offset in at which to begin taking bytes.
+ The number of bytes to take from .
+
+ A array that contains the specified number of bytes at the specified offset
+ of the input array.
+
+ is null.
+
+ When is zero and equals the length of ,
+ then is returned.
+
+
+
+
+ Returns a specified number of contiguous bytes from the start of the specified byte array.
+
+ The array to return a number of bytes from.
+ The number of bytes to take from .
+
+ A array that contains the specified number of bytes at the start of the input array.
+
+ is null.
+
+ When equals the length of , then
+ is returned.
+
+
+
+
+ Trims the leading zero from a byte array.
+
+ The value.
+
+ without leading zeros.
+
+
+
+
+ The exception that is thrown when there is something wrong with the server capabilities.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+ The inner exception.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ Describes object identifier for DER encoding
+
+
+
+
+ Gets the object identifier.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The identifiers.
+
+
+
+ PipeStream is a thread-safe read/write data stream for use between two threads in a
+ single-producer/single-consumer type problem.
+
+ 2006/10/13 1.0
+ Update on 2008/10/9 1.1 - uses Monitor instead of Manual Reset events for more elegant synchronicity.
+
+ Copyright (c) 2006 James Kolpack (james dot kolpack at google mail)
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
+ associated documentation files (the "Software"), to deal in the Software without restriction,
+ including without limitation the rights to use, copy, modify, merge, publish, distribute,
+ sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in all copies or
+ substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
+ PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
+ OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ OTHER DEALINGS IN THE SOFTWARE.
+
+
+
+
+ Queue of bytes provides the datastructure for transmitting from an
+ input stream to an output stream.
+
+ Possible more effecient ways to accomplish this.
+
+
+
+ Indicates that the input stream has been flushed and that
+ all remaining data should be written to the output stream.
+
+
+
+
+ Maximum number of bytes to store in the buffer.
+
+
+
+
+ Setting this to true will cause Read() to block if it appears
+ that it will run out of data.
+
+
+
+
+ Indicates whether the current is disposed.
+
+
+
+
+ Gets or sets the maximum number of bytes to store in the buffer.
+
+ The length of the max buffer.
+
+
+
+ Gets or sets a value indicating whether to block last read method before the buffer is empty.
+ When true, Read() will block until it can fill the passed in buffer and count.
+ When false, Read() will not block, returning all the available buffer data.
+
+
+ Setting to true will remove the possibility of ending a stream reader prematurely.
+
+
+ true if block last read method before the buffer is empty; otherwise, false.
+
+ Methods were called after the stream was closed.
+
+
+
+ When overridden in a derived class, clears all buffers for this stream and causes any buffered data to be written to the underlying device.
+
+ An I/O error occurs.
+ Methods were called after the stream was closed.
+
+ Once flushed, any subsequent read operations no longer block until requested bytes are available. Any write operation reactivates blocking
+ reads.
+
+
+
+
+ When overridden in a derived class, sets the position within the current stream.
+
+
+ The new position within the current stream.
+
+ A byte offset relative to the origin parameter.
+ A value of type indicating the reference point used to obtain the new position.
+ The stream does not support seeking, such as if the stream is constructed from a pipe or console output.
+
+
+
+ When overridden in a derived class, sets the length of the current stream.
+
+ The desired length of the current stream in bytes.
+ The stream does not support both writing and seeking, such as if the stream is constructed from a pipe or console output.
+
+
+
+ When overridden in a derived class, reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
+
+
+ The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero if the stream is closed or end of the stream has been reached.
+
+ The zero-based byte offset in buffer at which to begin storing the data read from the current stream.
+ The maximum number of bytes to be read from the current stream.
+ An array of bytes. When this method returns, the buffer contains the specified byte array with the values between offset and (offset + count - 1) replaced by the bytes read from the current source.
+ The sum of offset and count is larger than the buffer length.
+ Methods were called after the stream was closed.
+ The stream does not support reading.
+ is null.
+ An I/O error occurs.
+ offset or count is negative.
+
+
+
+ Returns true if there are
+
+ The count.
+ True if data available; otherwisefalse.
+
+
+
+ When overridden in a derived class, writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
+
+ The zero-based byte offset in buffer at which to begin copying bytes to the current stream.
+ The number of bytes to be written to the current stream.
+ An array of bytes. This method copies count bytes from buffer to the current stream.
+ An I/O error occurs.
+ The stream does not support writing.
+ Methods were called after the stream was closed.
+ is null.
+ The sum of offset and count is greater than the buffer length.
+ offset or count is negative.
+
+
+
+ Releases the unmanaged resources used by the Stream and optionally releases the managed resources.
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+ Disposing a will interrupt blocking read and write operations.
+
+
+
+
+ When overridden in a derived class, gets a value indicating whether the current stream supports reading.
+
+
+ true if the stream supports reading; otherwise, false.
+
+
+
+
+ When overridden in a derived class, gets a value indicating whether the current stream supports seeking.
+
+
+ true if the stream supports seeking; otherwise, false.
+
+
+
+
+ When overridden in a derived class, gets a value indicating whether the current stream supports writing.
+
+
+ true if the stream supports writing; otherwise, false.
+
+
+
+
+ When overridden in a derived class, gets the length in bytes of the stream.
+
+
+ A long value representing the length of the stream in bytes.
+
+ A class derived from Stream does not support seeking.
+ Methods were called after the stream was closed.
+
+
+
+ When overridden in a derived class, gets or sets the position within the current stream.
+
+
+ The current position within the stream.
+
+ The stream does not support seeking.
+
+
+
+ Provides data for event.
+
+
+
+
+ Gets request originator host.
+
+
+
+
+ Gets request originator port.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The host.
+ The port.
+ is null.
+ is not within and .
+
+
+
+ Provides data for the Downloading event.
+
+
+
+
+ Gets the downloaded filename.
+
+
+
+
+ Gets the downloaded file size.
+
+
+
+
+ Gets number of downloaded bytes so far.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The downloaded filename.
+ The downloaded file size.
+ The number of downloaded bytes so far.
+
+
+
+ The exception that is thrown when SCP error occurred.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+ The inner exception.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ Provides data for the Uploading event.
+
+
+
+
+ Gets the uploaded filename.
+
+
+
+
+ Gets the uploaded file size.
+
+
+
+
+ Gets number of uploaded bytes so far.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The uploaded filename.
+ The uploaded file size.
+ The number of uploaded bytes so far.
+
+
+
+ Light implementation of SemaphoreSlim.
+
+
+
+
+ Initializes a new instance of the class, specifying
+ the initial number of requests that can be granted concurrently.
+
+ The initial number of requests for the semaphore that can be granted concurrently.
+ is a negative number.
+
+
+
+ Gets the current count of the .
+
+
+
+
+ Returns a that can be used to wait on the semaphore.
+
+
+ A that can be used to wait on the semaphore.
+
+
+ A successful wait on the does not imply a successful
+ wait on the itself. It should be followed by a true wait
+ on the semaphore.
+
+
+
+
+ Exits the once.
+
+ The previous count of the .
+
+
+
+ Exits the a specified number of times.
+
+ The number of times to exit the semaphore.
+
+ The previous count of the .
+
+
+
+
+ Blocks the current thread until it can enter the .
+
+
+
+
+ Blocks the current thread until it can enter the , using a 32-bit signed
+ integer that specifies the timeout.
+
+ The number of milliseconds to wait, or Infinite(-1) to wait indefinitely.
+
+ true if the current thread successfully entered the ; otherwise, false.
+
+
+
+
+ Blocks the current thread until it can enter the , using a
+ to specify the timeout.
+
+ A that represents the number of milliseconds to wait, or a that represents -1 milliseconds to wait indefinitely.
+
+ true if the current thread successfully entered the ; otherwise, false.
+
+
+
+
+ Finalizes the current .
+
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ The exception that is thrown when file or directory is not found.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+ The inner exception.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ The exception that is thrown when operation permission is denied.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+ The inner exception.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ Provides data for Shell DataReceived event
+
+
+
+
+ Gets the data.
+
+
+
+
+ Gets the line data.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The data.
+
+
+
+ Initializes a new instance of the class.
+
+ The line.
+
+
+
+ The exception that is thrown when authentication failed.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+ The inner exception.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ The exception that is thrown when connection was terminated.
+
+
+
+
+ Gets the disconnect reason if provided by the server or client. Otherwise None.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+ The disconnect reason code.
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+ The disconnect reason code.
+ The inner.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ Base ssh data serialization type
+
+
+
+
+ Gets the underlying that is used for reading and writing SSH data.
+
+
+ The underlying that is used for reading and writing SSH data.
+
+
+
+
+ Gets a value indicating whether all data from the buffer has been read.
+
+
+ true if this instance is end of data; otherwise, false.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets data bytes array.
+
+
+ A array representation of data structure.
+
+
+
+
+ Writes the current message to the specified .
+
+ The to write the message to.
+
+
+
+ Loads data from specified bytes.
+
+ Bytes array.
+ is null.
+
+
+
+ Loads data from the specified buffer.
+
+ Bytes array.
+ The zero-based offset in at which to begin reading SSH data.
+ The number of bytes to load.
+ is null.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Reads all data left in internal buffer at current position.
+
+ An array of bytes containing the remaining data in the internal buffer.
+
+
+
+ Reads next specified number of bytes data type from internal buffer.
+
+ Number of bytes to read.
+ An array of bytes that was read from the internal buffer.
+ is greater than the internal buffer size.
+
+
+
+ Reads next byte data type from internal buffer.
+
+ Byte read.
+
+
+
+ Reads next boolean data type from internal buffer.
+
+ Boolean read.
+
+
+
+ Reads next uint16 data type from internal buffer.
+
+ uint16 read
+
+
+
+ Reads next uint32 data type from internal buffer.
+
+ uint32 read
+
+
+
+ Reads next uint64 data type from internal buffer.
+
+ uint64 read
+
+
+
+ Reads next string data type from internal buffer using the specific encoding.
+
+
+ The read.
+
+
+
+
+ Reads next data type as byte array from internal buffer.
+
+
+ The bytes read.
+
+
+
+
+ Reads next name-list data type from internal buffer.
+
+
+ String array or read data.
+
+
+
+
+ Reads next extension-pair data type from internal buffer.
+
+ Extensions pair dictionary.
+
+
+
+ Writes bytes array data into internal buffer.
+
+ Byte array data to write.
+ is null.
+
+
+
+ Writes a sequence of bytes to the current SSH data stream and advances the current position
+ within this stream by the number of bytes written.
+
+ An array of bytes. This method write bytes from buffer to the current SSH data stream.
+ The zero-based offset in at which to begin writing bytes to the SSH data stream.
+ The number of bytes to be written to the current SSH data stream.
+ is null.
+ The sum of and is greater than the buffer length.
+ or is negative.
+
+
+
+ Writes data into internal buffer.
+
+ data to write.
+
+
+
+ Writes into internal buffer.
+
+ data to write.
+
+
+
+ Writes data into internal buffer.
+
+ data to write.
+
+
+
+ Writes data into internal buffer.
+
+ data to write.
+
+
+
+ Writes data into internal buffer using default encoding.
+
+ data to write.
+ is null.
+
+
+
+ Writes data into internal buffer using the specified encoding.
+
+ data to write.
+ The character encoding to use.
+ is null.
+ is null.
+
+
+
+ Writes data into internal buffer.
+
+ The data to write.
+ is null.
+
+
+
+ Writes data into internal buffer.
+
+ An array of bytes. This method write bytes from buffer to the current SSH data stream.
+ The zero-based byte offset in at which to begin writing bytes to the SSH data stream.
+ The number of bytes to be written to the current SSH data stream.
+ is null.
+ The sum of and is greater than the buffer length.
+ or is negative.
+
+
+
+ Writes mpint data into internal buffer.
+
+ mpint data to write.
+
+
+
+ Writes name-list data into internal buffer.
+
+ name-list data to write.
+
+
+
+ Writes extension-pair data into internal buffer.
+
+ extension-pair data to write.
+
+
+
+ The exception that is thrown when SSH exception occurs.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+ The inner.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ The exception that is thrown when operation is timed out.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+ The inner exception.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ The exception that is thrown when pass phrase for key file is empty or null
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+ The inner exception.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ Specifies the initial assignments of the opcode values that are used in the 'encoded terminal modes' valu
+
+
+
+
+ Indicates end of options.
+
+
+
+
+ Interrupt character; 255 if none. Similarly for the other characters. Not all of these characters are supported on all systems.
+
+
+
+
+ The quit character (sends SIGQUIT signal on POSIX systems).
+
+
+
+
+ Erase the character to left of the cursor.
+
+
+
+
+ Kill the current input line.
+
+
+
+
+ End-of-file character (sends EOF from the terminal).
+
+
+
+
+ End-of-line character in addition to carriage return and/or linefeed.
+
+
+
+
+ Additional end-of-line character.
+
+
+
+
+ Continues paused output (normally control-Q).
+
+
+
+
+ Pauses output (normally control-S).
+
+
+
+
+ Suspends the current program.
+
+
+
+
+ Another suspend character.
+
+
+
+
+ Reprints the current input line.
+
+
+
+
+ Erases a word left of cursor.
+
+
+
+
+ Enter the next character typed literally, even if it is a special character
+
+
+
+
+ Character to flush output.
+
+
+
+
+ Switch to a different shell layer.
+
+
+
+
+ Prints system status line (load, command, pid, etc).
+
+
+
+
+ Toggles the flushing of terminal output.
+
+
+
+
+ The ignore parity flag. The parameter SHOULD be 0 if this flag is FALSE, and 1 if it is TRUE.
+
+
+
+
+ Mark parity and framing errors.
+
+
+
+
+ Enable checking of parity errors.
+
+
+
+
+ Strip 8th bit off characters.
+
+
+
+
+ Map NL into CR on input.
+
+
+
+
+ Ignore CR on input.
+
+
+
+
+ Map CR to NL on input.
+
+
+
+
+ Translate uppercase characters to lowercase.
+
+
+
+
+ Enable output flow control.
+
+
+
+
+ Any char will restart after stop.
+
+
+
+
+ Enable input flow control.
+
+
+
+
+ Ring bell on input queue full.
+
+
+
+
+ Enable signals INTR, QUIT, [D]SUSP.
+
+
+
+
+ Canonicalize input lines.
+
+
+
+
+ Enable input and output of uppercase characters by preceding their lowercase equivalents with "\".
+
+
+
+
+ Enable echoing.
+
+
+
+
+ Visually erase chars.
+
+
+
+
+ Kill character discards current line.
+
+
+
+
+ Echo NL even if ECHO is off.
+
+
+
+
+ Don't flush after interrupt.
+
+
+
+
+ Stop background jobs from output.
+
+
+
+
+ Enable extensions.
+
+
+
+
+ Echo control characters as ^(Char).
+
+
+
+
+ Visual erase for line kill.
+
+
+
+
+ Retype pending input.
+
+
+
+
+ Enable output processing.
+
+
+
+
+ Convert lowercase to uppercase.
+
+
+
+
+ Map NL to CR-NL.
+
+
+
+
+ Translate carriage return to newline (output).
+
+
+
+
+ Translate newline to carriage return-newline (output).
+
+
+
+
+ Newline performs a carriage return (output).
+
+
+
+
+ 7 bit mode.
+
+
+
+
+ 8 bit mode.
+
+
+
+
+ Parity enable.
+
+
+
+
+ Odd parity, else even.
+
+
+
+
+ Specifies the input baud rate in bits per second.
+
+
+
+
+ Specifies the output baud rate in bits per second.
+
+
+
+
+ Specialized for reading and writing data SSH data.
+
+
+
+
+ Initializes a new instance of the class with an expandable capacity initialized
+ as specified.
+
+ The initial size of the internal array in bytes.
+
+
+
+ Initializes a new non-resizable instance of the class based on the specified byte array.
+
+ The array of unsigned bytes from which to create the current stream.
+ is null.
+
+
+
+ Initializes a new non-resizable instance of the class based on the specified byte array.
+
+ The array of unsigned bytes from which to create the current stream.
+ The zero-based offset in at which to begin reading SSH data.
+ The number of bytes to load.
+ is null.
+
+
+
+ Gets a value indicating whether all data from the SSH data stream has been read.
+
+
+ true if this instance is end of data; otherwise, false.
+
+
+
+
+ Writes an to the SSH data stream.
+
+ data to write.
+
+
+
+ Writes an to the SSH data stream.
+
+ data to write.
+
+
+
+ Writes a into the SSH data stream.
+
+ The to write.
+
+
+
+ Writes bytes array data into the SSH data stream.
+
+ Byte array data to write.
+ is null.
+
+
+
+ Reads a byte array from the SSH data stream.
+
+
+ The byte array read from the SSH data stream.
+
+
+
+
+ Writes a buffer preceded by its length into the SSH data stream.
+
+ The data to write.
+ is null.
+
+
+
+ Writes a buffer preceded by its length into the SSH data stream.
+
+ An array of bytes. This method write bytes from buffer to the current SSH data stream.
+ The zero-based byte offset in at which to begin writing bytes to the SSH data stream.
+ The number of bytes to be written to the current SSH data stream.
+ is null.
+ The sum of and is greater than the buffer length.
+ or is negative.
+
+
+
+ Writes string data to the SSH data stream using the specified encoding.
+
+ The string data to write.
+ The character encoding to use.
+ is null.
+ is null.
+
+
+
+ Reads a from the SSH datastream.
+
+
+ The read from the SSH data stream.
+
+
+
+
+ Reads the next data type from the SSH data stream.
+
+
+ The read from the SSH data stream.
+
+
+
+
+ Reads the next data type from the SSH data stream.
+
+
+ The read from the SSH data stream.
+
+
+
+
+ Reads the next data type from the SSH data stream.
+
+
+ The read from the SSH data stream.
+
+
+
+
+ Reads next specified number of bytes data type from internal buffer.
+
+ Number of bytes to read.
+
+ An array of bytes that was read from the internal buffer.
+
+ is greater than the internal buffer size.
+
+
+
+ Writes the stream contents to a byte array, regardless of the .
+
+
+ This method returns the contents of the as a byte array.
+
+
+ If the current instance was constructed on a provided byte array, a copy of the section of the array
+ to which this instance has access is returned.
+
+
+
+
+ Initializes a new instance.
+
+ The number of times an authentication attempt with any given can result in before it is disregarded.
+ is less than one.
+
+
+
+ Gets the number of times an authentication attempt with any given can
+ result in before it is disregarded.
+
+
+ The number of times an authentication attempt with any given can result
+ in before it is disregarded.
+
+
+
+
+ Attempts to authentication for a given using the
+ of the specified .
+
+ A to use for authenticating.
+ The for which to perform authentication.
+
+
+
+ Records if a given has been tried, and how many times this resulted
+ in .
+
+
+ When there's no entry for a given , then it was never tried.
+
+
+
+
+ Holds the list of authentications methods that failed.
+
+
+
+
+ Records a authentication attempt for the specified
+ .
+
+ An for which to record the result of an authentication attempt.
+
+
+
+ Records a authentication attempt for the specified
+ .
+
+ An for which to record the result of an authentication attempt.
+
+
+
+ Returns the number of times an authentication attempt with the specified
+ has resulted in .
+
+ An .
+
+ The number of times an authentication attempt with the specified
+ has resulted in .
+
+
+
+
+ Returns a list of supported authentication methods that match one of the specified allowed authentication
+ methods.
+
+ A list of allowed authentication methods.
+
+ A list of supported authentication methods that match one of the specified allowed authentication methods.
+
+
+ The authentication methods are returned in the order in which they were specified in the list that was
+ used to initialize the current instance.
+
+
+
+
+ Returns the authentication methods from the specified list that have not yet failed.
+
+ A list of authentication methods.
+
+ The authentication methods from that have not yet failed.
+
+
+
+ This method first returns the authentication methods that have not yet been executed, and only then
+ returns those for which an authentication attempt resulted in a .
+
+
+ Any that has failed is skipped.
+
+
+
+
+
+ Specifies compression modes
+
+
+
+
+ Specifies that content should be compressed.
+
+
+
+
+ Specifies that content should be decompressed.
+
+
+
+
+ Represents base class for compression algorithm implementation
+
+
+
+
+ Gets or sets a value indicating whether compression is active.
+
+
+ true if compression is active; otherwise, false.
+
+
+
+
+ Gets the session.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes the algorithm
+
+ The session.
+
+
+
+ Compresses the specified data.
+
+ Data to compress.
+ Compressed data
+
+
+
+ Compresses the specified data.
+
+ Data to compress.
+ The zero-based byte offset in at which to begin reading the data to compress.
+ The number of bytes to be compressed.
+
+ The compressed data.
+
+
+
+
+ Decompresses the specified data.
+
+ Compressed data.
+
+ The decompressed data.
+
+
+
+
+ Decompresses the specified data.
+
+ Compressed data.
+ The zero-based byte offset in at which to begin reading the data to decompress.
+ The number of bytes to be read from the compressed data.
+
+ The decompressed data.
+
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the is reclaimed
+ by garbage collection.
+
+
+
+
+ Represents "zlib" compression implementation
+
+
+
+
+ Gets algorithm name.
+
+
+
+
+ Initializes the algorithm
+
+ The session.
+
+
+
+ Represents "zlib@openssh.org" compression implementation
+
+
+
+
+ Gets algorithm name.
+
+
+
+
+ Initializes the algorithm
+
+ The session.
+
+
+
+ Implements Zlib compression algorithm.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The stream.
+ The mode.
+
+
+
+ Writes the specified buffer.
+
+ The buffer.
+ The offset.
+ The count.
+
+
+
+ Represents remote connection information class.
+
+
+ This class is NOT thread-safe. Do not use the same with multiple
+ client instances.
+
+
+
+
+ Gets supported key exchange algorithms for this connection.
+
+
+
+
+ Gets supported encryptions for this connection.
+
+
+
+
+ Gets supported hash algorithms for this connection.
+
+
+
+
+ Gets supported host key algorithms for this connection.
+
+
+
+
+ Gets supported authentication methods for this connection.
+
+
+
+
+ Gets supported compression algorithms for this connection.
+
+
+
+
+ Gets the supported channel requests for this connection.
+
+
+ The supported channel requests for this connection.
+
+
+
+
+ Gets a value indicating whether connection is authenticated.
+
+
+ true if connection is authenticated; otherwise, false.
+
+
+
+
+ Gets connection host.
+
+
+
+
+ Gets connection port.
+
+
+ The connection port. The default value is 22.
+
+
+
+
+ Gets connection username.
+
+
+
+
+ Gets proxy type.
+
+
+ The type of the proxy.
+
+
+
+
+ Gets proxy connection host.
+
+
+
+
+ Gets proxy connection port.
+
+
+
+
+ Gets proxy connection username.
+
+
+
+
+ Gets proxy connection password.
+
+
+
+
+ Gets or sets connection timeout.
+
+
+ The connection timeout. The default value is 30 seconds.
+
+
+
+
+
+
+
+ Gets or sets the character encoding.
+
+
+ The character encoding. The default is .
+
+
+
+
+ Gets or sets number of retry attempts when session channel creation failed.
+
+
+ The number of retry attempts when session channel creation failed. The default
+ value is 10.
+
+
+
+
+ Gets or sets maximum number of session channels to be open simultaneously.
+
+
+ The maximum number of session channels to be open simultaneously. The default
+ value is 10.
+
+
+
+
+ Occurs when authentication banner is sent by the server.
+
+
+
+
+
+
+
+ Gets the current key exchange algorithm.
+
+
+
+
+ Gets the current server encryption.
+
+
+
+
+ Gets the current client encryption.
+
+
+
+
+ Gets the current server hash algorithm.
+
+
+
+
+ Gets the current client hash algorithm.
+
+
+
+
+ Gets the current host key algorithm.
+
+
+
+
+ Gets the current server compression algorithm.
+
+
+
+
+ Gets the server version.
+
+
+
+
+ Get the client version.
+
+
+
+
+ Gets the current client compression algorithm.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The host.
+ The username.
+ The authentication methods.
+ is null.
+ is a zero-length string.
+ is null, a zero-length string or contains only whitespace characters.
+ is null.
+ No specified.
+
+
+
+ Initializes a new instance of the class.
+
+ The host.
+ The port.
+ The username.
+ The authentication methods.
+ is null.
+ is null, a zero-length string or contains only whitespace characters.
+ is not within and .
+ is null.
+ No specified.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection port.
+ Connection username.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+ The proxy username.
+ The proxy password.
+ The authentication methods.
+ is null.
+ is null, a zero-length string or contains only whitespace characters.
+ is not within and .
+ is not and is null.
+ is not and is not within and .
+ is null.
+ No specified.
+
+
+
+ Authenticates the specified session.
+
+ The session to be authenticated.
+ The factory to use for creating new services.
+ is null.
+ is null.
+ No suitable authentication method found to complete authentication, or permission denied.
+
+
+
+ Signals that an authentication banner message was received from the server.
+
+ The session in which the banner message was received.
+ The banner message.{
+
+
+
+ Returns a value indicating whether has been changed to .
+
+ The status to transition from.
+
+ true if has been changed to ; otherwise, false.
+
+ Cannot transition to .
+
+ While a transition from to is not possible, this method will
+ return false for any such attempts. This is related to concurrency.
+
+
+
+
+ Returns a value indicating whether has been changed to .
+
+ The status to transition from.
+
+ true if has been changed to ; otherwise, false.
+
+ Cannot transition to .
+
+ While a transition from to is not possible, this method will
+ return false for any such attempts. This is related to concurrency.
+
+
+
+
+ Holds information about key size and cipher to use
+
+
+
+
+ Gets the size of the key.
+
+
+ The size of the key.
+
+
+
+
+ Gets the cipher.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Size of the key.
+ The hash algorithm to use for a given key.
+
+
+
+ Base interface for authentication of a session using a given method.
+
+
+
+
+ Authenticates the specified session.
+
+ The session to authenticate.
+
+ The result of the authentication process.
+
+
+
+
+ Gets the list of allowed authentications.
+
+
+ The list of allowed authentications.
+
+
+
+
+ Gets the name of the authentication method.
+
+
+ The name of the authentication method.
+
+
+
+
+ Signals that an authentication banner message was received from the server.
+
+ The session in which the banner message was received.
+ The banner message.{
+
+
+
+ Gets the supported authentication methods for this connection.
+
+
+ The supported authentication methods for this connection.
+
+
+
+
+ Creates a for the credentials represented
+ by the current .
+
+
+ A for the credentials represented by the
+ current .
+
+
+
+
+ Represents remote connection information.
+
+
+
+
+ Gets the supported channel requests for this connection.
+
+
+ The supported channel requests for this connection.
+
+
+
+
+ Gets the character encoding.
+
+
+ The character encoding.
+
+
+
+
+ Gets the number of retry attempts when session channel creation failed.
+
+
+ The number of retry attempts when session channel creation failed.
+
+
+
+
+ Gets or sets connection timeout.
+
+
+ The connection timeout. The default value is 30 seconds.
+
+
+
+
+
+
+
+ Occurs when authentication banner is sent by the server.
+
+
+
+
+ Supports port forwarding functionality.
+
+
+
+
+ The event occurs as the forwarded port is being stopped.
+
+
+
+
+ Represents a transformation that can be applied to a remote path.
+
+
+
+
+ Transforms the specified remote path.
+
+ The path to transform.
+
+ The transformed path.
+
+
+
+
+ Factory for creating new services.
+
+
+
+
+ Creates a new with the specified .
+
+ The to use for creating a new session.
+
+ An for the specified .
+
+ is null.
+
+
+
+ Creates a new in a given and with
+ the specified operation timeout and encoding.
+
+ The to create the in.
+ The number of milliseconds to wait for an operation to complete, or -1 to wait indefinitely.
+ The encoding.
+ The factory to use for creating SFTP messages.
+
+ An .
+
+
+
+
+ Create a new .
+
+
+ A .
+
+
+
+
+ Negotiates a key exchange algorithm, and creates a for the negotiated
+ algorithm.
+
+ A of the key exchange algorithms supported by the client where the key is the name of the algorithm, and the value is the type implementing this algorithm.
+ The names of the key exchange algorithms supported by the SSH server.
+
+ A that was negotiated between client and server.
+
+ is null.
+ is null.
+ No key exchange algorithm is supported by both client and server.
+
+
+
+ Creates a shell stream.
+
+ The SSH session.
+ The TERM environment variable.
+ The terminal width in columns.
+ The terminal width in rows.
+ The terminal height in pixels.
+ The terminal height in pixels.
+ Size of the buffer.
+ The terminal mode values.
+
+ The created instance.
+
+ Client is not connected.
+
+
+ The TERM environment variable contains an identifier for the text window's capabilities.
+ You can get a detailed list of these cababilities by using the ‘infocmp’ command.
+
+
+ The column/row dimensions override the pixel dimensions(when non-zero). Pixel dimensions refer
+ to the drawable area of the window.
+
+
+
+
+
+ Creates an that encloses a path in double quotes, and escapes
+ any embedded double quote with a backslash.
+
+
+ An that encloses a path in double quotes, and escapes any
+ embedded double quote with a backslash.
+ with a shell.
+
+
+
+
+ Creates a new in a given
+ and with the specified operation timeout.
+
+ The to create the in.
+ The number of milliseconds to wait for an operation to complete, or -1 to wait indefinitely.
+
+ An .
+
+
+
+
+ Provides functionality to connect and interact with SSH server.
+
+
+
+
+ Gets or sets the connection info.
+
+ The connection info.
+
+
+
+ Gets a value indicating whether the session is connected.
+
+
+ true if the session is connected; otherwise, false.
+
+
+
+
+ Gets the session semaphore that controls session channels.
+
+
+ The session semaphore.
+
+
+
+
+ Gets a that can be used to wait for the message listener loop to complete.
+
+
+ A that can be used to wait for the message listener loop to complete, or
+ null when the session has not been connected.
+
+
+
+
+ Connects to the server.
+
+ Socket connection to the SSH server or proxy server could not be established, or an error occurred while resolving the hostname.
+ SSH session could not be established.
+ Authentication of SSH session failed.
+ Failed to establish proxy connection.
+
+
+
+ Create a new SSH session channel.
+
+
+ A new SSH session channel.
+
+
+
+
+ Create a new channel for a locally forwarded TCP/IP port.
+
+
+ A new channel for a locally forwarded TCP/IP port.
+
+
+
+
+ Creates a "forwarded-tcpip" SSH channel.
+
+
+ A new "forwarded-tcpip" SSH channel.
+
+
+
+
+ Disconnects from the server.
+
+
+ This sends a SSH_MSG_DISCONNECT message to the server, waits for the
+ server to close the socket on its end and subsequently closes the client socket.
+
+
+
+
+ Called when client is disconnecting from the server.
+
+
+
+
+ Registers SSH message with the session.
+
+ The name of the message to register with the session.
+
+
+
+ Sends a message to the server.
+
+ The message to send.
+ The client is not connected.
+ The operation timed out.
+ The size of the packet exceeds the maximum size defined by the protocol.
+
+
+
+ Sends a message to the server.
+
+ The message to send.
+
+ true if the message was sent to the server; otherwise, false.
+
+ The size of the packet exceeds the maximum size defined by the protocol.
+
+ This methods returns false when the attempt to send the message results in a
+ or a .
+
+
+
+
+ Unregister SSH message from the session.
+
+ The name of the message to unregister with the session.
+
+
+
+ Waits for the specified handle or the exception handle for the receive thread
+ to signal within the connection timeout.
+
+ The wait handle.
+ A received package was invalid or failed the message integrity check.
+ None of the handles are signaled in time and the session is not disconnecting.
+ A socket error was signaled while receiving messages from the server.
+
+ When neither handles are signaled in time and the session is not closing, then the
+ session is disconnected.
+
+
+
+
+ Waits for the specified handle or the exception handle for the receive thread
+ to signal within the specified timeout.
+
+ The wait handle.
+ The time to wait for any of the handles to become signaled.
+ A received package was invalid or failed the message integrity check.
+ None of the handles are signaled in time and the session is not disconnecting.
+ A socket error was signaled while receiving messages from the server.
+
+ When neither handles are signaled in time and the session is not closing, then the
+ session is disconnected.
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when session has been disconnected from the server.
+
+
+
+
+ Occurs when an error occurred.
+
+
+
+
+ Occurs when host key received.
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message is received from the server.
+
+
+
+
+ Base interface for SSH subsystem implementations.
+
+
+
+
+ Gets or set the number of seconds to wait for an operation to complete.
+
+
+ The number of seconds to wait for an operation to complete, or -1 to wait indefinitely.
+
+
+
+
+ Gets a value indicating whether this session is open.
+
+
+ true if this session is open; otherwise, false.
+
+
+
+
+ Connects the subsystem using a new SSH channel session.
+
+ The session is already connected.
+ The method was called after the session was disposed.
+
+
+
+ Disconnects the subsystem channel.
+
+
+
+
+ Waits a specified time for a given to get signaled.
+
+ The handle to wait for.
+ The number of millieseconds wait for to get signaled, or -1 to wait indefinitely.
+ The connection was closed by the server.
+ The channel was closed.
+ The handle did not get signaled within the specified timeout.
+
+
+
+ Blocks the current thread until the specified gets signaled, using a
+ 32-bit signed integer to specify the time interval in milliseconds.
+
+ The handle to wait for.
+ To number of milliseconds to wait for to get signaled, or -1 to wait indefinitely.
+
+ true if received a signal within the specified timeout;
+ otherwise, false.
+
+ The connection was closed by the server.
+ The channel was closed.
+
+ The blocking wait is also interrupted when either the established channel is closed, the current
+ session is disconnected or an unexpected occurred while processing a channel
+ or session event.
+
+
+
+
+ Blocks the current thread until the specified gets signaled, using a
+ 32-bit signed integer to specify the time interval in milliseconds.
+
+ The first handle to wait for.
+ The second handle to wait for.
+ To number of milliseconds to wait for a to get signaled, or -1 to wait indefinitely.
+
+ 0 if received a signal within the specified timeout and 1
+ if received a signal within the specified timeout, or
+ if no object satisfied the wait.
+
+ The connection was closed by the server.
+ The channel was closed.
+
+
+ The blocking wait is also interrupted when either the established channel is closed, the current
+ session is disconnected or an unexpected occurred while processing a channel
+ or session event.
+
+
+ When both and are signaled during the call,
+ then 0 is returned.
+
+
+
+
+
+ Waits for any of the elements in the specified array to receive a signal, using a 32-bit signed
+ integer to specify the time interval.
+
+ A array - constructed using - containing the objects to wait for.
+ To number of milliseconds to wait for a to get signaled, or -1 to wait indefinitely.
+
+ The array index of the first non-system object that satisfied the wait.
+
+ The connection was closed by the server.
+ The channel was closed.
+ No object satified the wait and a time interval equivalent to has passed.
+
+ For the return value, the index of the first non-system object is considered to be zero.
+
+
+
+
+ Creates a array that is composed of system objects and the specified
+ elements.
+
+ A array containing the objects to wait for.
+
+ A array that is composed of system objects and the specified elements.
+
+
+
+
+ Creates a array that is composed of system objects and the specified
+ elements.
+
+ The first to wait for.
+ The second to wait for.
+
+ A array that is composed of system objects and the specified elements.
+
+
+
+
+ Gets the address to bind to.
+
+
+
+
+ Gets port number to bind to.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Gets the address to bind to.
+
+
+
+
+ Gets port number to bind to.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_CHANNEL_CLOSE message.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The local channel number.
+
+
+
+ Represents SSH_MSG_CHANNEL_DATA message.
+
+
+
+
+ Gets or sets message data.
+
+
+ The data.
+
+
+ The actual data to read or write depends on the and .
+
+
+
+
+ Gets the zero-based offset in at which the data begins.
+
+
+ The zero-based offset in at which the data begins.
+
+
+
+
+ Gets the number of bytes of to read or write.
+
+
+ The number of bytes of to read or write.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The local channel number.
+ Message data.
+
+
+
+ Initializes a new instance of the class.
+
+ The local channel number.
+ The message data.
+ The zero-based byte offset in at which to begin reading or writing data from.
+ The number of bytes of to read or write.
+
+
+
+ Loads the data.
+
+
+
+
+ Saves the data.
+
+
+
+
+ Represents SSH_MSG_CHANNEL_EOF message.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The local channel number.
+
+
+
+ Represents SSH_MSG_CHANNEL_EXTENDED_DATA message.
+
+
+
+
+ Gets message data type code.
+
+
+
+
+ Gets message data.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The local channel number.
+ The message data type code.
+ The message data.
+
+
+
+ Loads the data.
+
+
+
+
+ Saves the data.
+
+
+
+
+ Represents SSH_MSG_CHANNEL_FAILURE message.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The local channel number.
+
+
+
+ Base class for all channel specific SSH messages.
+
+
+
+
+ Gets or sets the local channel number.
+
+
+ The local channel number.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new .
+
+
+
+
+ Initializes a new with the specified local channel number.
+
+ The local channel number.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Returns a that represents this instance.
+
+
+ A that represents this instance.
+
+
+
+
+ Represents SSH_MSG_CHANNEL_OPEN_CONFIRMATION message.
+
+
+
+
+ Gets the remote channel number.
+
+
+
+
+ Gets the initial size of the window.
+
+
+ The initial size of the window.
+
+
+
+
+ Gets the maximum size of the packet.
+
+
+ The maximum size of the packet.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The local channel number.
+ Initial size of the window.
+ Maximum size of the packet.
+ The remote channel number.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_CHANNEL_OPEN_FAILURE message.
+
+
+
+
+ Gets failure reason code.
+
+
+
+
+ Gets description for failure.
+
+
+
+
+ Gets message language.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The local channel number.
+ The description.
+ The reason code.
+
+
+
+ Initializes a new instance of the class.
+
+ The local channel number.
+ The description.
+ The reason code.
+ The language (RFC3066).
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ List channel open failure reasons defined by the protocol.
+
+
+
+
+ SSH_OPEN_ADMINISTRATIVELY_PROHIBITED
+
+
+
+
+ SSH_OPEN_CONNECT_FAILED
+
+
+
+
+ SSH_OPEN_UNKNOWN_CHANNEL_TYPE
+
+
+
+
+ SSH_OPEN_RESOURCE_SHORTAGE
+
+
+
+
+ Base class for open channel messages
+
+
+
+
+ Gets the type of the channel to open.
+
+
+ The type of the channel to open.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_CHANNEL_OPEN message.
+
+
+
+
+ Gets the type of the channel as ASCII encoded byte array.
+
+
+ The type of the channel.
+
+
+
+
+ Gets or sets the local channel number.
+
+
+ The local channel number.
+
+
+
+
+ Gets the initial size of the window.
+
+
+ The initial size of the window.
+
+
+
+
+ Gets the maximum size of the packet.
+
+
+ The maximum size of the packet.
+
+
+
+
+ Gets channel specific open information.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The channel number.
+ Initial size of the window.
+ Maximum size of the packet.
+ Information specific to the type of the channel to open.
+ is null.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Used to open "direct-tcpip" channel type
+
+
+
+
+ Specifies channel open type
+
+
+
+
+ Gets the type of the channel to open.
+
+
+ The type of the channel to open.
+
+
+
+
+ Gets the host to connect.
+
+
+
+
+ Gets the port to connect.
+
+
+
+
+ Gets the originator address.
+
+
+
+
+ Gets the originator port.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class from the
+ specified data.
+
+ is null.
+
+
+
+ Initializes a new instance of the class.
+
+ The host to connect.
+ The port to connect.
+ The originator address.
+ The originator port.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Used to open "forwarded-tcpip" channel type
+
+
+
+
+ Initializes a new instance of the class from the
+ specified data.
+
+ is null.
+
+
+
+ Initializes a new instance with the specified connector
+ address and port, and originator address and port.
+
+
+
+
+ Specifies channel open type
+
+
+
+
+ Gets the type of the channel to open.
+
+
+ The type of the channel to open.
+
+
+
+
+ Gets the connected address.
+
+
+
+
+ Gets the connected port.
+
+
+
+
+ Gets the originator address.
+
+
+
+
+ Gets the originator port.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Used to open "session" channel type
+
+
+
+
+ Specifies channel open type
+
+
+
+
+ Gets the type of the channel to open.
+
+
+ The type of the channel to open.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class from the
+ specified data.
+
+ is null.
+
+
+
+ Used to open "x11" channel type
+
+
+
+
+ Specifies channel open type
+
+
+
+
+ Gets the type of the channel to open.
+
+
+ The type of the channel to open.
+
+
+
+
+ Gets the originator address.
+
+
+
+
+ Gets the originator port.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class from the
+ specified data.
+
+ is null.
+
+
+
+ Initializes a new instance of the class with the
+ specified originator address and port.
+
+ The originator address.
+ The originator port.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents "break" type channel request information
+
+
+
+
+ Channel request name
+
+
+
+
+ Gets the name of the request.
+
+
+ The name of the request.
+
+
+
+
+ Gets break length in milliseconds.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Length of the break.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_CHANNEL_REQUEST message.
+
+
+
+
+ Gets the name of the request.
+
+
+ The name of the request.
+
+
+
+
+ Gets channel request data.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The local channel number.
+ The info.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents "eow@openssh.com" type channel request information
+
+
+
+
+ Channel request name
+
+
+
+
+ Gets the name of the request.
+
+
+ The name of the request.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Represents "env" type channel request information
+
+
+
+
+ Channel request name
+
+
+
+
+ Gets the name of the request.
+
+
+ The name of the request.
+
+
+
+
+ Gets or sets the name of the variable.
+
+
+ The name of the variable.
+
+
+
+
+ Gets or sets the variable value.
+
+
+ The variable value.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the variable.
+ The variable value.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents "exec" type channel request information
+
+
+
+
+ Channel request name
+
+
+
+
+ Gets the name of the request.
+
+
+ The name of the request.
+
+
+
+
+ Gets command to execute.
+
+
+ The command.
+
+
+
+
+ Gets the encoding.
+
+
+ The encoding.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The command.
+ The character encoding to use.
+ or is null.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents "exit-signal" type channel request information
+
+
+
+
+ Channel request name
+
+
+
+
+ Gets the name of the request.
+
+
+ The name of the request.
+
+
+
+
+ Gets the name of the signal.
+
+
+ The name of the signal.
+
+
+
+
+ Gets a value indicating whether core is dumped.
+
+
+ true if core is dumped; otherwise, false.
+
+
+
+
+ Gets the error message.
+
+
+
+
+ Gets message language.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the signal.
+ if set to true then core is dumped.
+ The error message.
+ The language.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents "exit-status" type channel request information
+
+
+
+
+ Channel request name.
+
+
+
+
+ Gets the name of the request.
+
+
+ The name of the request.
+
+
+
+
+ Gets the exit status number.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The exit status number.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents "keepalive@openssh.com" type channel request information
+
+
+
+
+ Channel request name
+
+
+
+
+ Gets the name of the request.
+
+
+ The name of the request.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Represents "pty-req" type channel request information
+
+
+
+
+ Channel request name
+
+
+
+
+ Gets the name of the request.
+
+
+ The name of the request.
+
+
+
+
+ Gets or sets the value of the TERM environment variable (e.g., vt100).
+
+
+ The value of the TERM environment variable.
+
+
+
+
+ Gets or sets the terminal width in columns (e.g., 80).
+
+
+ The terminal width in columns.
+
+
+
+
+ Gets or sets the terminal width in rows (e.g., 24).
+
+
+ The terminal width in rows.
+
+
+
+
+ Gets or sets the terminal width in pixels (e.g., 640).
+
+
+ The terminal width in pixels.
+
+
+
+
+ Gets or sets the terminal height in pixels (e.g., 480).
+
+
+ The terminal height in pixels.
+
+
+
+
+ Gets or sets the terminal mode.
+
+
+ The terminal mode.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ -1 to indicate that the size of the message cannot be determined,
+ or is too costly to calculate.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The TERM environment variable which a identifier for the text window’s capabilities.
+ The terminal width in columns.
+ The terminal width in rows.
+ The terminal height in pixels.
+ The terminal height in pixels.
+ The terminal mode values.
+
+
+ The TERM environment variable contains an identifier for the text window's capabilities.
+ You can get a detailed list of these cababilities by using the ‘infocmp’ command.
+
+
+ The column/row dimensions override the pixel dimensions(when nonzero). Pixel dimensions refer
+ to the drawable area of the window.
+
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents type specific information for channel request.
+
+
+
+
+ Gets the name of the request.
+
+
+ The name of the request.
+
+
+
+
+ Gets or sets a value indicating whether reply message is needed.
+
+
+ true if reply message is needed; otherwise, false.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents "shell" type channel request information
+
+
+
+
+ Channel request name
+
+
+
+
+ Gets the name of the request.
+
+
+ The name of the request.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Represents "signal" type channel request information
+
+
+
+
+ Channel request name.
+
+
+
+
+ Gets the name of the request.
+
+
+ The name of the request.
+
+
+
+
+ Gets the name of the signal.
+
+
+ The name of the signal.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the signal.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents "subsystem" type channel request information
+
+
+
+
+ Channel request name
+
+
+
+
+ Gets the name of the request.
+
+
+ The name of the request.
+
+
+
+
+ Gets the name of the subsystem.
+
+
+ The name of the subsystem.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The subsystem.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents "window-change" type channel request information
+
+
+
+
+ Channe request name
+
+
+
+
+ Gets the name of the request.
+
+
+ The name of the request.
+
+
+
+
+ Gets the columns.
+
+
+
+
+ Gets the rows.
+
+
+
+
+ Gets the width.
+
+
+
+
+ Gets the height.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The columns.
+ The rows.
+ The width.
+ The height.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents "x11-req" type channel request information
+
+
+
+
+ Channel request name
+
+
+
+
+ Gets the name of the request.
+
+
+ The name of the request.
+
+
+
+
+ Gets or sets a value indicating whether it is a single connection.
+
+
+ true if it is a single connection; otherwise, false.
+
+
+
+
+ Gets or sets the authentication protocol.
+
+
+ The authentication protocol.
+
+
+
+
+ Gets or sets the authentication cookie.
+
+
+ The authentication cookie.
+
+
+
+
+ Gets or sets the screen number.
+
+
+ The screen number.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ if set to true it is a single connection.
+ The protocol.
+ The cookie.
+ The screen number.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents "xon-xoff" type channel request information
+
+
+
+
+ Channel request type
+
+
+
+
+ Gets the name of the request.
+
+
+ The name of the request.
+
+
+
+
+ Gets or sets a value indicating whether client can do.
+
+
+ true if client can do; otherwise, false.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ if set to true [client can do].
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_CHANNEL_SUCCESS message.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The local channel number.
+
+
+
+ Represents SSH_MSG_CHANNEL_SUCCESS message.
+
+
+
+
+ Gets number of bytes to add to the window.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The local channel number.
+ The bytes to add.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_GLOBAL_REQUEST message.
+
+
+
+
+ Gets the name of the request.
+
+
+ The name of the request.
+
+
+
+
+ Gets a value indicating whether message reply should be sent..
+
+
+ true if message reply should be sent; otherwise, false.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the request.
+ if set to true [want reply].
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Specifies supported request names.
+
+
+
+
+ tcpip-forward
+
+
+
+
+ cancel-tcpip-forward
+
+
+
+
+ Represents SSH_MSG_REQUEST_FAILURE message.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_REQUEST_SUCCESS message.
+
+
+
+
+ Gets the bound port.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The bound port.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Indicates that message that implement this interface is allowed during key exchange phase
+
+
+
+
+ Represents SSH_MSG_DEBUG message.
+
+
+
+
+ Gets a value indicating whether the message to be always displayed.
+
+
+ true if the message always to be displayed; otherwise, false.
+
+
+
+
+ Gets debug message.
+
+
+
+
+ Gets message language.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_DISCONNECT message.
+
+
+
+
+ Gets disconnect reason code.
+
+
+
+
+ Gets disconnect description.
+
+
+
+
+ Gets message language.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The reason code.
+ The message.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Provides list of disconnect reason as specified by the protocol.
+
+
+
+
+ Disconnect reason is not provided.
+
+
+
+
+ SSH_DISCONNECT_HOST_NOT_ALLOWED_TO_CONNECT
+
+
+
+
+ SSH_DISCONNECT_PROTOCOL_ERROR
+
+
+
+
+ SSH_DISCONNECT_KEY_EXCHANGE_FAILED
+
+
+
+
+ SSH_DISCONNECT_RESERVED
+
+
+
+
+ SSH_DISCONNECT_MAC_ERROR
+
+
+
+
+ SSH_DISCONNECT_COMPRESSION_ERROR
+
+
+
+
+ SSH_DISCONNECT_SERVICE_NOT_AVAILABLE
+
+
+
+
+ SSH_DISCONNECT_PROTOCOL_VERSION_NOT_SUPPORTED
+
+
+
+
+ SSH_DISCONNECT_HOST_KEY_NOT_VERIFIABLE
+
+
+
+
+ SSH_DISCONNECT_CONNECTION_LOST
+
+
+
+
+ SSH_DISCONNECT_BY_APPLICATION
+
+
+
+
+ SSH_DISCONNECT_TOO_MANY_CONNECTIONS
+
+
+
+
+ SSH_DISCONNECT_AUTH_CANCELLED_BY_USER
+
+
+
+
+ SSH_DISCONNECT_NO_MORE_AUTH_METHODS_AVAILABLE
+
+
+
+
+ SSH_DISCONNECT_ILLEGAL_USER_NAME
+
+
+
+
+ Represents SSH_MSG_IGNORE message.
+
+
+
+
+ Gets ignore message data if any.
+
+
+
+
+ Initializes a new instance of the class
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The data.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_KEX_DH_GEX_GROUP message.
+
+
+
+
+ Gets or sets the safe prime.
+
+
+ The safe prime.
+
+
+
+
+ Gets or sets the generator for subgroup in GF(p).
+
+
+ The sub group.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_KEX_DH_GEX_INIT message.
+
+
+
+
+ Gets the E value.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The client exchange value.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_KEX_DH_GEX_REPLY message.
+
+
+
+
+ Gets server public host key and certificates
+
+ The host key.
+
+
+
+ Gets the F value.
+
+
+
+
+ Gets the signature of H.
+
+ The signature.
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_KEX_DH_GEX_REQUEST message.
+
+
+
+
+ Gets or sets the minimal size in bits of an acceptable group.
+
+
+ The minimum.
+
+
+
+
+ Gets or sets the preferred size in bits of the group the server will send.
+
+
+ The preferred.
+
+
+
+
+ Gets or sets the maximal size in bits of an acceptable group.
+
+
+ The maximum.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The minimum.
+ The preferred.
+ The maximum.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_KEXDH_INIT message.
+
+
+
+
+ Gets the E value.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The client exchange value.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_KEXDH_REPLY message.
+
+
+
+
+ Gets server public host key and certificates
+
+ The host key.
+
+
+
+ Gets the F value.
+
+
+
+
+ Gets the signature of H.
+
+ The signature.
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_KEXINIT message.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets session cookie.
+
+
+
+
+ Gets or sets supported key exchange algorithms.
+
+
+ Supported key exchange algorithms.
+
+
+
+
+ Gets or sets supported server host key algorithms.
+
+
+ Supported server host key algorithms.
+
+
+
+
+ Gets or sets supported encryption algorithms client to server.
+
+
+ Supported encryption algorithms client to server.
+
+
+
+
+ Gets or sets supported encryption algorithms server to client.
+
+
+ Supported encryption algorithms server to client.
+
+
+
+
+ Gets or sets supported hash algorithms client to server.
+
+
+ Supported hash algorithms client to server.
+
+
+
+
+ Gets or sets supported hash algorithms server to client.
+
+
+ Supported hash algorithms server to client.
+
+
+
+
+ Gets or sets supported compression algorithms client to server.
+
+
+ Supported compression algorithms client to server.
+
+
+
+
+ Gets or sets supported compression algorithms server to client.
+
+
+ Supported compression algorithms server to client.
+
+
+
+
+ Gets or sets supported languages client to server.
+
+
+ Supported languages client to server.
+
+
+
+
+ Gets or sets supported languages server to client.
+
+
+ The languages server to client.
+
+
+
+
+ Gets or sets a value indicating whether first key exchange packet follows.
+
+
+ true if first key exchange packet follows; otherwise, false.
+
+
+
+
+ Gets or sets the reserved value.
+
+
+ The reserved value.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ -1 to indicate that the size of the message cannot be determined,
+ or is too costly to calculate.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_NEWKEYS message.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_SERVICE_ACCEPT message.
+
+
+
+
+ Gets the name of the service.
+
+
+ The name of the service.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_SERVICE_REQUEST message.
+
+
+
+
+ Gets the name of the service.
+
+
+ The name of the service.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the service.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_UNIMPLEMENTED message.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_USERAUTH_BANNER message.
+
+
+
+
+ Gets banner message.
+
+
+
+
+ Gets banner language.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_USERAUTH_FAILURE message.
+
+
+
+
+ Gets or sets the allowed authentications if available.
+
+
+ The allowed authentications.
+
+
+
+
+ Gets failure message.
+
+
+
+
+ Gets a value indicating whether authentication is partially successful.
+
+
+ true if partially successful; otherwise, false.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_USERAUTH_INFO_REQUEST message.
+
+
+
+
+ Gets information request name.
+
+
+
+
+ Gets information request instruction.
+
+
+
+
+ Gets information request language.
+
+
+
+
+ Gets information request prompts.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_USERAUTH_INFO_RESPONSE message.
+
+
+
+
+ Gets authentication responses.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ -1 to indicate that the size of the message cannot be determined,
+ or is too costly to calculate.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_USERAUTH_PASSWD_CHANGEREQ message.
+
+
+
+
+ Gets password change request message as UTF-8 encoded byte array.
+
+
+
+
+ Gets message language as UTF-8 encoded byte array.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_USERAUTH_PK_OK message.
+
+
+
+
+ Gets the name of the public key algorithm as ASCII encoded byte array.
+
+
+ The name of the public key algorithm.
+
+
+
+
+ Gets the public key data.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_USERAUTH_REQUEST message. Server as a base message for other user authentication requests.
+
+
+
+
+ Returns the authentication message code for SSH_MSG_USERAUTH_REQUEST.
+
+
+
+
+ Gets authentication username as UTF-8 encoded byte array.
+
+
+
+
+ Gets the name of the service as ASCII encoded byte array.
+
+
+ The name of the service.
+
+
+
+
+ Gets the name of the authentication method.
+
+
+ The name of the method.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the service.
+ Authentication username.
+ The name of the authentication method.
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents "hostbased" SSH_MSG_USERAUTH_REQUEST message.
+
+
+
+
+ Gets the public key algorithm for host key as ASCII encoded byte array.
+
+
+
+
+ Gets or sets the public host key and certificates for client host.
+
+
+ The public host key.
+
+
+
+
+ Gets or sets the name of the client host as ASCII encoded byte array.
+
+
+ The name of the client host.
+
+
+
+
+ Gets or sets the client username on the client host as UTF-8 encoded byte array.
+
+
+ The client username.
+
+
+
+
+ Gets or sets the signature.
+
+
+ The signature.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the service.
+ Authentication username.
+ The public key algorithm.
+ The public host key.
+ Name of the client host.
+ The client username.
+ The signature.
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents "keyboard-interactive" SSH_MSG_USERAUTH_REQUEST message.
+
+
+
+
+ Gets message language.
+
+
+
+
+ Gets authentication sub methods.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the service.
+ Authentication username.
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents "none" SSH_MSG_USERAUTH_REQUEST message.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the service.
+ Authentication username.
+
+
+
+ Represents "password" SSH_MSG_USERAUTH_REQUEST message.
+
+
+
+
+ Gets authentication password.
+
+
+
+
+ Gets new authentication password.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the service.
+ Authentication username.
+ Authentication password.
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the service.
+ Authentication username.
+ Authentication password.
+ New authentication password.
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents "publickey" SSH_MSG_USERAUTH_REQUEST message.
+
+
+
+
+ Gets the name of the public key algorithm as ASCII encoded byte array.
+
+
+ The name of the public key algorithm.
+
+
+
+
+ Gets the public key data.
+
+
+
+
+ Gets or sets public key signature.
+
+
+ The signature.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the service.
+ Authentication username.
+ Name of private key algorithm.
+ Private key data.
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the service.
+ Authentication username.
+ Name of private key algorithm.
+ Private key data.
+ Private key signature.
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Represents SSH_MSG_USERAUTH_SUCCESS message.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Base class for all SSH protocol messages
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Writes the message to the specified .
+
+
+
+
+ Returns a that represents this instance.
+
+
+ A that represents this instance.
+
+
+
+
+ Process the current message for the specified .
+
+ The for which to process the current message.
+
+
+
+ Indicates that a class represents SSH message. This class cannot be inherited.
+
+
+
+
+ Gets or sets message name as defined in RFC 4250.
+
+
+ The name.
+
+
+
+
+ Gets or sets message number as defined in RFC 4250.
+
+
+ The number.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The name.
+ The number.
+
+
+
+ Specifies list of supported services
+
+
+
+
+ ssh-userauth
+
+
+
+
+ ssh-connection
+
+
+
+
+ Gets the NetConf server capabilities.
+
+
+ The NetConf server capabilities.
+
+
+
+
+ Gets the NetConf client capabilities.
+
+
+ The NetConf client capabilities.
+
+
+
+
+ Gets NetConf server capabilities.
+
+
+
+
+ Gets NetConf client capabilities.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The session.
+ The number of milliseconds to wait for an operation to complete, or -1 to wait indefinitely.
+
+
+
+ Encloses a path in double quotes, and escapes any embedded double quote with a backslash.
+
+
+
+
+ Encloses a path in double quotes, and escapes any embedded double quote with a backslash.
+
+ The path to transform.
+
+ The transformed path.
+
+ is null.
+
+
+
+ Original
+ Transformed
+
+ -
+ /var/log/auth.log
+ "/var/log/auth.log"
+
+ -
+ /var/mp3/Guns N' Roses
+ "/var/mp3/Guns N' Roses"
+
+ -
+ /var/garbage!/temp
+ "/var/garbage!/temp"
+
+ -
+ /var/would be 'kewl'!/not?
+ "/var/would be 'kewl'!, not?"
+
+ -
+
+ ""
+
+ -
+ Hello "World"
+ "Hello \"World"
+
+
+
+
+
+
+ Performs no transformation.
+
+
+
+
+ Returns the specified path without applying a transformation.
+
+ The path to transform.
+
+ The specified path as is.
+
+ is null.
+
+ This transformation is recommended for servers that do not require any quoting to preserve the
+ literal value of metacharacters, or when paths are guaranteed to never contain any such characters.
+
+
+
+
+ Quotes a path in a way to be suitable to be used with a shell-based server.
+
+
+
+
+ Quotes a path in a way to be suitable to be used with a shell-based server.
+
+ The path to transform.
+
+ A quoted path.
+
+ is null.
+
+
+ If contains a single-quote, that character is embedded
+ in quotation marks (eg. "'"). Sequences of single-quotes are grouped in a single
+ pair of quotation marks.
+
+
+ An exclamation mark in is escaped with a backslash. This is
+ necessary because C Shell interprets it as a meta-character for history substitution
+ even when enclosed in single quotes or quotation marks.
+
+
+ All other characters are enclosed in single quotes. Sequences of such characters are grouped
+ in a single pair of single quotes.
+
+
+ References:
+
+ -
+ Shell Command Language
+
+ -
+ Unix C-Shell special characters and their uses
+
+ -
+ Differences Between Bourne and C Shell Quoting
+
+
+
+
+
+
+
+ Original
+ Transformed
+
+ -
+ /var/log/auth.log
+ '/var/log/auth.log'
+
+ -
+ /var/mp3/Guns N' Roses
+ '/var/mp3/Guns N'"'"' Roses'
+
+ -
+ /var/garbage!/temp
+ '/var/garbage'\!'/temp'
+
+ -
+ /var/would be 'kewl'!, not?
+ '/var/would be '"'"'kewl'"'"\!', not?'
+
+ -
+
+ ''
+
+ -
+ Hello "World"
+ 'Hello "World"'
+
+
+
+
+
+
+ Provides access to built-in remote path transformations.
+
+
+ References:
+
+ -
+ Shell Command Language
+
+ -
+ Unix C-Shell special characters and their uses
+
+ -
+ Differences Between Bourne and C Shell Quoting
+
+ -
+ Everyone quotes command line arguments the wrong way
+
+
+
+
+
+
+ Quotes a path in a way to be suitable to be used with a shell-based server.
+
+
+ A quoted path.
+
+
+
+ If a path contains a single-quote, that character is embedded in quotation marks (eg. "'").
+ Sequences of single-quotes are grouped in a single pair of quotation marks.
+
+
+ An exclamation mark in a path is escaped with a backslash. This is necessary because C Shell
+ interprets it as a meta-character for history substitution even when enclosed in single quotes
+ or quotation marks.
+
+
+ All other characters are enclosed in single quotes. Sequences of such characters are grouped
+ in a single pair of single quotes.
+
+
+
+
+
+ Original
+ Transformed
+
+ -
+ /var/log/auth.log
+ '/var/log/auth.log'
+
+ -
+ /var/mp3/Guns N' Roses
+ '/var/mp3/Guns N'"'"' Roses'
+
+ -
+ /var/garbage!/temp
+ '/var/garbage'\!'/temp'
+
+ -
+ /var/would be 'kewl'!, not?
+ '/var/would be '"'"'kewl'"'"\!', not?'
+
+ -
+
+ ''
+
+ -
+ Hello "World"
+ 'Hello "World"'
+
+
+
+
+
+
+ Performs no transformation.
+
+
+ Recommended for servers that do not require any character to be escaped or enclosed in quotes,
+ or when paths are guaranteed to never contain any special characters (such as #, ", ', $, ...).
+
+
+
+
+ Encloses a path in double quotes, and escapes any embedded double quote with a backslash.
+
+
+ A transformation that encloses a path in double quotes, and escapes any embedded double quote with
+ a backslash.
+
+
+
+
+ Original
+ Transformed
+
+ -
+ /var/log/auth.log
+ "/var/log/auth.log"
+
+ -
+ /var/mp3/Guns N' Roses
+ "/var/mp3/Guns N' Roses"
+
+ -
+ /var/garbage!/temp
+ "/var/garbage!/temp"
+
+ -
+ /var/would be 'kewl'!, not?
+ "/var/would be 'kewl'!, not?"
+
+ -
+
+ ""
+
+ -
+ Hello "World"
+ "Hello \"World"
+
+
+
+
+
+
+ Computes a Hash-based Message Authentication Code (HMAC) by using the hash function.
+
+
+
+
+ Initializes a with the specified key.
+
+ The key.
+
+
+
+ Initializes a with the specified key and size of the computed hash code.
+
+ The key.
+ The size, in bits, of the computed hash code.
+
+
+
+ Gets the size, in bits, of the computed hash code.
+
+
+ The size, in bits, of the computed hash code.
+
+
+
+
+ Finalizes the hash computation after the last data is processed by the cryptographic stream object.
+
+
+ The computed hash code.
+
+
+
+
+ Computes a Hash-based Message Authentication Code (HMAC) by using the hash function.
+
+
+
+
+ Initializes a with the specified key.
+
+ The key.
+
+
+
+ Initializes a with the specified key and size of the computed hash code.
+
+ The key.
+ The size, in bits, of the computed hash code.
+
+
+
+ Gets the size, in bits, of the computed hash code.
+
+
+ The size, in bits, of the computed hash code.
+
+
+
+
+ Finalizes the hash computation after the last data is processed by the cryptographic stream object.
+
+
+ The computed hash code.
+
+
+
+
+ Computes a Hash-based Message Authentication Code (HMAC) by using the hash function.
+
+
+
+
+ Initializes a with the specified key.
+
+ The key.
+
+
+
+ Initializes a with the specified key and size of the computed hash code.
+
+ The key.
+ The size, in bits, of the computed hash code.
+
+
+
+ Gets the size, in bits, of the computed hash code.
+
+
+ The size, in bits, of the computed hash code.
+
+
+
+
+ Finalizes the hash computation after the last data is processed by the cryptographic stream object.
+
+
+ The computed hash code.
+
+
+
+
+ Computes a Hash-based Message Authentication Code (HMAC) by using the hash function.
+
+
+
+
+ Initializes a with the specified key.
+
+ The key.
+
+
+
+ Initializes a with the specified key and size of the computed hash code.
+
+ The key.
+ The size, in bits, of the computed hash code.
+
+
+
+ Gets the size, in bits, of the computed hash code.
+
+
+ The size, in bits, of the computed hash code.
+
+
+
+
+ Finalizes the hash computation after the last data is processed by the cryptographic stream object.
+
+
+ The computed hash code.
+
+
+
+
+ Computes a Hash-based Message Authentication Code (HMAC) by using the hash function.
+
+
+
+
+ Initializes a with the specified key.
+
+ The key.
+
+
+
+ Initializes a with the specified key and size of the computed hash code.
+
+ The key.
+ The size, in bits, of the computed hash code.
+
+
+
+ Gets the size, in bits, of the computed hash code.
+
+
+ The size, in bits, of the computed hash code.
+
+
+
+
+ Finalizes the hash computation after the last data is processed by the cryptographic stream object.
+
+
+ The computed hash code.
+
+
+
+
+ Base class for asymmetric cipher implementations.
+
+
+
+
+ Gets the minimum data size.
+
+
+ The minimum data size.
+
+
+
+
+ Base class for block cipher implementations.
+
+
+
+
+ Gets the size of the block in bytes.
+
+
+ The size of the block in bytes.
+
+
+
+
+ Gets the minimum data size.
+
+
+ The minimum data size.
+
+
+
+
+ Gets the size of the block.
+
+
+ The size of the block.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The key.
+ Size of the block.
+ Cipher mode.
+ Cipher padding.
+ is null.
+
+
+
+ Encrypts the specified data.
+
+ The data.
+ The zero-based offset in at which to begin encrypting.
+ The number of bytes to encrypt from .
+ Encrypted data
+
+
+
+ Decrypts the specified data.
+
+ The data.
+ Decrypted data
+
+
+
+ Decrypts the specified input.
+
+ The input.
+ The zero-based offset in at which to begin decrypting.
+ The number of bytes to decrypt from .
+
+ The decrypted data.
+
+
+
+
+ Base class for cipher implementation.
+
+
+
+
+ Gets the minimum data size.
+
+
+ The minimum data size.
+
+
+
+
+ Encrypts the specified input.
+
+ The input.
+ Encrypted data.
+
+
+
+ Encrypts the specified input.
+
+ The input.
+ The zero-based offset in at which to begin encrypting.
+ The number of bytes to encrypt from .
+
+ The encrypted data.
+
+
+
+
+ Decrypts the specified input.
+
+ The input.
+
+ The decrypted data.
+
+
+
+
+ Decrypts the specified input.
+
+ The input.
+ The zero-based offset in at which to begin decrypting.
+ The number of bytes to decrypt from .
+
+ The decrypted data.
+
+
+
+
+ Implements digital signature where where asymmetric cipher is used,
+
+
+
+
+ Initializes a new instance of the class.
+
+ The object identifier.
+ The cipher.
+
+
+
+ Verifies the signature.
+
+ The input.
+ The signature.
+
+ True if signature was successfully verified; otherwise false.
+
+
+
+
+ Creates the signature.
+
+ The input.
+
+ Signed input data.
+
+
+
+
+ Hashes the specified input.
+
+ The input.
+ Hashed data.
+
+
+
+ Encodes hash using DER.
+
+ The hash data.
+ DER Encoded byte array
+
+
+
+ AES cipher implementation.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The key.
+ The mode.
+ The padding.
+ is null.
+ Keysize is not valid for this algorithm.
+
+
+
+ Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array.
+
+ The input data to encrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write encrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes encrypted.
+
+ or is null.
+ or is too short.
+
+
+
+ Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array.
+
+ The input data to decrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write decrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes decrypted.
+
+ or is null.
+ or is too short.
+
+
+
+ Implements ARCH4 cipher algorithm
+
+
+
+
+ Holds the state of the RC4 engine
+
+
+
+
+ Gets the minimum data size.
+
+
+ The minimum data size.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The key.
+ if set to true will disharged first 1536 bytes.
+ is null.
+
+
+
+ Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array.
+
+ The input data to encrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write encrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes encrypted.
+
+
+
+
+ Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array.
+
+ The input data to decrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write decrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes decrypted.
+
+
+
+
+ Encrypts the specified input.
+
+ The input.
+ The zero-based offset in at which to begin encrypting.
+ The number of bytes to encrypt from .
+
+ Encrypted data.
+
+
+
+
+ Decrypts the specified input.
+
+ The input.
+
+ The decrypted data.
+
+
+
+
+ Decrypts the specified input.
+
+ The input.
+ The zero-based offset in at which to begin decrypting.
+ The number of bytes to decrypt from .
+
+ The decrypted data.
+
+
+
+
+ Blowfish cipher implementation.
+
+
+
+
+ The s-boxes
+
+
+
+
+ The s-boxes
+
+
+
+
+ The s-boxes
+
+
+
+
+ The s-boxes
+
+
+
+
+ The p-array
+
+
+
+
+ Initializes a new instance of the class.
+
+ The key.
+ The mode.
+ The padding.
+ is null.
+ Keysize is not valid for this algorithm.
+
+
+
+ Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array.
+
+ The input data to encrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write encrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes encrypted.
+
+
+
+
+ Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array.
+
+ The input data to decrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write decrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes decrypted.
+
+
+
+
+ apply the encryption cycle to each value pair in the table.
+
+ The xl.
+ The xr.
+ The table.
+
+
+
+ Implements CAST cipher algorithm
+
+
+
+
+ The rotating round key
+
+
+
+
+ The masking round key
+
+
+
+
+ Initializes a new instance of the class.
+
+ The key.
+ The mode.
+ The padding.
+ is null.
+ Keysize is not valid for this algorithm.
+
+
+
+ Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array.
+
+ The input data to encrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write encrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes encrypted.
+
+
+
+
+ Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array.
+
+ The input data to decrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write decrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes decrypted.
+
+
+
+
+ Sets the subkeys using the same nomenclatureas described in RFC2144.
+
+ The key.
+
+
+
+ The first of the three processing functions for the encryption and decryption.
+
+ The input to be processed.
+ The mask to be used from Km[n].
+ The rotation value to be used.
+
+
+
+
+ The second of the three processing functions for the encryption and decryption.
+
+ The input to be processed.
+ The mask to be used from Km[n].
+ The rotation value to be used.
+
+
+
+
+ The third of the three processing functions for the encryption and decryption.
+
+ The input to be processed.
+ The mask to be used from Km[n].
+ The rotation value to be used.
+
+
+
+
+ Does the 16 rounds to encrypt the block.
+
+ The LH-32bits of the plaintext block.
+ The RH-32bits of the plaintext block.
+ The result.
+
+
+
+ Base class for cipher mode implementations
+
+
+
+
+ Gets the cipher.
+
+
+
+
+ Gets the IV vector.
+
+
+
+
+ Holds block size of the cipher.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The iv.
+
+
+
+ Initializes the specified cipher mode.
+
+ The cipher.
+
+
+
+ Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array.
+
+ The input data to encrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write encrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes encrypted.
+
+
+
+
+ Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array.
+
+ The input data to decrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write decrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes decrypted.
+
+
+
+
+ Base class for cipher padding implementations
+
+
+
+
+ Pads the specified input to match the block size.
+
+ Size of the block.
+ The input.
+
+ Padded data array.
+
+
+
+
+ Pads the specified input to match the block size.
+
+ Size of the block.
+ The input.
+ The zero-based offset in at which the data to pad starts.
+ The number of bytes in to take into account.
+
+ The padded data array.
+
+
+
+
+ Pads the specified input with a given number of bytes.
+
+ The input.
+ The number of bytes to pad the input with.
+
+ The padded data array.
+
+
+
+
+ Pads the specified input with a given number of bytes.
+
+ The input.
+ The zero-based offset in at which the data to pad starts.
+ The number of bytes in to take into account.
+ The number of bytes to pad the input with.
+
+ The padded data array.
+
+
+
+
+ Implements DES cipher algorithm.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The key.
+ The mode.
+ The padding.
+ is null.
+
+
+
+ Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array.
+
+ The input data to encrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write encrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes encrypted.
+
+
+
+
+ Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array.
+
+ The input data to decrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write decrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes decrypted.
+
+
+
+
+ Generates the working key.
+
+ if set to true [encrypting].
+ The key.
+ Generated working key.
+
+
+
+ Validates the key.
+
+
+
+
+ Performs DES function.
+
+ The w key.
+ The input.
+ The in off.
+ The out bytes.
+ The out off.
+
+
+
+ Implements CBC cipher mode
+
+
+
+
+ Initializes a new instance of the class.
+
+ The iv.
+
+
+
+ Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array.
+
+ The input data to encrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write encrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes encrypted.
+
+
+
+
+ Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array.
+
+ The input data to decrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write decrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes decrypted.
+
+
+
+
+ Implements CFB cipher mode
+
+
+
+
+ Initializes a new instance of the class.
+
+ The iv.
+
+
+
+ Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array.
+
+ The input data to encrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write encrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes encrypted.
+
+
+
+
+ Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array.
+
+ The input data to decrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write decrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes decrypted.
+
+
+
+
+ Implements CTR cipher mode
+
+
+
+
+ Initializes a new instance of the class.
+
+ The iv.
+
+
+
+ Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array.
+
+ The input data to encrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write encrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes encrypted.
+
+
+
+
+ Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array.
+
+ The input data to decrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write decrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes decrypted.
+
+
+
+
+ Implements OFB cipher mode
+
+
+
+
+ Initializes a new instance of the class.
+
+ The iv.
+
+
+
+ Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array.
+
+ The input data to encrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write encrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes encrypted.
+
+
+
+
+ Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array.
+
+ The input data to decrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write decrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes decrypted.
+
+
+
+
+ Implements PKCS5 cipher padding
+
+
+
+
+ Pads the specified input to match the block size.
+
+ The size of the block.
+ The input.
+ The zero-based offset in at which the data to pad starts.
+ The number of bytes in to take into account.
+
+ The padded data array.
+
+
+
+
+ Pads the specified input with a given number of bytes.
+
+ The input.
+ The zero-based offset in at which the data to pad starts.
+ The number of bytes in to take into account.
+ The number of bytes to pad the input with.
+
+ The padded data array.
+
+
+
+
+ Implements PKCS7 cipher padding
+
+
+
+
+ Pads the specified input to match the block size.
+
+ The size of the block.
+ The input.
+ The zero-based offset in at which the data to pad starts.
+ The number of bytes in to take into account.
+
+ The padded data array.
+
+
+
+
+ Pads the specified input with a given number of bytes.
+
+ The input.
+ The zero-based offset in at which the data to pad starts.
+ The number of bytes in to take into account.
+ The number of bytes to pad the input with.
+
+ The padded data array.
+
+
+
+
+ Implements RSA cipher algorithm.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The RSA key.
+
+
+
+ Encrypts the specified data.
+
+ The data.
+ The zero-based offset in at which to begin encrypting.
+ The number of bytes to encrypt from .
+ Encrypted data.
+
+
+
+ Decrypts the specified data.
+
+ The data.
+
+ The decrypted data.
+
+ Only block type 01 or 02 are supported.
+ Thrown when decrypted block type is not supported.
+
+
+
+ Decrypts the specified input.
+
+ The input.
+ The zero-based offset in at which to begin decrypting.
+ The number of bytes to decrypt from .
+
+ The decrypted data.
+
+ Only block type 01 or 02 are supported.
+ Thrown when decrypted block type is not supported.
+
+
+
+ Implements Serpent cipher algorithm.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The key.
+ The mode.
+ The padding.
+ is null.
+ Keysize is not valid for this algorithm.
+
+
+
+ Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array.
+
+ The input data to encrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write encrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes encrypted.
+
+
+
+
+ Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array.
+
+ The input data to decrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write decrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes decrypted.
+
+
+
+
+ Expand a user-supplied key material into a session key.
+
+ The user-key bytes to use.
+
+ A session key.
+
+ is not multiple of 4 bytes.
+
+
+
+ S0 - { 3, 8,15, 1,10, 6, 5,11,14,13, 4, 2, 7, 0, 9,12 } - 15 terms.
+
+ A.
+ The b.
+ The c.
+ The d.
+
+
+
+ InvSO - {13, 3,11, 0,10, 6, 5,12, 1,14, 4, 7,15, 9, 8, 2 } - 15 terms.
+
+ A.
+ The b.
+ The c.
+ The d.
+
+
+
+ S1 - {15,12, 2, 7, 9, 0, 5,10, 1,11,14, 8, 6,13, 3, 4 } - 14 terms.
+
+ A.
+ The b.
+ The c.
+ The d.
+
+
+
+ InvS1 - { 5, 8, 2,14,15, 6,12, 3,11, 4, 7, 9, 1,13,10, 0 } - 14 steps.
+
+ A.
+ The b.
+ The c.
+ The d.
+
+
+
+ S2 - { 8, 6, 7, 9, 3,12,10,15,13, 1,14, 4, 0,11, 5, 2 } - 16 terms.
+
+ A.
+ The b.
+ The c.
+ The d.
+
+
+
+ InvS2 - {12, 9,15, 4,11,14, 1, 2, 0, 3, 6,13, 5, 8,10, 7 } - 16 steps.
+
+ A.
+ The b.
+ The c.
+ The d.
+
+
+
+ S3 - { 0,15,11, 8,12, 9, 6, 3,13, 1, 2, 4,10, 7, 5,14 } - 16 terms.
+
+ A.
+ The b.
+ The c.
+ The d.
+
+
+
+ InvS3 - { 0, 9,10, 7,11,14, 6,13, 3, 5,12, 2, 4, 8,15, 1 } - 15 terms
+
+ A.
+ The b.
+ The c.
+ The d.
+
+
+
+ S4 - { 1,15, 8, 3,12, 0,11, 6, 2, 5, 4,10, 9,14, 7,13 } - 15 terms.
+
+ A.
+ The b.
+ The c.
+ The d.
+
+
+
+ InvS4 - { 5, 0, 8, 3,10, 9, 7,14, 2,12,11, 6, 4,15,13, 1 } - 15 terms.
+
+ A.
+ The b.
+ The c.
+ The d.
+
+
+
+ S5 - {15, 5, 2,11, 4,10, 9,12, 0, 3,14, 8,13, 6, 7, 1 } - 16 terms.
+
+ A.
+ The b.
+ The c.
+ The d.
+
+
+
+ InvS5 - { 8,15, 2, 9, 4, 1,13,14,11, 6, 5, 3, 7,12,10, 0 } - 16 terms.
+
+ A.
+ The b.
+ The c.
+ The d.
+
+
+
+ S6 - { 7, 2,12, 5, 8, 4, 6,11,14, 9, 1,15,13, 3,10, 0 } - 15 terms.
+
+ A.
+ The b.
+ The c.
+ The d.
+
+
+
+ InvS6 - {15,10, 1,13, 5, 3, 6, 0, 4, 9,14, 7, 2,12, 8,11 } - 15 terms.
+
+ A.
+ The b.
+ The c.
+ The d.
+
+
+
+ S7 - { 1,13,15, 0,14, 8, 2,11, 7, 4,12,10, 9, 3, 5, 6 } - 16 terms.
+
+ A.
+ The b.
+ The c.
+ The d.
+
+
+
+ InvS7 - { 3, 0, 6,13, 9,14,15, 8, 5,12,11, 7,10, 1, 4, 2 } - 17 terms.
+
+ A.
+ The b.
+ The c.
+ The d.
+
+
+
+ Apply the linear transformation to the register set.
+
+
+
+
+ Apply the inverse of the linear transformation to the register set.
+
+
+
+
+ Implements 3DES cipher algorithm.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The key.
+ The mode.
+ The padding.
+ is null.
+
+
+
+ Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array.
+
+ The input data to encrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write encrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes encrypted.
+
+
+
+
+ Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array.
+
+ The input data to decrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write decrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes decrypted.
+
+
+
+
+ Validates the key.
+
+
+
+
+ Implements Twofish cipher algorithm
+
+
+
+
+ Initializes a new instance of the class.
+
+ The key.
+ The mode.
+ The padding.
+ is null.
+ Keysize is not valid for this algorithm.
+
+
+
+ Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array.
+
+ The input data to encrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write encrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes encrypted.
+
+
+
+
+ Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array.
+
+ The input data to decrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write decrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes decrypted.
+
+
+
+ Define the fixed p0/p1 permutations used in keyed S-box lookup.
+ By changing the following constant definitions, the S-boxes will
+ automatically Get changed in the Twofish engine.
+
+
+ gSubKeys[] and gSBox[] are eventually used in the
+ encryption and decryption methods.
+
+
+ Use (12, 8) Reed-Solomon code over GF(256) to produce
+ a key S-box 32-bit entity from 2 key material 32-bit
+ entities.
+
+ @param k0 first 32-bit entity
+ @param k1 second 32-bit entity
+ @return Remainder polynomial Generated using RS code
+
+
+ Reed-Solomon code parameters: (12,8) reversible code:
+
+
+ G(x) = x^4 + (a+1/a)x^3 + ax^2 + (a+1/a)x + 1
+
+ where a = primitive root of field generator 0x14D
+
+
+
+
+ Base class for signature implementations
+
+
+
+
+ Verifies the signature.
+
+ The input.
+ The signature.
+ True if signature was successfully verified; otherwise false.
+
+
+
+ Creates the signature.
+
+ The input.
+ Signed input data.
+
+
+
+ Implements DSA digital signature algorithm.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The DSA key.
+ is null.
+
+
+
+ Verifies the signature.
+
+ The input.
+ The signature.
+
+ true if signature was successfully verified; otherwise false.
+
+ Invalid signature.
+
+
+
+ Creates the signature.
+
+ The input.
+
+ Signed input data.
+
+ Invalid DSA key.
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Implements RSA digital signature algorithm.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The RSA key.
+
+
+
+ Hashes the specified input.
+
+ The input.
+
+ Hashed data.
+
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Base class of stream cipher algorithms.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The key.
+ is null.
+
+
+
+ Base class for symmetric cipher implementations.
+
+
+
+
+ Gets the key.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The key.
+ is null.
+
+
+
+ Encrypts the specified region of the input byte array and copies the encrypted data to the specified region of the output byte array.
+
+ The input data to encrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write encrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes encrypted.
+
+
+
+
+ Decrypts the specified region of the input byte array and copies the decrypted data to the specified region of the output byte array.
+
+ The input data to decrypt.
+ The offset into the input byte array from which to begin using data.
+ The number of bytes in the input byte array to use as data.
+ The output to which to write decrypted data.
+ The offset into the output byte array from which to begin writing data.
+
+ The number of bytes decrypted.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Represents a key exchange algorithm.
+
+
+
+
+ Occurs when the host key is received.
+
+
+
+
+ Gets the name of the algorithm.
+
+
+ The name of the algorithm.
+
+
+
+
+ Gets the exchange hash.
+
+
+ The exchange hash.
+
+
+
+
+ Starts the key exchange algorithm.
+
+ The session.
+ Key exchange init message.
+
+
+
+ Finishes the key exchange algorithm.
+
+
+
+
+ Creates the client-side cipher to use.
+
+
+ The client cipher.
+
+
+
+
+ Creates the server-side cipher to use.
+
+
+ The server cipher.
+
+
+
+
+ Creates the server-side hash algorithm to use.
+
+
+ The server hash algorithm.
+
+
+
+
+ Creates the client-side hash algorithm to use.
+
+
+ The client hash algorithm.
+
+
+
+
+ Creates the compression algorithm to use to deflate data.
+
+
+ The compression method to deflate data.
+
+
+
+
+ Creates the compression algorithm to use to inflate data.
+
+
+ The compression method to inflate data.
+
+
+
+
+ Base class for "diffie-hellman-group-exchange" algorithms.
+
+
+
+
+ Calculates key exchange hash value.
+
+
+ Key exchange hash.
+
+
+
+
+ Starts key exchange algorithm
+
+ The session.
+ Key exchange init message.
+
+
+
+ Finishes key exchange algorithm.
+
+
+
+
+ Represents "diffie-hellman-group1-sha1" algorithm implementation.
+
+
+
+
+ Gets the group prime.
+
+
+ The group prime.
+
+
+
+
+ Gets the size, in bits, of the computed hash code.
+
+
+ The size, in bits, of the computed hash code.
+
+
+
+
+ Calculates key exchange hash value.
+
+
+ Key exchange hash.
+
+
+
+
+ Starts key exchange algorithm
+
+ The session.
+ Key exchange init message.
+
+
+
+ Finishes key exchange algorithm.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Represents the abstract base class from which all implementations of algorithms must inherit.
+
+
+
+
+ Gets algorithm name.
+
+
+
+
+ Implements certificate support for host algorithm.
+
+
+
+
+ Gets the host key data.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The host key name.
+
+
+
+ Signs the specified data.
+
+ The data.
+ Signed data.
+
+
+
+
+ Verifies the signature.
+
+ The data.
+ The signature.
+ true if signature was successfully verified; otherwise false.
+
+
+
+
+ Contains DSA private and public key
+
+
+
+
+ Gets the P.
+
+
+
+
+ Gets the Q.
+
+
+
+
+ Gets the G.
+
+
+
+
+ Gets public key Y.
+
+
+
+
+ Gets private key X.
+
+
+
+
+ Gets the length of the key.
+
+
+ The length of the key.
+
+
+
+
+ Gets the digital signature.
+
+
+
+
+ Gets or sets the public.
+
+
+ The public.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ DER encoded private key data.
+
+
+
+ Initializes a new instance of the class.
+
+ The p.
+ The q.
+ The g.
+ The y.
+ The x.
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Base class for asymmetric cipher algorithms
+
+
+
+
+ Specifies array of big integers that represent private key
+
+
+
+
+ Gets the key specific digital signature.
+
+
+
+
+ Gets or sets the public key.
+
+
+ The public.
+
+
+
+
+ Gets the length of the key.
+
+
+ The length of the key.
+
+
+
+
+ Initializes a new instance of the class.
+
+ DER encoded private key data.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Signs the specified data with the key.
+
+ The data to sign.
+
+ Signed data.
+
+
+
+
+ Verifies the signature.
+
+ The data to verify.
+ The signature to verify against.
+ True is signature was successfully verifies; otherwise false.
+
+
+
+ Contains RSA private and public key
+
+
+
+
+ Gets the modulus.
+
+
+
+
+ Gets the exponent.
+
+
+
+
+ Gets the D.
+
+
+
+
+ Gets the P.
+
+
+
+
+ Gets the Q.
+
+
+
+
+ Gets the DP.
+
+
+
+
+ Gets the DQ.
+
+
+
+
+ Gets the inverse Q.
+
+
+
+
+ Gets the length of the key.
+
+
+ The length of the key.
+
+
+
+
+ Gets the digital signature.
+
+
+
+
+ Gets or sets the public.
+
+
+ The public.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ DER encoded private key data.
+
+
+
+ Initializes a new instance of the class.
+
+ The modulus.
+ The exponent.
+ The d.
+ The p.
+ The q.
+ The inverse Q.
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Base class for SSH host algorithms.
+
+
+
+
+ Gets the host key name.
+
+
+
+
+ Gets the host key data.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The host key name.
+
+
+
+ Signs the specified data.
+
+ The data.
+ Signed data.
+
+
+
+ Verifies the signature.
+
+ The data.
+ The signature.
+ True is signature was successfully verifies; otherwise false.
+
+
+
+ Represents base class for different key exchange algorithm implementations
+
+
+
+
+ Gets or sets the session.
+
+
+ The session.
+
+
+
+
+ Gets or sets key exchange shared key.
+
+
+ The shared key.
+
+
+
+
+ Gets the exchange hash.
+
+ The exchange hash.
+
+
+
+ Occurs when host key received.
+
+
+
+
+ Starts key exchange algorithm
+
+ The session.
+ Key exchange init message.
+
+
+
+ Finishes key exchange algorithm.
+
+
+
+
+ Creates the server side cipher to use.
+
+ Server cipher.
+
+
+
+ Creates the client side cipher to use.
+
+ Client cipher.
+
+
+
+ Creates the server side hash algorithm to use.
+
+ Hash algorithm
+
+
+
+ Creates the client side hash algorithm to use.
+
+ Hash algorithm
+
+
+
+ Creates the compression algorithm to use to deflate data.
+
+ Compression method.
+
+
+
+ Creates the compression algorithm to use to inflate data.
+
+ Compression method.
+
+
+
+ Determines whether the specified host key can be trusted.
+
+ The host algorithm.
+
+ true if the specified host can be trusted; otherwise, false.
+
+
+
+
+ Validates the exchange hash.
+
+ true if exchange hash is valid; otherwise false.
+
+
+
+ Calculates key exchange hash value.
+
+ Key exchange hash.
+
+
+
+ Hashes the specified data bytes.
+
+ The hash data.
+
+ Hashed bytes
+
+
+
+
+ Sends SSH message to the server
+
+ The message.
+
+
+
+ Generates the session key.
+
+ The shared key.
+ The exchange hash.
+ The key.
+ The size.
+
+
+
+
+ Generates the session key.
+
+ The shared key.
+ The exchange hash.
+ The p.
+ The session id.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Represents base class for Diffie Hellman key exchange algorithm
+
+
+
+
+ Specifies key exchange group number.
+
+
+
+
+ Specifies key exchange prime number.
+
+
+
+
+ Specifies client payload
+
+
+
+
+ Specifies server payload
+
+
+
+
+ Specifies client exchange number.
+
+
+
+
+ Specifies server exchange number.
+
+
+
+
+ Specifies random generated number.
+
+
+
+
+ Specifies host key data.
+
+
+
+
+ Specifies signature data.
+
+
+
+
+ Gets the size, in bits, of the computed hash code.
+
+
+ The size, in bits, of the computed hash code.
+
+
+
+
+ Validates the exchange hash.
+
+
+ true if exchange hash is valid; otherwise false.
+
+
+
+
+ Starts key exchange algorithm
+
+ The session.
+ Key exchange init message.
+
+
+
+ Populates the client exchange value.
+
+
+
+
+ Handles the server DH reply message.
+
+ The host key.
+ The server exchange value.
+ The signature.
+
+
+
+ Represents "diffie-hellman-group14-sha1" algorithm implementation.
+
+
+
+
+ https://tools.ietf.org/html/rfc2409#section-6.2
+
+
+
+
+ Gets algorithm name.
+
+
+
+
+ Gets the group prime.
+
+
+ The group prime.
+
+
+
+
+ Represents "diffie-hellman-group1-sha1" algorithm implementation.
+
+
+
+
+ Gets algorithm name.
+
+
+
+
+ Gets the group prime.
+
+
+ The group prime.
+
+
+
+
+ Represents "diffie-hellman-group-exchange-sha1" algorithm implementation.
+
+
+
+
+ Gets algorithm name.
+
+
+
+
+ Gets the size, in bits, of the computed hash code.
+
+
+ The size, in bits, of the computed hash code.
+
+
+
+
+ Represents "diffie-hellman-group-exchange-sha256" algorithm implementation.
+
+
+
+
+ Gets algorithm name.
+
+
+
+
+ Gets the size, in bits, of the computed hash code.
+
+
+ The size, in bits, of the computed hash code.
+
+
+
+
+ Hashes the specified data bytes.
+
+ Data to hash.
+
+ Hashed bytes
+
+
+
+
+ Implements key support for host algorithm.
+
+
+
+
+ Gets the key.
+
+
+
+
+ Gets the public key data.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Host key name.
+ Host key.
+
+
+
+ Initializes a new instance of the class.
+
+ Host key name.
+ Host key.
+ Host key encoded data.
+
+
+
+ Signs the specified data.
+
+ The data.
+
+ Signed data.
+
+
+
+
+ Verifies the signature.
+
+ The data.
+ The signature.
+
+ True is signature was successfully verifies; otherwise false.
+
+
+
+
+ Gets or sets the name of the algorithm as UTF-8 encoded byte array.
+
+
+ The name of the algorithm.
+
+
+
+
+ Gets or sets the signature.
+
+
+ The signature.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Called when type specific data need to be loaded.
+
+
+
+
+ Called when type specific data need to be saved.
+
+
+
+
+ Basic factory for creating new services.
+
+
+
+
+ Defines the number of times an authentication attempt with any given
+ can result in before it is disregarded.
+
+
+
+
+ Creates a .
+
+
+ A .
+
+
+
+
+ Creates a new with the specified .
+
+ The to use for creating a new session.
+
+ An for the specified .
+
+ is null.
+
+
+
+ Creates a new in a given and with
+ the specified operation timeout and encoding.
+
+ The to create the in.
+ The number of milliseconds to wait for an operation to complete, or -1 to wait indefinitely.
+ The encoding.
+ The factory to use for creating SFTP messages.
+
+ An .
+
+
+
+
+ Create a new .
+
+
+ A .
+
+
+
+
+ Negotiates a key exchange algorithm, and creates a for the negotiated
+ algorithm.
+
+ A of the key exchange algorithms supported by the client where key is the name of the algorithm, and value is the type implementing this algorithm.
+ The names of the key exchange algorithms supported by the SSH server.
+
+ A that was negotiated between client and server.
+
+ is null.
+ is null.
+ No key exchange algorithms are supported by both client and server.
+
+
+
+ Creates a shell stream.
+
+ The SSH session.
+ The TERM environment variable.
+ The terminal width in columns.
+ The terminal width in rows.
+ The terminal height in pixels.
+ The terminal height in pixels.
+ The terminal mode values.
+ The size of the buffer.
+
+ The created instance.
+
+ Client is not connected.
+
+
+ The TERM environment variable contains an identifier for the text window's capabilities.
+ You can get a detailed list of these cababilities by using the ‘infocmp’ command.
+
+
+ The column/row dimensions override the pixel dimensions(when non-zero). Pixel dimensions refer
+ to the drawable area of the window.
+
+
+
+
+
+ Creates an that encloses a path in double quotes, and escapes
+ any embedded double quote with a backslash.
+
+
+ An that encloses a path in double quotes, and escapes any
+ embedded double quote with a backslash.
+ with a shell.
+
+
+
+
+ Creates a new in a given
+ and with the specified operation timeout.
+
+ The to create the in.
+ The number of milliseconds to wait for an operation to complete, or -1 to wait indefinitely.
+
+ An .
+
+
+
+
+ Gets the SFTP protocol version.
+
+
+ The SFTP protocol version.
+
+
+
+
+ Gets the remote working directory.
+
+
+ The remote working directory.
+
+
+
+
+ Changes the current working directory to the specified path.
+
+ The new working directory.
+
+
+
+ Resolves a given path into an absolute path on the server.
+
+ The path to resolve.
+
+ The absolute path.
+
+
+
+
+ Performs SSH_FXP_FSTAT request.
+
+ The handle.
+ if set to true returns null instead of throwing an exception.
+
+ File attributes
+
+
+
+
+ Performs SSH_FXP_STAT request.
+
+ The path.
+ if set to true returns null instead of throwing an exception.
+
+ File attributes
+
+
+
+
+ Performs SSH_FXP_STAT request
+
+ The path.
+ The delegate that is executed when completes.
+ An object that contains any additional user-defined data.
+
+ A that represents the asynchronous call.
+
+
+
+
+ Handles the end of an asynchronous read.
+
+ An that represents an asynchronous call.
+
+ The file attributes.
+
+ is null.
+
+
+
+ Performs SSH_FXP_LSTAT request.
+
+ The path.
+
+ File attributes
+
+
+
+
+ Performs SSH_FXP_LSTAT request.
+
+ The path.
+ The delegate that is executed when completes.
+ An object that contains any additional user-defined data.
+
+ A that represents the asynchronous call.
+
+
+
+
+ Handles the end of an asynchronous SSH_FXP_LSTAT request.
+
+ An that represents an asynchronous call.
+
+ The file attributes.
+
+ is null.
+
+
+
+ Performs SSH_FXP_MKDIR request.
+
+ The path.
+
+
+
+ Performs SSH_FXP_OPEN request
+
+ The path.
+ The flags.
+ if set to true returns null instead of throwing an exception.
+ File handle.
+
+
+
+ Performs SSH_FXP_OPEN request
+
+ The path.
+ The flags.
+ The delegate that is executed when completes.
+ An object that contains any additional user-defined data.
+
+ A that represents the asynchronous call.
+
+
+
+
+ Handles the end of an asynchronous read.
+
+ An that represents an asynchronous call.
+
+ A array representing a file handle.
+
+
+ If all available data has been read, the method completes
+ immediately and returns zero bytes.
+
+ is null.
+
+
+
+ Performs SSH_FXP_OPENDIR request
+
+ The path.
+ if set to true returns null instead of throwing an exception.
+ File handle.
+
+
+
+ Performs posix-rename@openssh.com extended request.
+
+ The old path.
+ The new path.
+
+
+
+ Performs SSH_FXP_READ request.
+
+ The handle.
+ The offset.
+ The length.
+ data array; null if EOF
+
+
+
+ Begins an asynchronous read using a SSH_FXP_READ request.
+
+ The handle to the file to read from.
+ The offset in the file to start reading from.
+ The number of bytes to read.
+ The delegate that is executed when completes.
+ An object that contains any additional user-defined data.
+
+ A that represents the asynchronous call.
+
+
+
+
+ Handles the end of an asynchronous read.
+
+ An that represents an asynchronous call.
+
+ A array representing the data read.
+
+
+ If all available data has been read, the method completes
+ immediately and returns zero bytes.
+
+ is null.
+
+
+
+ Performs SSH_FXP_READDIR request
+
+ The handle.
+
+
+
+
+ Performs SSH_FXP_REALPATH request.
+
+ The path.
+ The delegate that is executed when completes.
+ An object that contains any additional user-defined data.
+
+ A that represents the asynchronous call.
+
+
+
+
+ Handles the end of an asynchronous SSH_FXP_REALPATH request.
+
+ An that represents an asynchronous call.
+
+ The absolute path.
+
+ is null.
+
+
+
+ Performs SSH_FXP_REMOVE request.
+
+ The path.
+
+
+
+ Performs SSH_FXP_RENAME request.
+
+ The old path.
+ The new path.
+
+
+
+ Performs SSH_FXP_RMDIR request.
+
+ The path.
+
+
+
+ Performs SSH_FXP_SETSTAT request.
+
+ The path.
+ The attributes.
+
+
+
+ Performs statvfs@openssh.com extended request.
+
+ The path.
+ if set to true [null on error].
+
+
+
+
+ Performs SSH_FXP_SYMLINK request.
+
+ The linkpath.
+ The targetpath.
+
+
+
+ Performs SSH_FXP_FSETSTAT request.
+
+ The handle.
+ The attributes.
+
+
+
+ Performs SSH_FXP_WRITE request.
+
+ The handle.
+ The the zero-based offset (in bytes) relative to the beginning of the file that the write must start at.
+ The buffer holding the data to write.
+ the zero-based offset in at which to begin taking bytes to write.
+ The length (in bytes) of the data to write.
+ The wait event handle if needed.
+ The callback to invoke when the write has completed.
+
+
+
+ Performs SSH_FXP_CLOSE request.
+
+ The handle.
+
+
+
+ Performs SSH_FXP_CLOSE request.
+
+ The handle.
+ The delegate that is executed when completes.
+ An object that contains any additional user-defined data.
+
+ A that represents the asynchronous call.
+
+
+
+
+ Handles the end of an asynchronous close.
+
+ An that represents an asynchronous call.
+ is null.
+
+
+
+ Calculates the optimal size of the buffer to read data from the channel.
+
+ The buffer size configured on the client.
+
+ The optimal size of the buffer to read data from the channel.
+
+
+
+
+ Calculates the optimal size of the buffer to write data on the channel.
+
+ The buffer size configured on the client.
+ The file handle.
+
+ The optimal size of the buffer to write data on the channel.
+
+
+ Currently, we do not take the remote window size into account.
+
+
+
+
+ SSH_FXF_READ
+
+
+
+
+ SSH_FXF_WRITE
+
+
+
+
+ SSH_FXF_APPEND
+
+
+
+
+ SSH_FXF_CREAT
+
+
+
+
+ SSH_FXF_TRUNC
+
+
+
+
+ SSH_FXF_EXCL
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The protocol version.
+ The request id.
+ Specifies the path name of the new link to create.
+ Specifies the path of a target object to which the newly created link will refer. In the case of a symbolic link, this path may not exist.
+ if set to false the link should be a hard link, or a second directory entry referring to the same file or directory object.
+ The status action.
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Gets the zero-based offset (in bytes) relative to the beginning of the file that the write
+ must start at.
+
+
+ The zero-based offset (in bytes) relative to the beginning of the file that the write must
+ start at.
+
+
+
+
+ Gets the buffer holding the data to write.
+
+
+ The buffer holding the data to write.
+
+
+
+
+ Gets the zero-based offset in at which to begin taking bytes to
+ write.
+
+
+ The zero-based offset in at which to begin taking bytes to write.
+
+
+
+
+ Gets the length (in bytes) of the data to write.
+
+
+ The length (in bytes) of the data to write.
+
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Encapsulates the results of an asynchronous download operation.
+
+
+
+
+ Gets or sets a value indicating whether to cancel asynchronous download operation.
+
+
+ true if download operation to be canceled; otherwise, false.
+
+
+ Download operation will be canceled after finishing uploading current buffer.
+
+
+
+
+ Gets the number of downloaded bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The async callback.
+ The state.
+
+
+
+ Updates asynchronous operation status information.
+
+ Number of downloaded bytes.
+
+
+
+ Represents SFTP file information
+
+
+
+
+ Gets the file attributes.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The SFTP session.
+ Full path of the directory or file.
+ Attributes of the directory or file.
+ or is null.
+
+
+
+ Gets the full path of the directory or file.
+
+
+
+
+ For files, gets the name of the file. For directories, gets the name of the last directory in the hierarchy if a hierarchy exists.
+ Otherwise, the Name property gets the name of the directory.
+
+
+
+
+ Gets or sets the time the current file or directory was last accessed.
+
+
+ The time that the current file or directory was last accessed.
+
+
+
+
+ Gets or sets the time when the current file or directory was last written to.
+
+
+ The time the current file was last written.
+
+
+
+
+ Gets or sets the time, in coordinated universal time (UTC), the current file or directory was last accessed.
+
+
+ The time that the current file or directory was last accessed.
+
+
+
+
+ Gets or sets the time, in coordinated universal time (UTC), when the current file or directory was last written to.
+
+
+ The time the current file was last written.
+
+
+
+
+ Gets or sets the size, in bytes, of the current file.
+
+
+ The size of the current file in bytes.
+
+
+
+
+ Gets or sets file user id.
+
+
+ File user id.
+
+
+
+
+ Gets or sets file group id.
+
+
+ File group id.
+
+
+
+
+ Gets a value indicating whether file represents a socket.
+
+
+ true if file represents a socket; otherwise, false.
+
+
+
+
+ Gets a value indicating whether file represents a symbolic link.
+
+
+ true if file represents a symbolic link; otherwise, false.
+
+
+
+
+ Gets a value indicating whether file represents a regular file.
+
+
+ true if file represents a regular file; otherwise, false.
+
+
+
+
+ Gets a value indicating whether file represents a block device.
+
+
+ true if file represents a block device; otherwise, false.
+
+
+
+
+ Gets a value indicating whether file represents a directory.
+
+
+ true if file represents a directory; otherwise, false.
+
+
+
+
+ Gets a value indicating whether file represents a character device.
+
+
+ true if file represents a character device; otherwise, false.
+
+
+
+
+ Gets a value indicating whether file represents a named pipe.
+
+
+ true if file represents a named pipe; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether the owner can read from this file.
+
+
+ true if owner can read from this file; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether the owner can write into this file.
+
+
+ true if owner can write into this file; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether the owner can execute this file.
+
+
+ true if owner can execute this file; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether the group members can read from this file.
+
+
+ true if group members can read from this file; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether the group members can write into this file.
+
+
+ true if group members can write into this file; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether the group members can execute this file.
+
+
+ true if group members can execute this file; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether the others can read from this file.
+
+
+ true if others can read from this file; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether the others can write into this file.
+
+
+ true if others can write into this file; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether the others can execute this file.
+
+
+ true if others can execute this file; otherwise, false.
+
+
+
+
+ Sets file permissions.
+
+ The mode.
+
+
+
+ Permanently deletes a file on remote machine.
+
+
+
+
+ Moves a specified file to a new location on remote machine, providing the option to specify a new file name.
+
+ The path to move the file to, which can specify a different file name.
+ is null.
+
+
+
+ Updates file status on the server.
+
+
+
+
+ Returns a that represents this instance.
+
+
+ A that represents this instance.
+
+
+
+
+ Contains SFTP file attributes.
+
+
+
+
+ Gets or sets the time the current file or directory was last accessed.
+
+
+ The time that the current file or directory was last accessed.
+
+
+
+
+ Gets or sets the time when the current file or directory was last written to.
+
+
+ The time the current file was last written.
+
+
+
+
+ Gets or sets the size, in bytes, of the current file.
+
+
+ The size of the current file in bytes.
+
+
+
+
+ Gets or sets file user id.
+
+
+ File user id.
+
+
+
+
+ Gets or sets file group id.
+
+
+ File group id.
+
+
+
+
+ Gets a value indicating whether file represents a socket.
+
+
+ true if file represents a socket; otherwise, false.
+
+
+
+
+ Gets a value indicating whether file represents a symbolic link.
+
+
+ true if file represents a symbolic link; otherwise, false.
+
+
+
+
+ Gets a value indicating whether file represents a regular file.
+
+
+ true if file represents a regular file; otherwise, false.
+
+
+
+
+ Gets a value indicating whether file represents a block device.
+
+
+ true if file represents a block device; otherwise, false.
+
+
+
+
+ Gets a value indicating whether file represents a directory.
+
+
+ true if file represents a directory; otherwise, false.
+
+
+
+
+ Gets a value indicating whether file represents a character device.
+
+
+ true if file represents a character device; otherwise, false.
+
+
+
+
+ Gets a value indicating whether file represents a named pipe.
+
+
+ true if file represents a named pipe; otherwise, false.
+
+
+
+
+ Gets a value indicating whether the owner can read from this file.
+
+
+ true if owner can read from this file; otherwise, false.
+
+
+
+
+ Gets a value indicating whether the owner can write into this file.
+
+
+ true if owner can write into this file; otherwise, false.
+
+
+
+
+ Gets a value indicating whether the owner can execute this file.
+
+
+ true if owner can execute this file; otherwise, false.
+
+
+
+
+ Gets a value indicating whether the group members can read from this file.
+
+
+ true if group members can read from this file; otherwise, false.
+
+
+
+
+ Gets a value indicating whether the group members can write into this file.
+
+
+ true if group members can write into this file; otherwise, false.
+
+
+
+
+ Gets a value indicating whether the group members can execute this file.
+
+
+ true if group members can execute this file; otherwise, false.
+
+
+
+
+ Gets a value indicating whether the others can read from this file.
+
+
+ true if others can read from this file; otherwise, false.
+
+
+
+
+ Gets a value indicating whether the others can write into this file.
+
+
+ true if others can write into this file; otherwise, false.
+
+
+
+
+ Gets a value indicating whether the others can execute this file.
+
+
+ true if others can execute this file; otherwise, false.
+
+
+
+
+ Gets or sets the extensions.
+
+
+ The extensions.
+
+
+
+
+ Sets the permissions.
+
+ The mode.
+
+
+
+ Returns a byte array representing the current .
+
+
+ A byte array representing the current .
+
+
+
+
+ Holds the size of the file, when available.
+
+
+
+
+ Holds a value indicating whether EOF has already been signaled by the SSH server.
+
+
+
+
+ Holds a value indicating whether the client has read up to the end of the file.
+
+
+
+
+ Initializes a new instance with the specified handle,
+ and the maximum number of pending reads.
+
+
+
+ The size of a individual read-ahead chunk.
+ The maximum number of pending reads.
+ The size of the file, if known; otherwise, null.
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Returns a value indicating whether the read-ahead loop should be continued.
+
+
+ true if the read-ahead loop should be continued; otherwise, false.
+
+
+
+
+ Exposes a around a remote SFTP file, supporting both synchronous and asynchronous read and write operations.
+
+
+
+
+ Gets a value indicating whether the current stream supports reading.
+
+
+ true if the stream supports reading; otherwise, false.
+
+
+
+
+ Gets a value indicating whether the current stream supports seeking.
+
+
+ true if the stream supports seeking; otherwise, false.
+
+
+
+
+ Gets a value indicating whether the current stream supports writing.
+
+
+ true if the stream supports writing; otherwise, false.
+
+
+
+
+ Indicates whether timeout properties are usable for .
+
+
+ true in all cases.
+
+
+
+
+ Gets the length in bytes of the stream.
+
+ A long value representing the length of the stream in bytes.
+ A class derived from Stream does not support seeking.
+ Methods were called after the stream was closed.
+ IO operation failed.
+
+
+
+ Gets or sets the position within the current stream.
+
+ The current position within the stream.
+ An I/O error occurs.
+ The stream does not support seeking.
+ Methods were called after the stream was closed.
+
+
+
+ Gets the name of the path that was used to construct the current .
+
+
+ The name of the path that was used to construct the current .
+
+
+
+
+ Gets the operating system file handle for the file that the current encapsulates.
+
+
+ The operating system file handle for the file that the current encapsulates.
+
+
+
+
+ Gets or sets the operation timeout.
+
+
+ The timeout.
+
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Clears all buffers for this stream and causes any buffered data to be written to the file.
+
+ An I/O error occurs.
+ Stream is closed.
+
+
+
+ Reads a sequence of bytes from the current stream and advances the position within the stream by the
+ number of bytes read.
+
+ An array of bytes. When this method returns, the buffer contains the specified byte array with the values between and ( + - 1) replaced by the bytes read from the current source.
+ The zero-based byte offset in at which to begin storing the data read from the current stream.
+ The maximum number of bytes to be read from the current stream.
+
+ The total number of bytes read into the buffer. This can be less than the number of bytes requested
+ if that many bytes are not currently available, or zero (0) if the end of the stream has been reached.
+
+ The sum of and is larger than the buffer length.
+ is null.
+ or is negative.
+ An I/O error occurs.
+ The stream does not support reading.
+ Methods were called after the stream was closed.
+
+
+ This method attempts to read up to bytes. This either from the buffer, from the
+ server (using one or more SSH_FXP_READ requests) or using a combination of both.
+
+
+ The read loop is interrupted when either bytes are read, the server returns zero
+ bytes (EOF) or less bytes than the read buffer size.
+
+
+ When a server returns less number of bytes than the read buffer size, this may indicate that EOF has
+ been reached. A subsequent (SSH_FXP_READ) server request is necessary to make sure EOF has effectively
+ been reached. Breaking out of the read loop avoids reading from the server twice to determine EOF: once in
+ the read loop, and once upon the next or invocation.
+
+
+
+
+
+ Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream.
+
+
+ The unsigned byte cast to an , or -1 if at the end of the stream.
+
+ The stream does not support reading.
+ Methods were called after the stream was closed.
+ Read operation failed.
+
+
+
+ Sets the position within the current stream.
+
+ A byte offset relative to the parameter.
+ A value of type indicating the reference point used to obtain the new position.
+
+ The new position within the current stream.
+
+ An I/O error occurs.
+ The stream does not support seeking, such as if the stream is constructed from a pipe or console output.
+ Methods were called after the stream was closed.
+
+
+
+ Sets the length of the current stream.
+
+ The desired length of the current stream in bytes.
+ An I/O error occurs.
+ The stream does not support both writing and seeking.
+ Methods were called after the stream was closed.
+ must be greater than zero.
+
+
+ Buffers are first flushed.
+
+
+ If the specified value is less than the current length of the stream, the stream is truncated and - if the
+ current position is greater than the new length - the current position is moved to the last byte of the stream.
+
+
+ If the given value is greater than the current length of the stream, the stream is expanded and the current
+ position remains the same.
+
+
+
+
+
+ Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
+
+ An array of bytes. This method copies bytes from to the current stream.
+ The zero-based byte offset in at which to begin copying bytes to the current stream.
+ The number of bytes to be written to the current stream.
+ The sum of and is greater than the buffer length.
+ is null.
+ or is negative.
+ An I/O error occurs.
+ The stream does not support writing.
+ Methods were called after the stream was closed.
+
+
+
+ Writes a byte to the current position in the stream and advances the position within the stream by one byte.
+
+ The byte to write to the stream.
+ An I/O error occurs.
+ The stream does not support writing, or the stream is already closed.
+ Methods were called after the stream was closed.
+
+
+
+ Releases the unmanaged resources used by the and optionally releases the managed resources.
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Flushes the read data from the buffer.
+
+
+
+
+ Flush any buffered write data to the file.
+
+
+
+
+ Setups the read.
+
+
+
+
+ Setups the write.
+
+
+
+
+ Contains File system information exposed by statvfs@openssh.com request.
+
+
+
+
+ Gets the file system block size.
+
+
+ The file system block size.
+
+
+
+
+ Gets the fundamental file system size of the block.
+
+
+ The fundamental file system block size.
+
+
+
+
+ Gets the total blocks.
+
+
+ The total blocks.
+
+
+
+
+ Gets the free blocks.
+
+
+ The free blocks.
+
+
+
+
+ Gets the available blocks.
+
+
+ The available blocks.
+
+
+
+
+ Gets the total nodes.
+
+
+ The total nodes.
+
+
+
+
+ Gets the free nodes.
+
+
+ The free nodes.
+
+
+
+
+ Gets the available nodes.
+
+
+ The available nodes.
+
+
+
+
+ Gets the sid.
+
+
+ The sid.
+
+
+
+
+ Gets a value indicating whether this instance is read only.
+
+
+ true if this instance is read only; otherwise, false.
+
+
+
+
+ Gets a value indicating whether [supports set uid].
+
+
+ true if [supports set uid]; otherwise, false.
+
+
+
+
+ Gets the max name lenght.
+
+
+ The max name lenght.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The bsize.
+ The frsize.
+ The blocks.
+ The bfree.
+ The bavail.
+ The files.
+ The ffree.
+ The favail.
+ The sid.
+ The flag.
+ The namemax.
+
+
+
+ Encapsulates the results of an asynchronous directory list operation.
+
+
+
+
+ Gets the number of files read so far.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The async callback.
+ The state.
+
+
+
+ Updates asynchronous operation status information.
+
+ The files read.
+
+
+
+ Gets the size of the message in bytes.
+
+
+ The size of the messages in bytes.
+
+
+
+
+ Writes the current message to the specified .
+
+ The to write the message to.
+
+
+
+ SSH_FXP_INIT
+
+
+
+
+ SSH_FXP_VERSION
+
+
+
+
+ SSH_FXP_OPEN
+
+
+
+
+ SSH_FXP_CLOSE
+
+
+
+
+ SSH_FXP_READ
+
+
+
+
+ SSH_FXP_WRITE
+
+
+
+
+ SSH_FXP_LSTAT
+
+
+
+
+ SSH_FXP_FSTAT
+
+
+
+
+ SSH_FXP_SETSTAT
+
+
+
+
+ SSH_FXP_FSETSTAT
+
+
+
+
+ SSH_FXP_OPENDIR
+
+
+
+
+ SSH_FXP_READDIR
+
+
+
+
+ SSH_FXP_REMOVE
+
+
+
+
+ SSH_FXP_MKDIR
+
+
+
+
+ SSH_FXP_RMDIR
+
+
+
+
+ SSH_FXP_REALPATH
+
+
+
+
+ SSH_FXP_STAT
+
+
+
+
+ SSH_FXP_RENAME
+
+
+
+
+ SSH_FXP_READLINK
+
+
+
+
+ SSH_FXP_SYMLINK
+
+
+
+
+ SSH_FXP_LINK
+
+
+
+
+ SSH_FXP_BLOCK
+
+
+
+
+ SSH_FXP_UNBLOCK
+
+
+
+
+ SSH_FXP_STATUS
+
+
+
+
+ SSH_FXP_HANDLE
+
+
+
+
+ SSH_FXP_DATA
+
+
+
+
+ SSH_FXP_NAME
+
+
+
+
+ SSH_FXP_ATTRS
+
+
+
+
+ SSH_FXP_EXTENDED
+
+
+
+
+ SSH_FXP_EXTENDED_REPLY
+
+
+
+
+ Gets the character encoding to use.
+
+
+
+
+ Gets the remote working directory.
+
+
+ The remote working directory.
+
+
+
+
+ Gets the SFTP protocol version.
+
+
+ The SFTP protocol version.
+
+
+
+
+ Gets the next request id for sftp session.
+
+
+
+
+ Changes the current working directory to the specified path.
+
+ The new working directory.
+
+
+
+ Resolves a given path into an absolute path on the server.
+
+ The path to resolve.
+
+ The absolute path.
+
+
+
+
+ Performs SSH_FXP_OPEN request
+
+ The path.
+ The flags.
+ if set to true returns null instead of throwing an exception.
+ File handle.
+
+
+
+ Performs SSH_FXP_OPEN request
+
+ The path.
+ The flags.
+ The delegate that is executed when completes.
+ An object that contains any additional user-defined data.
+
+ A that represents the asynchronous call.
+
+
+
+
+ Handles the end of an asynchronous open.
+
+ An that represents an asynchronous call.
+
+ A array representing a file handle.
+
+
+ If all available data has been read, the method completes
+ immediately and returns zero bytes.
+
+ is null.
+
+
+
+ Performs SSH_FXP_CLOSE request.
+
+ The handle.
+
+
+
+ Performs SSH_FXP_CLOSE request.
+
+ The handle.
+ The delegate that is executed when completes.
+ An object that contains any additional user-defined data.
+
+ A that represents the asynchronous call.
+
+
+
+
+ Handles the end of an asynchronous close.
+
+ An that represents an asynchronous call.
+ is null.
+
+
+
+ Begins an asynchronous read using a SSH_FXP_READ request.
+
+ The handle to the file to read from.
+ The offset in the file to start reading from.
+ The number of bytes to read.
+ The delegate that is executed when completes.
+ An object that contains any additional user-defined data.
+
+ A that represents the asynchronous call.
+
+
+
+
+ Handles the end of an asynchronous read.
+
+ An that represents an asynchronous call.
+
+ A array representing the data read.
+
+
+ If all available data has been read, the method completes
+ immediately and returns zero bytes.
+
+ is null.
+
+
+
+ Performs SSH_FXP_READ request.
+
+ The handle.
+ The offset.
+ The length.
+ data array; null if EOF
+
+
+
+ Performs SSH_FXP_WRITE request.
+
+ The handle.
+ The the zero-based offset (in bytes) relative to the beginning of the file that the write must start at.
+ The buffer holding the data to write.
+ the zero-based offset in at which to begin taking bytes to write.
+ The length (in bytes) of the data to write.
+ The wait event handle if needed.
+ The callback to invoke when the write has completed.
+
+
+
+ Performs SSH_FXP_LSTAT request.
+
+ The path.
+
+ File attributes
+
+
+
+
+ Performs SSH_FXP_LSTAT request.
+
+ The path.
+ The delegate that is executed when completes.
+ An object that contains any additional user-defined data.
+
+ A that represents the asynchronous call.
+
+
+
+
+ Handles the end of an asynchronous SSH_FXP_LSTAT request.
+
+ An that represents an asynchronous call.
+
+ The file attributes.
+
+ is null.
+
+
+
+ Performs SSH_FXP_FSTAT request.
+
+ The handle.
+ if set to true returns null instead of throwing an exception.
+
+ File attributes
+
+
+
+
+ Performs SSH_FXP_SETSTAT request.
+
+ The path.
+ The attributes.
+
+
+
+ Performs SSH_FXP_FSETSTAT request.
+
+ The handle.
+ The attributes.
+
+
+
+ Performs SSH_FXP_OPENDIR request
+
+ The path.
+ if set to true returns null instead of throwing an exception.
+ File handle.
+
+
+
+ Performs SSH_FXP_READDIR request
+
+ The handle.
+
+
+
+
+ Performs SSH_FXP_REMOVE request.
+
+ The path.
+
+
+
+ Performs SSH_FXP_MKDIR request.
+
+ The path.
+
+
+
+ Performs SSH_FXP_RMDIR request.
+
+ The path.
+
+
+
+ Performs SSH_FXP_REALPATH request
+
+ The path.
+ if set to true returns null instead of throwing an exception.
+
+ The absolute path.
+
+
+
+
+ Performs SSH_FXP_REALPATH request.
+
+ The path.
+ The delegate that is executed when completes.
+ An object that contains any additional user-defined data.
+
+ A that represents the asynchronous call.
+
+
+
+
+ Handles the end of an asynchronous SSH_FXP_REALPATH request.
+
+ An that represents an asynchronous call.
+
+ The absolute path.
+
+ is null.
+
+
+
+ Performs SSH_FXP_STAT request.
+
+ The path.
+ if set to true returns null instead of throwing an exception.
+
+ File attributes
+
+
+
+
+ Performs SSH_FXP_STAT request
+
+ The path.
+ The delegate that is executed when completes.
+ An object that contains any additional user-defined data.
+
+ A that represents the asynchronous call.
+
+
+
+
+ Handles the end of an asynchronous stat.
+
+ An that represents an asynchronous call.
+
+ The file attributes.
+
+ is null.
+
+
+
+ Performs SSH_FXP_RENAME request.
+
+ The old path.
+ The new path.
+
+
+
+ Performs SSH_FXP_READLINK request.
+
+ The path.
+ if set to true returns null instead of throwing an exception.
+
+
+
+
+ Performs SSH_FXP_SYMLINK request.
+
+ The linkpath.
+ The targetpath.
+
+
+
+ Performs posix-rename@openssh.com extended request.
+
+ The old path.
+ The new path.
+
+
+
+ Performs statvfs@openssh.com extended request.
+
+ The path.
+ if set to true [null on error].
+
+
+
+
+ Performs fstatvfs@openssh.com extended request.
+
+ The file handle.
+ if set to true [null on error].
+
+
+
+
+
+ Performs hardlink@openssh.com extended request.
+
+ The old path.
+ The new path.
+
+
+
+ Calculates the optimal size of the buffer to read data from the channel.
+
+ The buffer size configured on the client.
+
+ The optimal size of the buffer to read data from the channel.
+
+
+
+
+ Calculates the optimal size of the buffer to write data on the channel.
+
+ The buffer size configured on the client.
+ The file handle.
+
+ The optimal size of the buffer to write data on the channel.
+
+
+ Currently, we do not take the remote window size into account.
+
+
+
+
+ Encapsulates the results of an asynchronous directory synchronization operation.
+
+
+
+
+ Gets the number of files read so far.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The async callback.
+ The state.
+
+
+
+ Updates asynchronous operation status information.
+
+ The files read.
+
+
+
+ Encapsulates the results of an asynchronous upload operation.
+
+
+
+
+ Gets or sets a value indicating whether to cancel asynchronous upload operation
+
+
+ true if upload operation to be canceled; otherwise, false.
+
+
+ Upload operation will be canceled after finishing uploading current buffer.
+
+
+
+
+ Gets the number of uploaded bytes.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The async callback.
+ The state.
+
+
+
+ Updates asynchronous operation status information.
+
+ Number of uploaded bytes.
+
+
+
+ SSH_FX_OK
+
+
+
+
+ SSH_FX_EOF
+
+
+
+
+ SSH_FX_NO_SUCH_FILE
+
+
+
+
+ SSH_FX_PERMISSION_DENIED
+
+
+
+
+ SSH_FX_FAILURE
+
+
+
+
+ SSH_FX_BAD_MESSAGE
+
+
+
+
+ SSH_FX_NO_CONNECTION
+
+
+
+
+ SSH_FX_CONNECTION_LOST
+
+
+
+
+ SSH_FX_OP_UNSUPPORTED
+
+
+
+
+ SSH_FX_INVALID_HANDLE
+
+
+
+
+ SSH_FX_NO_SUCH_PATH
+
+
+
+
+ SSH_FX_FILE_ALREADY_EXISTS
+
+
+
+
+ SSH_FX_WRITE_PROTECT
+
+
+
+
+ SSH_FX_NO_MEDIA
+
+
+
+
+ SSH_FX_NO_SPACE_ON_FILESYSTEM
+
+
+
+
+ SSH_FX_QUOTA_EXCEEDED
+
+
+
+
+ SSH_FX_UNKNOWN_PRINCIPAL
+
+
+
+
+ SSH_FX_LOCK_CONFLICT
+
+
+
+
+ SSH_FX_DIR_NOT_EMPTY
+
+
+
+
+ SSH_FX_NOT_A_DIRECTORY
+
+
+
+
+ SSH_FX_INVALID_FILENAME
+
+
+
+
+ SSH_FX_LINK_LOOP
+
+
+
+
+ SSH_FX_CANNOT_DELETE
+
+
+
+
+ SSH_FX_INVALID_PARAMETER
+
+
+
+
+ SSH_FX_FILE_IS_A_DIRECTORY
+
+
+
+
+ SSH_FX_BYTE_RANGE_LOCK_CONFLICT
+
+
+
+
+ SSH_FX_BYTE_RANGE_LOCK_REFUSED
+
+
+
+
+ SSH_FX_DELETE_PENDING
+
+
+
+
+ SSH_FX_FILE_CORRUPT
+
+
+
+
+ SSH_FX_OWNER_INVALID
+
+
+
+
+ SSH_FX_GROUP_INVALID
+
+
+
+
+ SSH_FX_NO_MATCHING_BYTE_RANGE_LOCK
+
+
+
+
+ Provides additional information for asynchronous command execution
+
+
+
+
+ Initializes a new instance of the class.
+
+ The async callback.
+ The state.
+
+
+
+ Provides functionality to perform keyboard interactive authentication.
+
+
+
+
+ Gets authentication method name
+
+
+
+
+ Occurs when server prompts for more authentication information.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The username.
+ is whitespace or null.
+
+
+
+ Authenticates the specified session.
+
+ The session to authenticate.
+ Result of authentication process.
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Provides connection information when keyboard interactive authentication method is used
+
+
+
+
+
+
+
+ Occurs when server prompts for more authentication information.
+
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+ The host.
+ The username.
+
+
+
+ Initializes a new instance of the class.
+
+ The host.
+ The port.
+ The username.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection port.
+ Connection username.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection port.
+ Connection username.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+ The proxy username.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection username.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection username.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+ The proxy username.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection username.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+ The proxy username.
+ The proxy password.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection port.
+ Connection username.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+ The proxy username.
+ The proxy password.
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Provides functionality for "none" authentication method
+
+
+
+
+ Gets connection name
+
+
+
+
+ Initializes a new instance of the class.
+
+ The username.
+ is whitespace or null.
+
+
+
+ Authenticates the specified session.
+
+ The session.
+
+ Result of authentication process.
+
+ is null.
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Provides functionality to perform password authentication.
+
+
+
+
+ Gets authentication method name
+
+
+
+
+ Gets the password as a sequence of bytes.
+
+
+ The password as a sequence of bytes.
+
+
+
+
+ Occurs when user's password has expired and needs to be changed.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The username.
+ The password.
+ is whitespace or null.
+ is null.
+
+
+
+ Initializes a new instance of the class.
+
+ The username.
+ The password.
+ is whitespace or null.
+ is null.
+
+
+
+ Authenticates the specified session.
+
+ The session to authenticate.
+
+ Result of authentication process.
+
+ is null.
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Specifies behavior for expected expression
+
+
+
+
+ Gets the expected regular expression.
+
+
+
+
+ Gets the action to perform when expected expression is found.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The expect regular expression.
+ The action to perform.
+ or is null.
+
+
+
+ Initializes a new instance of the class.
+
+ The expect expression.
+ The action to perform.
+ or is null.
+
+
+
+ Provides functionality for forwarding connections from the client to destination servers via the SSH server,
+ also known as dynamic port forwarding.
+
+
+
+
+ Gets the bound host.
+
+
+
+
+ Gets the bound port.
+
+
+
+
+ Gets a value indicating whether port forwarding is started.
+
+
+ true if port forwarding is started; otherwise, false.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The port.
+
+
+
+ Initializes a new instance of the class.
+
+ The host.
+ The port.
+
+
+
+ Starts local port forwarding.
+
+
+
+
+ Stops local port forwarding, and waits for the specified timeout until all pending
+ requests are processed.
+
+ The maximum amount of time to wait for pending requests to finish processing.
+
+
+
+ Ensures the current instance is not disposed.
+
+ The current instance is disposed.
+
+
+
+ Interrupts the listener, and unsubscribes from events.
+
+
+
+
+ Waits for pending channels to close.
+
+ The maximum time to wait for the pending channels to close.
+
+
+
+ Holds a value indicating whether the current instance is disposed.
+
+
+ true if the current instance is disposed; otherwise, false.
+
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Initializes the .
+
+
+
+ When the port is started for the first time, a is created with an initial count
+ of 1.
+
+
+ On subsequent (re)starts, we'll dispose the current and create a new one with
+ initial count of 1.
+
+
+
+
+
+ Reads a null terminated string from a socket.
+
+ The to read from.
+ The timeout to apply to individual reads.
+
+ The read, or null when the socket was closed.
+
+
+
+
+ Provides functionality for local port forwarding
+
+
+
+
+ Initializes the .
+
+
+
+ When the port is started for the first time, a is created with an initial count
+ of 1.
+
+
+ On subsequent (re)starts, we'll dispose the current and create a new one with
+ initial count of 1.
+
+
+
+
+
+ Gets the bound host.
+
+
+
+
+ Gets the bound port.
+
+
+
+
+ Gets the forwarded host.
+
+
+
+
+ Gets the forwarded port.
+
+
+
+
+ Gets a value indicating whether port forwarding is started.
+
+
+ true if port forwarding is started; otherwise, false.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The bound port.
+ The host.
+ The port.
+ is greater than .
+ is null.
+ is greater than .
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+ The bound host.
+ The host.
+ The port.
+ is null.
+ is null.
+ is greater than .
+
+
+
+ Initializes a new instance of the class.
+
+ The bound host.
+ The bound port.
+ The host.
+ The port.
+ is null.
+ is null.
+ is greater than .
+ is greater than .
+
+
+
+ Starts local port forwarding.
+
+
+
+
+ Stops local port forwarding, and waits for the specified timeout until all pending
+ requests are processed.
+
+ The maximum amount of time to wait for pending requests to finish processing.
+
+
+
+ Ensures the current instance is not disposed.
+
+ The current instance is disposed.
+
+
+
+ Interrupts the listener, and unsubscribes from events.
+
+
+
+
+ Waits for pending channels to close.
+
+ The maximum time to wait for the pending channels to close.
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Provides connection information when password authentication method is used
+
+
+
+
+
+
+
+
+
+ Occurs when user's password has expired and needs to be changed.
+
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection username.
+ Connection password.
+
+
+
+ is null.
+ is invalid, or is null or contains only whitespace characters.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection port.
+ Connection username.
+ Connection password.
+ is null.
+ is invalid, or is null or contains only whitespace characters.
+ is not within and .
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ The port.
+ Connection username.
+ Connection password.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ The port.
+ Connection username.
+ Connection password.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+ The proxy username.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection username.
+ Connection password.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection username.
+ Connection password.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+ The proxy username.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection username.
+ Connection password.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+ The proxy username.
+ The proxy password.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection username.
+ Connection password.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection port.
+ Connection username.
+ Connection password.
+ is null.
+ is invalid, or is null or contains only whitespace characters.
+ is not within and .
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ The port.
+ Connection username.
+ Connection password.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ The port.
+ Connection username.
+ Connection password.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+ The proxy username.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection username.
+ Connection password.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection username.
+ Connection password.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+ The proxy username.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection username.
+ Connection password.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+ The proxy username.
+ The proxy password.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ The port.
+ Connection username.
+ Connection password.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+ The proxy username.
+ The proxy password.
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Provides functionality to perform private key authentication.
+
+
+
+
+ Gets authentication method name
+
+
+
+
+ Gets the key files used for authentication.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The username.
+ The key files.
+ is whitespace or null.
+
+
+
+ Authenticates the specified session.
+
+ The session to authenticate.
+
+ Result of authentication process.
+
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Provides connection information when private key authentication method is used
+
+
+
+
+
+
+
+ Gets the key files used for authentication.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection username.
+ Connection key files.
+
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection port.
+ Connection username.
+ Connection key files.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ The port.
+ Connection username.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+ The key files.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ The port.
+ Connection username.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+ The proxy username.
+ The key files.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection username.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+ The key files.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection username.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+ The proxy username.
+ The key files.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection username.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+ The proxy username.
+ The proxy password.
+ The key files.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ The port.
+ Connection username.
+ Type of the proxy.
+ The proxy host.
+ The proxy port.
+ The proxy username.
+ The proxy password.
+ The key files.
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Specifies the type of proxy client will use to connect to server.
+
+
+
+ No proxy server.
+
+
+ A SOCKS4 proxy server.
+
+
+ A SOCKS5 proxy server.
+
+
+ A HTTP proxy server.
+
+
+
+ Provides SCP client functionality.
+
+
+
+ More information on the SCP protocol is available here:
+ https://github.com/net-ssh/net-scp/blob/master/lib/net/scp.rb
+
+
+ Known issues in OpenSSH:
+
+ -
+ Recursive download (-prf) does not deal well with specific UTF-8 and newline characters.
+ Recursive update does not support empty path for uploading to home directory.
+
+
+
+
+
+ Provides SCP client functionality.
+
+
+
+
+ Gets or sets the operation timeout.
+
+
+ The timeout to wait until an operation completes. The default value is negative
+ one (-1) milliseconds, which indicates an infinite time-out period.
+
+
+
+
+ Gets or sets the size of the buffer.
+
+
+ The size of the buffer. The default buffer size is 16384 bytes.
+
+
+
+
+ Gets or sets the transformation to apply to remote paths.
+
+
+ The transformation to apply to remote paths. The default is .
+
+ is null.
+
+
+ This transformation is applied to the remote file or directory path that is passed to the
+ scp command.
+
+
+ See for the transformations that are supplied
+ out-of-the-box with SSH.NET.
+
+
+
+
+
+ Occurs when downloading file.
+
+
+
+
+ Occurs when uploading file.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The connection info.
+ is null.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection port.
+ Authentication username.
+ Authentication password.
+ is null.
+ is invalid, or is null or contains only whitespace characters.
+ is not within and .
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Authentication username.
+ Authentication password.
+ is null.
+ is invalid, or is null or contains only whitespace characters.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection port.
+ Authentication username.
+ Authentication private key file(s) .
+ is null.
+ is invalid, -or- is null or contains only whitespace characters.
+ is not within and .
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Authentication username.
+ Authentication private key file(s) .
+ is null.
+ is invalid, -or- is null or contains only whitespace characters.
+
+
+
+ Initializes a new instance of the class.
+
+ The connection info.
+ Specified whether this instance owns the connection info.
+ is null.
+
+ If is true, then the
+ connection info will be disposed when this instance is disposed.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The connection info.
+ Specified whether this instance owns the connection info.
+ The factory to use for creating new services.
+ is null.
+ is null.
+
+ If is true, then the
+ connection info will be disposed when this instance is disposed.
+
+
+
+
+ Uploads the specified stream to the remote host.
+
+ The to upload.
+ A relative or absolute path for the remote file.
+ A directory with the specified path exists on the remote host.
+ The secure copy execution request was rejected by the server.
+
+
+
+ Downloads the specified file from the remote host to the stream.
+
+ A relative or absolute path for the remote file.
+ The to download the remote file to.
+ is null or contains only whitespace characters.
+ is null.
+ exists on the remote host, and is not a regular file.
+ The secure copy execution request was rejected by the server.
+
+
+
+ Sets mode, size and name of file being upload.
+
+ The channel to perform the upload in.
+ A from which any feedback from the server can be read.
+ The size of the content to upload.
+ The name of the file, without path, to which the content is to be uploaded.
+
+
+ When the SCP transfer is already initiated for a file, a zero-length should
+ be specified for . This prevents the server from uploading the
+ content to a file with path <file path>/ if there's
+ already a directory with this path, and allows us to receive an error response.
+
+
+
+
+
+ Uploads the content of a file.
+
+ The channel to perform the upload in.
+ A from which any feedback from the server can be read.
+ The content to upload.
+ The name of the remote file, without path, to which the content is uploaded.
+
+ is only used for raising the event.
+
+
+
+
+ Checks the return code.
+
+ The output stream.
+
+
+
+ Read a LF-terminated string from the .
+
+ The to read from.
+
+ The string without trailing LF.
+
+
+
+
+ Uploads the specified file to the remote host.
+
+ The file system info.
+ A relative or absolute path for the remote file.
+ is null.
+ is null or empty.
+ A directory with the specified path exists on the remote host.
+ The secure copy execution request was rejected by the server.
+
+
+
+ Uploads the specified directory to the remote host.
+
+ The directory info.
+ A relative or absolute path for the remote directory.
+ fileSystemInfo
+ is null or empty.
+ exists on the remote host, and is not a directory.
+ The secure copy execution request was rejected by the server.
+
+
+
+ Downloads the specified file from the remote host to local file.
+
+ Remote host file name.
+ Local file information.
+ is null.
+ is null or empty.
+ exists on the remote host, and is not a regular file.
+ The secure copy execution request was rejected by the server.
+
+
+
+ Downloads the specified directory from the remote host to local directory.
+
+ Remote host directory name.
+ Local directory information.
+ is null or empty.
+ is null.
+ File or directory with the specified path does not exist on the remote host.
+ The secure copy execution request was rejected by the server.
+
+
+
+ Uploads the and
+ of the next file or directory to upload.
+
+ The channel to perform the upload in.
+ A from which any feedback from the server can be read.
+ The file or directory to upload.
+
+
+
+ Upload the files and subdirectories in the specified directory.
+
+ The channel to perform the upload in.
+ A from which any feedback from the server can be read.
+ The directory to upload.
+
+
+
+ Sets mode and name of the directory being upload.
+
+
+
+
+ Base class for port forwarding functionality.
+
+
+
+
+ Gets or sets the session.
+
+
+ The session.
+
+
+
+
+ The event occurs as the forwarded port is being stopped.
+
+
+
+
+ The event occurs as the forwarded port is being stopped.
+
+
+
+
+ Gets a value indicating whether port forwarding is started.
+
+
+ true if port forwarding is started; otherwise, false.
+
+
+
+
+ Occurs when an exception is thrown.
+
+
+
+
+ Occurs when a port forwarding request is received.
+
+
+
+
+ Starts port forwarding.
+
+
+
+
+ Stops port forwarding.
+
+
+
+
+ Starts port forwarding.
+
+
+
+
+ Stops port forwarding, and waits for the specified timeout until all pending
+ requests are processed.
+
+ The maximum amount of time to wait for pending requests to finish processing.
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Ensures the current instance is not disposed.
+
+ The current instance is disposed.
+
+
+
+ Raises event.
+
+ The exception.
+
+
+
+ Raises event.
+
+ Request originator host.
+ Request originator port.
+
+
+
+ Raises the event.
+
+
+
+
+ Handles session ErrorOccured event.
+
+ The source of the event.
+ The instance containing the event data.
+
+
+
+ Provides functionality for remote port forwarding
+
+
+
+
+ Gets a value indicating whether port forwarding is started.
+
+
+ true if port forwarding is started; otherwise, false.
+
+
+
+
+ Gets the bound host.
+
+
+
+
+ Gets the bound host.
+
+
+
+
+ Gets the bound port.
+
+
+
+
+ Gets the forwarded host.
+
+
+
+
+ Gets the forwarded host.
+
+
+
+
+ Gets the forwarded port.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The bound host address.
+ The bound port.
+ The host address.
+ The port.
+ is null.
+ is null.
+ is greater than .
+ is greater than .
+
+
+
+ Initializes a new instance of the class.
+
+ The bound port.
+ The host.
+ The port.
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+ The bound host.
+ The bound port.
+ The host.
+ The port.
+
+
+
+ Starts remote port forwarding.
+
+
+
+
+ Stops remote port forwarding.
+
+ The maximum amount of time to wait for the port to stop.
+
+
+
+ Ensures the current instance is not disposed.
+
+ The current instance is disposed.
+
+
+
+ Initializes the .
+
+
+
+ When the port is started for the first time, a is created with an initial count
+ of 1.
+
+
+ On subsequent (re)starts, we'll dispose the current and create a new one with
+ initial count of 1.
+
+
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Provides data for message events.
+
+ Message type
+
+
+
+ Gets the message.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+ is null.
+
+
+
+ Contains operation for working with NetConf server.
+
+
+
+
+ Holds instance that used to communicate to the server
+
+
+
+
+ Gets or sets the operation timeout.
+
+
+ The timeout to wait until an operation completes. The default value is negative
+ one (-1) milliseconds, which indicates an infinite time-out period.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The connection info.
+ is null.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection port.
+ Authentication username.
+ Authentication password.
+ is null.
+ is invalid, or is null or contains only whitespace characters.
+ is not within and .
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Authentication username.
+ Authentication password.
+ is null.
+ is invalid, or is null or contains only whitespace characters.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection port.
+ Authentication username.
+ Authentication private key file(s) .
+ is null.
+ is invalid, -or- is null or contains only whitespace characters.
+ is not within and .
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Authentication username.
+ Authentication private key file(s) .
+ is null.
+ is invalid, -or- is null or contains only whitespace characters.
+
+
+
+ Initializes a new instance of the class.
+
+ The connection info.
+ Specified whether this instance owns the connection info.
+ is null.
+
+ If is true, then the
+ connection info will be disposed when this instance is disposed.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The connection info.
+ Specified whether this instance owns the connection info.
+ The factory to use for creating new services.
+ is null.
+ is null.
+
+ If is true, then the
+ connection info will be disposed when this instance is disposed.
+
+
+
+
+ Gets the NetConf server capabilities.
+
+
+ The NetConf server capabilities.
+
+
+
+
+ Gets the NetConf client capabilities.
+
+
+ The NetConf client capabilities.
+
+
+
+
+ Gets or sets a value indicating whether automatic message id handling is
+ enabled.
+
+
+ true if automatic message id handling is enabled; otherwise, false.
+ The default value is true.
+
+
+
+
+ Sends the receive RPC.
+
+ The RPC.
+ Reply message to RPC request
+ Client is not connected.
+
+
+
+ Sends the receive RPC.
+
+ The XML.
+ Reply message to RPC request
+
+
+
+ Sends the close RPC.
+
+ Reply message to closing RPC request
+ Client is not connected.
+
+
+
+ Called when client is connected to the server.
+
+
+
+
+ Called when client is disconnecting from the server.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Represents private key information.
+
+
+
+
+
+
+ Supports RSA and DSA private key in both OpenSSH and ssh.com format.
+
+
+ The following encryption algorithms are supported:
+
+ -
+ DES-EDE3-CBC
+
+ -
+ DES-EDE3-CFB
+
+ -
+ DES-CBC
+
+ -
+ AES-128-CBC
+
+ -
+ AES-192-CBC
+
+ -
+ AES-256-CBC
+
+
+
+
+
+
+
+ Gets the host key.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The private key.
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the file.
+ is null or empty.
+ This method calls internally, this method does not catch exceptions from .
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the file.
+ The pass phrase.
+ is null or empty, or is null.
+ This method calls internally, this method does not catch exceptions from .
+
+
+
+ Initializes a new instance of the class.
+
+ The private key.
+ The pass phrase.
+ or is null.
+
+
+
+ Opens the specified private key.
+
+ The private key.
+ The pass phrase.
+
+
+
+ Decrypts encrypted private key file data.
+
+ The cipher info.
+ Encrypted data.
+ Decryption pass phrase.
+ Decryption binary salt.
+ Decrypted byte array.
+ , , or is null.
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Reads next mpint data type from internal buffer where length specified in bits.
+
+ mpint read.
+
+
+
+ Provides functionality to connect and interact with SSH server.
+
+
+
+
+ Specifies an infinite waiting period.
+
+
+ The value of this field is -1 millisecond.
+
+
+
+
+ Specifies an infinite waiting period.
+
+
+ The value of this field is -1.
+
+
+
+
+ Specifies maximum packet size defined by the protocol.
+
+
+ 68536 (64 KB + 3000 bytes).
+
+
+
+
+ Holds the initial local window size for the channels.
+
+
+ 2147483647 (2^31 - 1) bytes.
+
+
+ We currently do not define a maximum (remote) window size.
+
+
+
+
+ Holds the maximum size of channel data packets that we receive.
+
+
+ 64 KB.
+
+
+
+ This is the maximum size (in bytes) we support for the data (payload) of a
+ SSH_MSG_CHANNEL_DATA message we receive.
+
+
+ We currently do not enforce this limit.
+
+
+
+
+
+ Controls how many authentication attempts can take place at the same time.
+
+
+ Some server may restrict number to prevent authentication attacks
+
+
+
+
+ Holds metada about session messages
+
+
+
+
+ Holds a that is signaled when the message listener loop has completed.
+
+
+
+
+ Specifies outbound packet number
+
+
+
+
+ Specifies incoming packet number
+
+
+
+
+ WaitHandle to signal that last service request was accepted
+
+
+
+
+ WaitHandle to signal that exception was thrown by another thread.
+
+
+
+
+ WaitHandle to signal that key exchange was completed.
+
+
+
+
+ WaitHandle to signal that key exchange is in progress.
+
+
+
+
+ Exception that need to be thrown by waiting thread
+
+
+
+
+ Specifies whether connection is authenticated
+
+
+
+
+ Specifies whether user issued Disconnect command or not
+
+
+
+
+ Holds the factory to use for creating new services.
+
+
+
+
+ Holds connection socket.
+
+
+
+
+ Holds an object that is used to ensure only a single thread can read from
+ at any given time.
+
+
+
+
+ Holds an object that is used to ensure only a single thread can write to
+ at any given time.
+
+
+ This is also used to ensure that is
+ incremented atomatically.
+
+
+
+
+ Holds an object that is used to ensure only a single thread can dispose
+ at any given time.
+
+
+ This is also used to ensure that will not be disposed
+ while performing a given operation or set of operations on .
+
+
+
+
+ Gets the session semaphore that controls session channels.
+
+
+ The session semaphore.
+
+
+
+
+ Gets the next channel number.
+
+
+ The next channel number.
+
+
+
+
+ Gets a value indicating whether the session is connected.
+
+
+ true if the session is connected; otherwise, false.
+
+
+ This methods returns true in all but the following cases:
+
+ -
+ The is disposed.
+
+ -
+ The SSH_MSG_DISCONNECT message - which is used to disconnect from the server - has been sent.
+
+ -
+ The client has not been authenticated successfully.
+
+ -
+ The listener thread - which is used to receive messages from the server - has stopped.
+
+ -
+ The socket used to communicate with the server is no longer connected.
+
+
+
+
+
+
+ Gets the session id.
+
+
+ The session id, or null if the client has not been authenticated.
+
+
+
+
+ Gets the client init message.
+
+ The client init message.
+
+
+
+ Gets or sets the server version string.
+
+ The server version.
+
+
+
+ Gets or sets the client version string.
+
+ The client version.
+
+
+
+ Gets or sets the connection info.
+
+ The connection info.
+
+
+
+ Occurs when an error occurred.
+
+
+
+
+ Occurs when session has been disconnected from the server.
+
+
+
+
+ Occurs when host key received.
+
+
+
+
+ Occurs when message is received from the server.
+
+
+
+
+ Occurs when message is received from the server.
+
+
+
+
+ Occurs when message is received from the server.
+
+
+
+
+ Occurs when message is received from the server.
+
+
+
+
+ Occurs when message is received from the server.
+
+
+
+
+ Occurs when message is received from the server.
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when a message is received from the SSH server.
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Occurs when message received
+
+
+
+
+ Initializes a new instance of the class.
+
+ The connection info.
+ The factory to use for creating new services.
+ is null.
+ is null.
+
+
+
+ Connects to the server.
+
+ Socket connection to the SSH server or proxy server could not be established, or an error occurred while resolving the hostname.
+ SSH session could not be established.
+ Authentication of SSH session failed.
+ Failed to establish proxy connection.
+
+
+
+ Disconnects from the server.
+
+
+ This sends a SSH_MSG_DISCONNECT message to the server, waits for the
+ server to close the socket on its end and subsequently closes the client socket.
+
+
+
+
+ Waits for the specified handle or the exception handle for the receive thread
+ to signal within the connection timeout.
+
+ The wait handle.
+ A received package was invalid or failed the message integrity check.
+ None of the handles are signaled in time and the session is not disconnecting.
+ A socket error was signaled while receiving messages from the server.
+
+ When neither handles are signaled in time and the session is not closing, then the
+ session is disconnected.
+
+
+
+
+ Waits for the specified handle or the exception handle for the receive thread
+ to signal within the specified timeout.
+
+ The wait handle.
+ The time to wait for any of the handles to become signaled.
+ A received package was invalid or failed the message integrity check.
+ None of the handles are signaled in time and the session is not disconnecting.
+ A socket error was signaled while receiving messages from the server.
+
+ When neither handles are signaled in time and the session is not closing, then the
+ session is disconnected.
+
+
+
+
+ Waits for the specified handle or the exception handle for the receive thread
+ to signal within the connection timeout.
+
+ The wait handle.
+ A received package was invalid or failed the message integrity check.
+ None of the handles are signaled in time and the session is not disconnecting.
+ A socket error was signaled while receiving messages from the server.
+
+ When neither handles are signaled in time and the session is not closing, then the
+ session is disconnected.
+
+
+
+
+ Waits for the specified handle or the exception handle for the receive thread
+ to signal within the specified timeout.
+
+ The wait handle.
+ The time to wait for any of the handles to become signaled.
+ A received package was invalid or failed the message integrity check.
+ None of the handles are signaled in time and the session is not disconnecting.
+ A socket error was signaled while receiving messages from the server.
+
+
+
+ Sends a message to the server.
+
+ The message to send.
+ The client is not connected.
+ The operation timed out.
+ The size of the packet exceeds the maximum size defined by the protocol.
+
+
+
+ Sends an SSH packet to the server.
+
+ A byte array containing the packet to send.
+ The offset of the packet.
+ The length of the packet.
+ Client is not connected to the server.
+
+
+ The send is performed in a dispose lock to avoid
+ and/or when sending the packet.
+
+
+ This method is only to be used when the connection is established, as the locking
+ overhead is not required while establising the connection.
+
+
+
+
+
+ Sends a message to the server.
+
+ The message to send.
+
+ true if the message was sent to the server; otherwise, false.
+
+ The size of the packet exceeds the maximum size defined by the protocol.
+
+ This methods returns false when the attempt to send the message results in a
+ or a .
+
+
+
+
+ Receives the message from the server.
+
+
+ The incoming SSH message, or null if the connection with the SSH server was closed.
+
+
+ We need no locking here since all messages are read by a single thread.
+
+
+
+
+ Called when received.
+
+ message.
+
+
+
+ Called when received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when client is disconnecting from the server.
+
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Called when message received.
+
+ message.
+
+
+
+ Registers SSH message with the session.
+
+ The name of the message to register with the session.
+
+
+
+ Unregister SSH message from the session.
+
+ The name of the message to unregister with the session.
+
+
+
+ Loads a message from a given buffer.
+
+ An array of bytes from which to construct the message.
+ The zero-based byte offset in at which to begin reading.
+ The number of bytes to load.
+
+ A message constructed from .
+
+ The type of the message is not supported.
+
+
+
+ Establishes a socket connection to the specified host and port.
+
+ The host name of the server to connect to.
+ The port to connect to.
+ The connection failed to establish within the configured .
+ An error occurred trying to establish the connection.
+
+
+
+ Performs a blocking read on the socket until bytes are received.
+
+ An array of type that is the storage location for the received data.
+ The position in parameter to store the received data.
+ The number of bytes to read.
+
+ The number of bytes read.
+
+ The socket is closed.
+ The read has timed-out.
+ The read failed.
+
+
+
+ Gets a value indicating whether the socket is connected.
+
+
+ true if the socket is connected; otherwise, false.
+
+
+
+ As a first check we verify whether is
+ true. However, this only returns the state of the socket as of
+ the last I/O operation.
+
+
+ Therefore we use the combination of with mode
+ and to verify if the socket is still connected.
+
+
+ The MSDN doc mention the following on the return value of
+ with mode :
+
+ -
+ true if data is available for reading;
+
+ -
+ true if the connection has been closed, reset, or terminated; otherwise, returns false.
+
+
+
+
+ Conclusion: when the return value is true - but no data is available for reading - then
+ the socket is no longer connected.
+
+
+ When a is used from multiple threads, there's a race condition
+ between the invocation of and the moment
+ when the value of is obtained. To workaround this issue
+ we synchronize reads from the .
+
+
+
+
+
+ Performs a blocking read on the socket until bytes are received.
+
+ An array of type that is the storage location for the received data.
+ The position in parameter to store the received data.
+ The number of bytes to read.
+
+ The number of bytes read.
+
+ The read has timed-out.
+ The read failed.
+
+
+
+ Performs a blocking read on the socket until a line is read.
+
+ A that represents the time to wait until a line is read.
+ The read has timed-out.
+ An error occurred when trying to access the socket.
+
+ The line read from the socket, or null when the remote server has shutdown and all data has been received.
+
+
+
+
+ Shuts down and disposes the socket.
+
+
+
+
+ Listens for incoming message from the server and handles them. This method run as a task on separate thread.
+
+
+
+
+ Raises the event.
+
+ The .
+
+
+
+ Resets connection-specific information to ensure state of a previous connection
+ does not affect new connections.
+
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Gets or sets the connection info.
+
+ The connection info.
+
+
+
+ Create a new SSH session channel.
+
+
+ A new SSH session channel.
+
+
+
+
+ Create a new channel for a locally forwarded TCP/IP port.
+
+
+ A new channel for a locally forwarded TCP/IP port.
+
+
+
+
+ Creates a "forwarded-tcpip" SSH channel.
+
+
+ A new "forwarded-tcpip" SSH channel.
+
+
+
+
+ Sends a message to the server.
+
+ The message to send.
+ The client is not connected.
+ The operation timed out.
+ The size of the packet exceeds the maximum size defined by the protocol.
+
+
+
+ Sends a message to the server.
+
+ The message to send.
+
+ true if the message was sent to the server; otherwise, false.
+
+ The size of the packet exceeds the maximum size defined by the protocol.
+
+ This methods returns false when the attempt to send the message results in a
+ or a .
+
+
+
+
+ Implementation of the SSH File Transfer Protocol (SFTP) over SSH.
+
+
+
+
+ Holds the instance that is used to communicate to the
+ SFTP server.
+
+
+
+
+ Holds the operation timeout.
+
+
+
+
+ Holds the size of the buffer.
+
+
+
+
+ Gets or sets the operation timeout.
+
+
+ The timeout to wait until an operation completes. The default value is negative
+ one (-1) milliseconds, which indicates an infinite timeout period.
+
+ The method was called after the client was disposed.
+
+
+
+ Gets or sets the maximum size of the buffer in bytes.
+
+
+ The size of the buffer. The default buffer size is 32768 bytes (32 KB).
+
+
+
+ For write operations, this limits the size of the payload for
+ individual SSH_FXP_WRITE messages. The actual size is always
+ capped at the maximum packet size supported by the peer
+ (minus the size of protocol fields).
+
+
+ For read operations, this controls the size of the payload which
+ is requested from the peer in a SSH_FXP_READ message. The peer
+ will send the requested number of bytes in a SSH_FXP_DATA message,
+ possibly split over multiple SSH_MSG_CHANNEL_DATA messages.
+
+
+ To optimize the size of the SSH packets sent by the peer,
+ the actual requested size will take into account the size of the
+ SSH_FXP_DATA protocol fields.
+
+
+ The size of the each indivual SSH_FXP_DATA message is limited to the
+ local maximum packet size of the channel, which is set to 64 KB
+ for SSH.NET. However, the peer can limit this even further.
+
+
+ The method was called after the client was disposed.
+
+
+
+ Gets remote working directory.
+
+ Client is not connected.
+ The method was called after the client was disposed.
+
+
+
+ Gets sftp protocol version.
+
+ Client is not connected.
+ The method was called after the client was disposed.
+
+
+
+ Initializes a new instance of the class.
+
+ The connection info.
+ is null.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection port.
+ Authentication username.
+ Authentication password.
+ is null.
+ is invalid. -or- is null or contains only whitespace characters.
+ is not within and .
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Authentication username.
+ Authentication password.
+ is null.
+ is invalid. -or- is null contains only whitespace characters.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection port.
+ Authentication username.
+ Authentication private key file(s) .
+ is null.
+ is invalid. -or- is nunullll or contains only whitespace characters.
+ is not within and .
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Authentication username.
+ Authentication private key file(s) .
+ is null.
+ is invalid. -or- is null or contains only whitespace characters.
+
+
+
+ Initializes a new instance of the class.
+
+ The connection info.
+ Specified whether this instance owns the connection info.
+ is null.
+
+ If is true, the connection info will be disposed when this
+ instance is disposed.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The connection info.
+ Specified whether this instance owns the connection info.
+ The factory to use for creating new services.
+ is null.
+ is null.
+
+ If is true, the connection info will be disposed when this
+ instance is disposed.
+
+
+
+
+ Changes remote directory to path.
+
+ New directory path.
+ is null.
+ Client is not connected.
+ Permission to change directory denied by remote host. -or- A SSH command was denied by the server.
+ was not found on the remote host.
+ A SSH error where is the message from the remote host.
+ The method was called after the client was disposed.
+
+
+
+ Changes permissions of file(s) to specified mode.
+
+ File(s) path, may match multiple files.
+ The mode.
+ is null.
+ Client is not connected.
+ Permission to change permission on the path(s) was denied by the remote host. -or- A SSH command was denied by the server.
+ was not found on the remote host.
+ A SSH error where is the message from the remote host.
+ The method was called after the client was disposed.
+
+
+
+ Creates remote directory specified by path.
+
+ Directory path to create.
+ is null or contains only whitespace characters.
+ Client is not connected.
+ Permission to create the directory was denied by the remote host. -or- A SSH command was denied by the server.
+ A SSH error where is the message from the remote host.
+ The method was called after the client was disposed.
+
+
+
+ Deletes remote directory specified by path.
+
+ Directory to be deleted path.
+ is null or contains only whitespace characters.
+ Client is not connected.
+ was not found on the remote host.
+ Permission to delete the directory was denied by the remote host. -or- A SSH command was denied by the server.
+ A SSH error where is the message from the remote host.
+ The method was called after the client was disposed.
+
+
+
+ Deletes remote file specified by path.
+
+ File to be deleted path.
+ is null or contains only whitespace characters.
+ Client is not connected.
+ was not found on the remote host.
+ Permission to delete the file was denied by the remote host. -or- A SSH command was denied by the server.
+ A SSH error where is the message from the remote host.
+ The method was called after the client was disposed.
+
+
+
+ Renames remote file from old path to new path.
+
+ Path to the old file location.
+ Path to the new file location.
+ is null. -or- or is null.
+ Client is not connected.
+ Permission to rename the file was denied by the remote host. -or- A SSH command was denied by the server.
+ A SSH error where is the message from the remote host.
+ The method was called after the client was disposed.
+
+
+
+ Renames remote file from old path to new path.
+
+ Path to the old file location.
+ Path to the new file location.
+ if set to true then perform a posix rename.
+ is null. -or- or is null.
+ Client is not connected.
+ Permission to rename the file was denied by the remote host. -or- A SSH command was denied by the server.
+ A SSH error where is the message from the remote host.
+ The method was called after the client was disposed.
+
+
+
+ Creates a symbolic link from old path to new path.
+
+ The old path.
+ The new path.
+ is null. -or- is null or contains only whitespace characters.
+ Client is not connected.
+ Permission to create the symbolic link was denied by the remote host. -or- A SSH command was denied by the server.
+ A SSH error where is the message from the remote host.
+ The method was called after the client was disposed.
+
+
+
+ Retrieves list of files in remote directory.
+
+ The path.
+ The list callback.
+
+ A list of files.
+
+ is null.
+ Client is not connected.
+ Permission to list the contents of the directory was denied by the remote host. -or- A SSH command was denied by the server.
+ A SSH error where is the message from the remote host.
+ The method was called after the client was disposed.
+
+
+
+ Begins an asynchronous operation of retrieving list of files in remote directory.
+
+ The path.
+ The method to be called when the asynchronous write operation is completed.
+ A user-provided object that distinguishes this particular asynchronous write request from other requests.
+ The list callback.
+
+ An that references the asynchronous operation.
+
+ The method was called after the client was disposed.
+
+
+
+ Ends an asynchronous operation of retrieving list of files in remote directory.
+
+ The pending asynchronous SFTP request.
+
+ A list of files.
+
+ The object did not come from the corresponding async method on this type.-or- was called multiple times with the same .
+
+
+
+ Gets reference to remote file or directory.
+
+ The path.
+
+ A reference to file object.
+
+ Client is not connected.
+ was not found on the remote host.
+ is null.
+ The method was called after the client was disposed.
+
+
+
+ Checks whether file or directory exists;
+
+ The path.
+
+ true if directory or file exists; otherwise false.
+
+ is null or contains only whitespace characters.
+ Client is not connected.
+ Permission to perform the operation was denied by the remote host. -or- A SSH command was denied by the server.
+ A SSH error where is the message from the remote host.
+ The method was called after the client was disposed.
+
+
+
+ Downloads remote file specified by the path into the stream.
+
+ File to download.
+ Stream to write the file into.
+ The download callback.
+ is null.
+ is null or contains only whitespace characters.
+ Client is not connected.
+ Permission to perform the operation was denied by the remote host. -or- A SSH command was denied by the server.
+ was not found on the remote host.///
+ A SSH error where is the message from the remote host.
+ The method was called after the client was disposed.
+
+ Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream.
+
+
+
+
+ Begins an asynchronous file downloading into the stream.
+
+ The path.
+ The output.
+
+ An that references the asynchronous operation.
+
+ is null.
+ is null or contains only whitespace characters.
+ Client is not connected.
+ Permission to perform the operation was denied by the remote host. -or- A SSH command was denied by the server.
+ A SSH error where is the message from the remote host.
+ The method was called after the client was disposed.
+
+ Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream.
+
+
+
+
+ Begins an asynchronous file downloading into the stream.
+
+ The path.
+ The output.
+ The method to be called when the asynchronous write operation is completed.
+
+ An that references the asynchronous operation.
+
+ is null.
+ is null or contains only whitespace characters.
+ Client is not connected.
+ Permission to perform the operation was denied by the remote host. -or- A SSH command was denied by the server.
+ A SSH error where is the message from the remote host.
+ The method was called after the client was disposed.
+
+ Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream.
+
+
+
+
+ Begins an asynchronous file downloading into the stream.
+
+ The path.
+ The output.
+ The method to be called when the asynchronous write operation is completed.
+ A user-provided object that distinguishes this particular asynchronous write request from other requests.
+ The download callback.
+
+ An that references the asynchronous operation.
+
+ is null.
+ is null or contains only whitespace characters.
+ The method was called after the client was disposed.
+
+ Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream.
+
+
+
+
+ Ends an asynchronous file downloading into the stream.
+
+ The pending asynchronous SFTP request.
+ The object did not come from the corresponding async method on this type.-or- was called multiple times with the same .
+ Client is not connected.
+ Permission to perform the operation was denied by the remote host. -or- A SSH command was denied by the server.
+ The path was not found on the remote host.
+ A SSH error where is the message from the remote host.
+
+
+
+ Uploads stream into remote file.
+
+ Data input stream.
+ Remote file path.
+ The upload callback.
+ is null.
+ is null or contains only whitespace characters.
+ Client is not connected.
+ Permission to upload the file was denied by the remote host. -or- A SSH command was denied by the server.
+ A SSH error where is the message from the remote host.
+ The method was called after the client was disposed.
+
+ Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream.
+
+
+
+
+ Uploads stream into remote file.
+
+ Data input stream.
+ Remote file path.
+ if set to true then existing file will be overwritten.
+ The upload callback.
+ is null.
+ is null or contains only whitespace characters.
+ Client is not connected.
+ Permission to upload the file was denied by the remote host. -or- A SSH command was denied by the server.
+ A SSH error where is the message from the remote host.
+ The method was called after the client was disposed.
+
+ Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream.
+
+
+
+
+ Begins an asynchronous uploading the stream into remote file.
+
+ Data input stream.
+ Remote file path.
+
+ An that references the asynchronous operation.
+
+ is null.
+ is null or contains only whitespace characters.
+ Client is not connected.
+ Permission to list the contents of the directory was denied by the remote host. -or- A SSH command was denied by the server.
+ A SSH error where is the message from the remote host.
+ The method was called after the client was disposed.
+
+
+ Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream.
+
+
+ If the remote file already exists, it is overwritten and truncated.
+
+
+
+
+
+ Begins an asynchronous uploading the stream into remote file.
+
+ Data input stream.
+ Remote file path.
+ The method to be called when the asynchronous write operation is completed.
+
+ An that references the asynchronous operation.
+
+ is null.
+ is null or contains only whitespace characters.
+ Client is not connected.
+ Permission to list the contents of the directory was denied by the remote host. -or- A SSH command was denied by the server.
+ A SSH error where is the message from the remote host.
+ The method was called after the client was disposed.
+
+
+ Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream.
+
+
+ If the remote file already exists, it is overwritten and truncated.
+
+
+
+
+
+ Begins an asynchronous uploading the stream into remote file.
+
+ Data input stream.
+ Remote file path.
+ The method to be called when the asynchronous write operation is completed.
+ A user-provided object that distinguishes this particular asynchronous write request from other requests.
+ The upload callback.
+
+ An that references the asynchronous operation.
+
+ is null.
+ is null or contains only whitespace characters.
+ Client is not connected.
+ Permission to list the contents of the directory was denied by the remote host. -or- A SSH command was denied by the server.
+ A SSH error where is the message from the remote host.
+ The method was called after the client was disposed.
+
+
+ Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream.
+
+
+ If the remote file already exists, it is overwritten and truncated.
+
+
+
+
+
+ Begins an asynchronous uploading the stream into remote file.
+
+ Data input stream.
+ Remote file path.
+ Specified whether an existing file can be overwritten.
+ The method to be called when the asynchronous write operation is completed.
+ A user-provided object that distinguishes this particular asynchronous write request from other requests.
+ The upload callback.
+
+ An that references the asynchronous operation.
+
+ is null.
+ is null or contains only whitespace characters.
+ The method was called after the client was disposed.
+
+
+ Method calls made by this method to , may under certain conditions result in exceptions thrown by the stream.
+
+
+ When refers to an existing file, set to true to overwrite and truncate that file.
+ If is false, the upload will fail and will throw an
+ .
+
+
+
+
+
+ Ends an asynchronous uploading the stream into remote file.
+
+ The pending asynchronous SFTP request.
+ The object did not come from the corresponding async method on this type.-or- was called multiple times with the same .
+ Client is not connected.
+ The directory of the file was not found on the remote host.
+ Permission to upload the file was denied by the remote host. -or- A SSH command was denied by the server.
+ A SSH error where is the message from the remote host.
+
+
+
+ Gets status using statvfs@openssh.com request.
+
+ The path.
+
+ A instance that contains file status information.
+
+ Client is not connected.
+ is null.
+ The method was called after the client was disposed.
+
+
+
+ Appends lines to a file, creating the file if it does not already exist.
+
+ The file to append the lines to. The file is created if it does not already exist.
+ The lines to append to the file.
+ isnull -or- is null.
+ Client is not connected.
+ The specified path is invalid, or its directory was not found on the remote host.
+ The method was called after the client was disposed.
+
+ The characters are written to the file using UTF-8 encoding without a Byte-Order Mark (BOM)
+
+
+
+
+ Appends lines to a file by using a specified encoding, creating the file if it does not already exist.
+
+ The file to append the lines to. The file is created if it does not already exist.
+ The lines to append to the file.
+ The character encoding to use.
+ is null. -or- is null. -or- is null.
+ Client is not connected.
+ The specified path is invalid, or its directory was not found on the remote host.
+ The method was called after the client was disposed.
+
+
+
+ Appends the specified string to the file, creating the file if it does not already exist.
+
+ The file to append the specified string to.
+ The string to append to the file.
+ is null. -or- is null.
+ Client is not connected.
+ The specified path is invalid, or its directory was not found on the remote host.
+ The method was called after the client was disposed.
+
+ The characters are written to the file using UTF-8 encoding without a Byte-Order Mark (BOM).
+
+
+
+
+ Appends the specified string to the file, creating the file if it does not already exist.
+
+ The file to append the specified string to.
+ The string to append to the file.
+ The character encoding to use.
+ is null. -or- is null. -or- is null.
+ Client is not connected.
+ The specified path is invalid, or its directory was not found on the remote host.
+ The method was called after the client was disposed.
+
+
+
+ Creates a that appends UTF-8 encoded text to the specified file,
+ creating the file if it does not already exist.
+
+ The path to the file to append to.
+
+ A that appends text to a file using UTF-8 encoding without a
+ Byte-Order Mark (BOM).
+
+ is null.
+ Client is not connected.
+ The specified path is invalid, or its directory was not found on the remote host.
+ The method was called after the client was disposed.
+
+
+
+ Creates a that appends text to a file using the specified
+ encoding, creating the file if it does not already exist.
+
+ The path to the file to append to.
+ The character encoding to use.
+
+ A that appends text to a file using the specified encoding.
+
+ is null. -or- is null.
+ Client is not connected.
+ The specified path is invalid, or its directory was not found on the remote host.
+ The method was called after the client was disposed.
+
+
+
+ Creates or overwrites a file in the specified path.
+
+ The path and name of the file to create.
+
+ A that provides read/write access to the file specified in path.
+
+ is null.
+ Client is not connected.
+ The specified path is invalid, or its directory was not found on the remote host.
+ The method was called after the client was disposed.
+
+ If the target file already exists, it is first truncated to zero bytes.
+
+
+
+
+ Creates or overwrites the specified file.
+
+ The path and name of the file to create.
+ The maximum number of bytes buffered for reads and writes to the file.
+
+ A that provides read/write access to the file specified in path.
+
+ is null.
+ Client is not connected.
+ The specified path is invalid, or its directory was not found on the remote host.
+ The method was called after the client was disposed.
+
+ If the target file already exists, it is first truncated to zero bytes.
+
+
+
+
+ Creates or opens a file for writing UTF-8 encoded text.
+
+ The file to be opened for writing.
+
+ A that writes text to a file using UTF-8 encoding without
+ a Byte-Order Mark (BOM).
+
+ is null.
+ Client is not connected.
+ The specified path is invalid, or its directory was not found on the remote host.
+ The method was called after the client was disposed.
+
+
+ If the target file already exists, it is overwritten. It is not first truncated to zero bytes.
+
+
+ If the target file does not exist, it is created.
+
+
+
+
+
+ Creates or opens a file for writing text using the specified encoding.
+
+ The file to be opened for writing.
+ The character encoding to use.
+
+ A that writes to a file using the specified encoding.
+
+ is null.
+ Client is not connected.
+ The specified path is invalid, or its directory was not found on the remote host.
+ The method was called after the client was disposed.
+
+
+ If the target file already exists, it is overwritten. It is not first truncated to zero bytes.
+
+
+ If the target file does not exist, it is created.
+
+
+
+
+
+ Deletes the specified file or directory.
+
+ The name of the file or directory to be deleted. Wildcard characters are not supported.
+ is null.
+ Client is not connected.
+ was not found on the remote host.
+ The method was called after the client was disposed.
+
+
+
+ Returns the date and time the specified file or directory was last accessed.
+
+ The file or directory for which to obtain access date and time information.
+
+ A structure set to the date and time that the specified file or directory was last accessed.
+ This value is expressed in local time.
+
+ is null.
+ Client is not connected.
+ The method was called after the client was disposed.
+
+
+
+ Returns the date and time, in coordinated universal time (UTC), that the specified file or directory was last accessed.
+
+ The file or directory for which to obtain access date and time information.
+
+ A structure set to the date and time that the specified file or directory was last accessed.
+ This value is expressed in UTC time.
+
+ is null.
+ Client is not connected.
+ The method was called after the client was disposed.
+
+
+
+ Returns the date and time the specified file or directory was last written to.
+
+ The file or directory for which to obtain write date and time information.
+
+ A structure set to the date and time that the specified file or directory was last written to.
+ This value is expressed in local time.
+
+ is null.
+ Client is not connected.
+ The method was called after the client was disposed.
+
+
+
+ Returns the date and time, in coordinated universal time (UTC), that the specified file or directory was last written to.
+
+ The file or directory for which to obtain write date and time information.
+
+ A structure set to the date and time that the specified file or directory was last written to.
+ This value is expressed in UTC time.
+
+ is null.
+ Client is not connected.
+ The method was called after the client was disposed.
+
+
+
+ Opens a on the specified path with read/write access.
+
+ The file to open.
+ A value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.
+
+ An unshared that provides access to the specified file, with the specified mode and read/write access.
+
+ is null.
+ Client is not connected.
+ The method was called after the client was disposed.
+
+
+
+ Opens a on the specified path, with the specified mode and access.
+
+ The file to open.
+ A value that specifies whether a file is created if one does not exist, and determines whether the contents of existing files are retained or overwritten.
+ A value that specifies the operations that can be performed on the file.
+
+ An unshared that provides access to the specified file, with the specified mode and access.
+
+ is null.
+ Client is not connected.
+ The method was called after the client was disposed.
+
+
+
+ Opens an existing file for reading.
+
+ The file to be opened for reading.
+
+ A read-only on the specified path.
+
+ is null.
+ Client is not connected.
+ The method was called after the client was disposed.
+
+
+
+ Opens an existing UTF-8 encoded text file for reading.
+
+ The file to be opened for reading.
+
+ A on the specified path.
+
+ is null.
+ Client is not connected.
+ The method was called after the client was disposed.
+
+
+
+ Opens a file for writing.
+
+ The file to be opened for writing.
+
+ An unshared object on the specified path with access.
+
+ is null.
+ Client is not connected.
+ The method was called after the client was disposed.
+
+ If the file does not exist, it is created.
+
+
+
+
+ Opens a binary file, reads the contents of the file into a byte array, and closes the file.
+
+ The file to open for reading.
+
+ A byte array containing the contents of the file.
+
+ is null.
+ Client is not connected.
+ The method was called after the client was disposed.
+
+
+
+ Opens a text file, reads all lines of the file using UTF-8 encoding, and closes the file.
+
+ The file to open for reading.
+
+ A string array containing all lines of the file.
+
+ is null.
+ Client is not connected.
+ The method was called after the client was disposed.
+
+
+
+ Opens a file, reads all lines of the file with the specified encoding, and closes the file.
+
+ The file to open for reading.
+ The encoding applied to the contents of the file.
+
+ A string array containing all lines of the file.
+
+ is null.
+ Client is not connected.
+ The method was called after the client was disposed.
+
+
+
+ Opens a text file, reads all lines of the file with the UTF-8 encoding, and closes the file.
+
+ The file to open for reading.
+
+ A string containing all lines of the file.
+
+ is null.
+ Client is not connected.
+ The method was called after the client was disposed.
+
+
+
+ Opens a file, reads all lines of the file with the specified encoding, and closes the file.
+
+ The file to open for reading.
+ The encoding applied to the contents of the file.
+
+ A string containing all lines of the file.
+
+ is null.
+ Client is not connected.
+ The method was called after the client was disposed.
+
+
+
+ Reads the lines of a file with the UTF-8 encoding.
+
+ The file to read.
+
+ The lines of the file.
+
+ is null.
+ Client is not connected.
+ The method was called after the client was disposed.
+
+
+
+ Read the lines of a file that has a specified encoding.
+
+ The file to read.
+ The encoding that is applied to the contents of the file.
+
+ The lines of the file.
+
+ is null.
+ Client is not connected.
+ The method was called after the client was disposed.
+
+
+
+ Sets the date and time the specified file was last accessed.
+
+ The file for which to set the access date and time information.
+ A containing the value to set for the last access date and time of path. This value is expressed in local time.
+
+
+
+ Sets the date and time, in coordinated universal time (UTC), that the specified file was last accessed.
+
+ The file for which to set the access date and time information.
+ A containing the value to set for the last access date and time of path. This value is expressed in UTC time.
+
+
+
+ Sets the date and time that the specified file was last written to.
+
+ The file for which to set the date and time information.
+ A containing the value to set for the last write date and time of path. This value is expressed in local time.
+
+
+
+ Sets the date and time, in coordinated universal time (UTC), that the specified file was last written to.
+
+ The file for which to set the date and time information.
+ A containing the value to set for the last write date and time of path. This value is expressed in UTC time.
+
+
+
+ Writes the specified byte array to the specified file, and closes the file.
+
+ The file to write to.
+ The bytes to write to the file.
+ is null.
+ Client is not connected.
+ The specified path is invalid, or its directory was not found on the remote host.
+ The method was called after the client was disposed.
+
+
+ If the target file already exists, it is overwritten. It is not first truncated to zero bytes.
+
+
+ If the target file does not exist, it is created.
+
+
+
+
+
+ Writes a collection of strings to the file using the UTF-8 encoding, and closes the file.
+
+ The file to write to.
+ The lines to write to the file.
+ is null.
+ Client is not connected.
+ The specified path is invalid, or its directory was not found on the remote host.
+ The method was called after the client was disposed.
+
+
+ The characters are written to the file using UTF-8 encoding without a Byte-Order Mark (BOM).
+
+
+ If the target file already exists, it is overwritten. It is not first truncated to zero bytes.
+
+
+ If the target file does not exist, it is created.
+
+
+
+
+
+ Write the specified string array to the file using the UTF-8 encoding, and closes the file.
+
+ The file to write to.
+ The string array to write to the file.
+ is null.
+ Client is not connected.
+ The specified path is invalid, or its directory was not found on the remote host.
+ The method was called after the client was disposed.
+
+
+ The characters are written to the file using UTF-8 encoding without a Byte-Order Mark (BOM).
+
+
+ If the target file already exists, it is overwritten. It is not first truncated to zero bytes.
+
+
+ If the target file does not exist, it is created.
+
+
+
+
+
+ Writes a collection of strings to the file using the specified encoding, and closes the file.
+
+ The file to write to.
+ The lines to write to the file.
+ The character encoding to use.
+ is null.
+ Client is not connected.
+ The specified path is invalid, or its directory was not found on the remote host.
+ The method was called after the client was disposed.
+
+
+ If the target file already exists, it is overwritten. It is not first truncated to zero bytes.
+
+
+ If the target file does not exist, it is created.
+
+
+
+
+
+ Writes the specified string array to the file by using the specified encoding, and closes the file.
+
+ The file to write to.
+ The string array to write to the file.
+ An object that represents the character encoding applied to the string array.
+ is null.
+ Client is not connected.
+ The specified path is invalid, or its directory was not found on the remote host.
+ The method was called after the client was disposed.
+
+
+ If the target file already exists, it is overwritten. It is not first truncated to zero bytes.
+
+
+ If the target file does not exist, it is created.
+
+
+
+
+
+ Writes the specified string to the file using the UTF-8 encoding, and closes the file.
+
+ The file to write to.
+ The string to write to the file.
+ is null.
+ Client is not connected.
+ The specified path is invalid, or its directory was not found on the remote host.
+ The method was called after the client was disposed.
+
+
+ The characters are written to the file using UTF-8 encoding without a Byte-Order Mark (BOM).
+
+
+ If the target file already exists, it is overwritten. It is not first truncated to zero bytes.
+
+
+ If the target file does not exist, it is created.
+
+
+
+
+
+ Writes the specified string to the file using the specified encoding, and closes the file.
+
+ The file to write to.
+ The string to write to the file.
+ The encoding to apply to the string.
+ is null.
+ Client is not connected.
+ The specified path is invalid, or its directory was not found on the remote host.
+ The method was called after the client was disposed.
+
+
+ If the target file already exists, it is overwritten. It is not first truncated to zero bytes.
+
+
+ If the target file does not exist, it is created.
+
+
+
+
+
+ Gets the of the file on the path.
+
+ The path to the file.
+
+ The of the file on the path.
+
+ is null.
+ Client is not connected.
+ was not found on the remote host.
+ The method was called after the client was disposed.
+
+
+
+ Sets the specified of the file on the specified path.
+
+ The path to the file.
+ The desired .
+ is null.
+ Client is not connected.
+ The method was called after the client was disposed.
+
+
+
+ Synchronizes the directories.
+
+ The source path.
+ The destination path.
+ The search pattern.
+
+ A list of uploaded files.
+
+ is null.
+ is null or contains only whitespace.
+ was not found on the remote host.
+
+
+
+ Begins the synchronize directories.
+
+ The source path.
+ The destination path.
+ The search pattern.
+ The async callback.
+ The state.
+
+ An that represents the asynchronous directory synchronization.
+
+ is null.
+ is null or contains only whitespace.
+
+
+
+ Ends the synchronize directories.
+
+ The async result.
+
+ A list of uploaded files.
+
+ The object did not come from the corresponding async method on this type.-or- was called multiple times with the same .
+ The destination path was not found on the remote host.
+
+
+
+ Internals the list directory.
+
+ The path.
+ The list callback.
+
+ A list of files in the specfied directory.
+
+ is null.
+ Client not connected.
+
+
+
+ Internals the download file.
+
+ The path.
+ The output.
+ An that references the asynchronous request.
+ The download callback.
+ is null.
+ is null or contains whitespace.
+ Client not connected.
+
+
+
+ Internals the upload file.
+
+ The input.
+ The path.
+ The flags.
+ An that references the asynchronous request.
+ The upload callback.
+ is null.
+ is null or contains whitespace.
+ Client not connected.
+
+
+
+ Called when client is connected to the server.
+
+
+
+
+ Called when client is disconnecting from the server.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Represents instance of the SSH shell object
+
+
+
+
+ Gets a value indicating whether this shell is started.
+
+
+ true if started is started; otherwise, false.
+
+
+
+
+ Occurs when shell is starting.
+
+
+
+
+ Occurs when shell is started.
+
+
+
+
+ Occurs when shell is stopping.
+
+
+
+
+ Occurs when shell is stopped.
+
+
+
+
+ Occurs when an error occurred.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The session.
+ The input.
+ The output.
+ The extended output.
+ Name of the terminal.
+ The columns.
+ The rows.
+ The width.
+ The height.
+ The terminal modes.
+ Size of the buffer for output stream.
+
+
+
+ Starts this shell.
+
+ Shell is started.
+
+
+
+ Stops this shell.
+
+ Shell is not started.
+
+
+
+ Unsubscribes the current from session events.
+
+ The session.
+
+ Does nothing when is null.
+
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Contains operation for working with SSH Shell.
+
+
+
+
+ Occurs when data was received.
+
+
+
+
+ Occurs when an error occurred.
+
+
+
+
+ Gets a value that indicates whether data is available on the to be read.
+
+
+ true if data is available to be read; otherwise, false.
+
+
+
+
+ Gets the number of bytes that will be written to the internal buffer.
+
+
+ The number of bytes that will be written to the internal buffer.
+
+
+
+
+ Initializes a new instance.
+
+ The SSH session.
+ The TERM environment variable.
+ The terminal width in columns.
+ The terminal width in rows.
+ The terminal height in pixels.
+ The terminal height in pixels.
+ The terminal mode values.
+ The size of the buffer.
+
+
+
+ Gets a value indicating whether the current stream supports reading.
+
+
+ true if the stream supports reading; otherwise, false.
+
+
+
+
+ Gets a value indicating whether the current stream supports seeking.
+
+
+ true if the stream supports seeking; otherwise, false.
+
+
+
+
+ Gets a value indicating whether the current stream supports writing.
+
+
+ true if the stream supports writing; otherwise, false.
+
+
+
+
+ Clears all buffers for this stream and causes any buffered data to be written to the underlying device.
+
+ An I/O error occurs.
+ Methods were called after the stream was closed.
+
+
+
+ Gets the length in bytes of the stream.
+
+ A long value representing the length of the stream in bytes.
+ A class derived from Stream does not support seeking.
+ Methods were called after the stream was closed.
+
+
+
+ Gets or sets the position within the current stream.
+
+
+ The current position within the stream.
+
+ An I/O error occurs.
+ The stream does not support seeking.
+ Methods were called after the stream was closed.
+
+
+
+ Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
+
+ An array of bytes. When this method returns, the buffer contains the specified byte array with the values between and ( + - 1) replaced by the bytes read from the current source.
+ The zero-based byte offset in at which to begin storing the data read from the current stream.
+ The maximum number of bytes to be read from the current stream.
+
+ The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached.
+
+ The sum of and is larger than the buffer length.
+ is null.
+ or is negative.
+ An I/O error occurs.
+ The stream does not support reading.
+ Methods were called after the stream was closed.
+
+
+
+ This method is not supported.
+
+ A byte offset relative to the parameter.
+ A value of type indicating the reference point used to obtain the new position.
+
+ The new position within the current stream.
+
+ An I/O error occurs.
+ The stream does not support seeking, such as if the stream is constructed from a pipe or console output.
+ Methods were called after the stream was closed.
+
+
+
+ This method is not supported.
+
+ The desired length of the current stream in bytes.
+ An I/O error occurs.
+ The stream does not support both writing and seeking, such as if the stream is constructed from a pipe or console output.
+ Methods were called after the stream was closed.
+
+
+
+ Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
+
+ An array of bytes. This method copies bytes from to the current stream.
+ The zero-based byte offset in at which to begin copying bytes to the current stream.
+ The number of bytes to be written to the current stream.
+ The sum of and is greater than the buffer length.
+ is null.
+ or is negative.
+ An I/O error occurs.
+ The stream does not support writing.
+ Methods were called after the stream was closed.
+
+
+
+ Expects the specified expression and performs action when one is found.
+
+ The expected expressions and actions to perform.
+
+
+
+ Expects the specified expression and performs action when one is found.
+
+ Time to wait for input.
+ The expected expressions and actions to perform, if the specified time elapsed and expected condition have not met, that method will exit without executing any action.
+
+
+
+ Begins the expect.
+
+ The expect actions.
+
+ An that references the asynchronous operation.
+
+
+
+
+ Begins the expect.
+
+ The callback.
+ The expect actions.
+
+ An that references the asynchronous operation.
+
+
+
+
+ Begins the expect.
+
+ The callback.
+ The state.
+ The expect actions.
+
+ An that references the asynchronous operation.
+
+
+
+
+ Begins the expect.
+
+ The timeout.
+ The callback.
+ The state.
+ The expect actions.
+
+ An that references the asynchronous operation.
+
+
+
+
+ Ends the execute.
+
+ The async result.
+ Either the IAsyncResult object did not come from the corresponding async method on this type, or EndExecute was called multiple times with the same IAsyncResult.
+
+
+
+ Expects the expression specified by text.
+
+ The text to expect.
+
+ Text available in the shell that ends with expected text.
+
+
+
+
+ Expects the expression specified by text.
+
+ The text to expect.
+ Time to wait for input.
+
+ The text available in the shell that ends with expected text, or null if the specified time has elapsed.
+
+
+
+
+ Expects the expression specified by regular expression.
+
+ The regular expression to expect.
+
+ The text available in the shell that contains all the text that ends with expected expression.
+
+
+
+
+ Expects the expression specified by regular expression.
+
+ The regular expression to expect.
+ Time to wait for input.
+
+ The text available in the shell that contains all the text that ends with expected expression,
+ or null if the specified time has elapsed.
+
+
+
+
+ Reads the line from the shell. If line is not available it will block the execution and will wait for new line.
+
+
+ The line read from the shell.
+
+
+
+
+ Reads a line from the shell. If line is not available it will block the execution and will wait for new line.
+
+ Time to wait for input.
+
+ The line read from the shell, or null when no input is received for the specified timeout.
+
+
+
+
+ Reads text available in the shell.
+
+
+ The text available in the shell.
+
+
+
+
+ Writes the specified text to the shell.
+
+ The text to be written to the shell.
+
+ If is null, nothing is written.
+
+
+
+
+ Writes the line to the shell.
+
+ The line to be written to the shell.
+
+ If is null, only the line terminator is written.
+
+
+
+
+ Releases the unmanaged resources used by the and optionally releases the managed resources.
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Unsubscribes the current from session events.
+
+ The session.
+
+ Does nothing when is null.
+
+
+
+
+ Provides client connection to SSH server.
+
+
+
+
+ Holds the list of forwarded ports
+
+
+
+
+ Holds a value indicating whether the current instance is disposed.
+
+
+ true if the current instance is disposed; otherwise, false.
+
+
+
+
+ Gets the list of forwarded ports.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The connection info.
+
+
+
+
+
+
+ is null.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection port.
+ Authentication username.
+ Authentication password.
+ is null.
+ is invalid, or is null or contains only whitespace characters.
+ is not within and .
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Authentication username.
+ Authentication password.
+
+
+
+ is null.
+ is invalid, or is null or contains only whitespace characters.
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Connection port.
+ Authentication username.
+ Authentication private key file(s) .
+
+
+
+
+ is null.
+ is invalid, -or- is null or contains only whitespace characters.
+ is not within and .
+
+
+
+ Initializes a new instance of the class.
+
+ Connection host.
+ Authentication username.
+ Authentication private key file(s) .
+
+
+
+
+ is null.
+ is invalid, -or- is null or contains only whitespace characters.
+
+
+
+ Initializes a new instance of the class.
+
+ The connection info.
+ Specified whether this instance owns the connection info.
+ is null.
+
+ If is true, then the
+ connection info will be disposed when this instance is disposed.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The connection info.
+ Specified whether this instance owns the connection info.
+ The factory to use for creating new services.
+ is null.
+ is null.
+
+ If is true, then the
+ connection info will be disposed when this instance is disposed.
+
+
+
+
+ Called when client is disconnecting from the server.
+
+
+
+
+ Adds the forwarded port.
+
+ The port.
+
+
+
+
+ Forwarded port is already added to a different client.
+ is null.
+ Client is not connected.
+
+
+
+ Stops and removes the forwarded port from the list.
+
+ Forwarded port.
+ is null.
+
+
+
+ Creates the command to be executed.
+
+ The command text.
+ object.
+ Client is not connected.
+
+
+
+ Creates the command to be executed with specified encoding.
+
+ The command text.
+ The encoding to use for results.
+ object which uses specified encoding.
+ This method will change current default encoding.
+ Client is not connected.
+ or is null.
+
+
+
+ Creates and executes the command.
+
+ The command text.
+ Returns an instance of with execution results.
+ This method internally uses asynchronous calls.
+
+
+
+
+ CommandText property is empty.
+ Invalid Operation - An existing channel was used to execute this command.
+ Asynchronous operation is already in progress.
+ Client is not connected.
+ is null.
+
+
+
+ Creates the shell.
+
+ The input.
+ The output.
+ The extended output.
+ Name of the terminal.
+ The columns.
+ The rows.
+ The width.
+ The height.
+ The terminal mode.
+ Size of the internal read buffer.
+
+ Returns a representation of a object.
+
+ Client is not connected.
+
+
+
+ Creates the shell.
+
+ The input.
+ The output.
+ The extended output.
+ Name of the terminal.
+ The columns.
+ The rows.
+ The width.
+ The height.
+ The terminal mode.
+
+ Returns a representation of a object.
+
+ Client is not connected.
+
+
+
+ Creates the shell.
+
+ The input.
+ The output.
+ The extended output.
+
+ Returns a representation of a object.
+
+ Client is not connected.
+
+
+
+ Creates the shell.
+
+ The encoding to use to send the input.
+ The input.
+ The output.
+ The extended output.
+ Name of the terminal.
+ The columns.
+ The rows.
+ The width.
+ The height.
+ The terminal mode.
+ Size of the internal read buffer.
+
+ Returns a representation of a object.
+
+ Client is not connected.
+
+
+
+ Creates the shell.
+
+ The encoding.
+ The input.
+ The output.
+ The extended output.
+ Name of the terminal.
+ The columns.
+ The rows.
+ The width.
+ The height.
+ The terminal modes.
+
+ Returns a representation of a object.
+
+ Client is not connected.
+
+
+
+ Creates the shell.
+
+ The encoding.
+ The input.
+ The output.
+ The extended output.
+
+ Returns a representation of a object.
+
+ Client is not connected.
+
+
+
+ Creates the shell stream.
+
+ The TERM environment variable.
+ The terminal width in columns.
+ The terminal width in rows.
+ The terminal height in pixels.
+ The terminal height in pixels.
+ The size of the buffer.
+
+ The created instance.
+
+ Client is not connected.
+
+
+ The TERM environment variable contains an identifier for the text window's capabilities.
+ You can get a detailed list of these cababilities by using the ‘infocmp’ command.
+
+
+ The column/row dimensions override the pixel dimensions(when nonzero). Pixel dimensions refer
+ to the drawable area of the window.
+
+
+
+
+
+ Creates the shell stream.
+
+ The TERM environment variable.
+ The terminal width in columns.
+ The terminal width in rows.
+ The terminal height in pixels.
+ The terminal height in pixels.
+ The size of the buffer.
+ The terminal mode values.
+
+ The created instance.
+
+ Client is not connected.
+
+
+ The TERM environment variable contains an identifier for the text window's capabilities.
+ You can get a detailed list of these cababilities by using the ‘infocmp’ command.
+
+
+ The column/row dimensions override the pixel dimensions(when non-zero). Pixel dimensions refer
+ to the drawable area of the window.
+
+
+
+
+
+ Stops forwarded ports.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Represents SSH command that can be executed.
+
+
+
+
+ Gets the command text.
+
+
+
+
+ Gets or sets the command timeout.
+
+
+ The command timeout.
+
+
+
+
+
+
+
+ Gets the command exit status.
+
+
+
+
+
+
+
+ Gets the output stream.
+
+
+
+
+
+
+
+ Gets the extended output stream.
+
+
+
+
+
+
+
+ Gets the command execution result.
+
+
+
+
+
+
+
+ Gets the command execution error.
+
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+ The session.
+ The command text.
+ The encoding to use for the results.
+ Either , is null.
+
+
+
+ Begins an asynchronous command execution.
+
+
+ An that represents the asynchronous command execution, which could still be pending.
+
+
+
+
+ Asynchronous operation is already in progress.
+ Invalid operation.
+ CommandText property is empty.
+ Client is not connected.
+ Operation has timed out.
+ Asynchronous operation is already in progress.
+ CommandText property is empty.
+
+
+
+ Begins an asynchronous command execution.
+
+ An optional asynchronous callback, to be called when the command execution is complete.
+
+ An that represents the asynchronous command execution, which could still be pending.
+
+ Asynchronous operation is already in progress.
+ Invalid operation.
+ CommandText property is empty.
+ Client is not connected.
+ Operation has timed out.
+ Asynchronous operation is already in progress.
+ CommandText property is empty.
+
+
+
+ Begins an asynchronous command execution.
+
+ An optional asynchronous callback, to be called when the command execution is complete.
+ A user-provided object that distinguishes this particular asynchronous read request from other requests.
+
+ An that represents the asynchronous command execution, which could still be pending.
+
+ Asynchronous operation is already in progress.
+ Invalid operation.
+ CommandText property is empty.
+ Client is not connected.
+ Operation has timed out.
+ Asynchronous operation is already in progress.
+ CommandText property is empty.
+
+
+
+ Begins an asynchronous command execution.
+
+ The command text.
+ An optional asynchronous callback, to be called when the command execution is complete.
+ A user-provided object that distinguishes this particular asynchronous read request from other requests.
+
+ An that represents the asynchronous command execution, which could still be pending.
+
+ Client is not connected.
+ Operation has timed out.
+
+
+
+ Waits for the pending asynchronous command execution to complete.
+
+ The reference to the pending asynchronous request to finish.
+ Command execution result.
+
+
+
+ Either the IAsyncResult object did not come from the corresponding async method on this type, or EndExecute was called multiple times with the same IAsyncResult.
+ is null.
+
+
+
+ Executes command specified by property.
+
+ Command execution result
+
+
+
+
+
+ Client is not connected.
+ Operation has timed out.
+
+
+
+ Cancels command execution in asynchronous scenarios.
+
+
+
+
+ Executes the specified command text.
+
+ The command text.
+ Command execution result
+ Client is not connected.
+ Operation has timed out.
+
+
+ Command '{0}' has timed out.
+ The actual command will be included in the exception message.
+
+
+
+ Unsubscribes the current from channel events, and disposes
+ the .
+
+ The channel.
+
+ Does nothing when is null.
+
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Releases unmanaged resources and performs other cleanup operations before the
+ is reclaimed by garbage collection.
+
+
+
+
+ Defines the highest message number that is currently supported.
+
+
+
+
+ Defines the total number of supported messages.
+
+
+
+
+ Disables and deactivate all messages.
+
+
+
+
+ Base class for SSH subsystem implementations
+
+
+
+
+ Holds the number of system wait handles that are returned as the leading entries in the array returned
+ in .
+
+
+
+
+ Gets or set the number of seconds to wait for an operation to complete.
+
+
+ The number of seconds to wait for an operation to complete, or -1 to wait indefinitely.
+
+
+
+
+ Occurs when an error occurred.
+
+
+
+
+ Occurs when the server has disconnected from the session.
+
+
+
+
+ Gets the channel associated with this session.
+
+
+ The channel associated with this session.
+
+
+
+
+ Gets a value indicating whether this session is open.
+
+
+ true if this session is open; otherwise, false.
+
+
+
+
+ Initializes a new instance of the SubsystemSession class.
+
+ The session.
+ Name of the subsystem.
+ The number of milliseconds to wait for a given operation to complete, or -1 to wait indefinitely.
+ or is null.
+
+
+
+ Connects the subsystem using a new SSH channel session.
+
+ The session is already connected.
+ The method was called after the session was disposed.
+
+
+
+ Disconnects the subsystem channel.
+
+
+
+
+ Sends data to the subsystem.
+
+ The data to be sent.
+
+
+
+ Called when channel is open.
+
+
+
+
+ Called when data is received.
+
+ The data.
+
+
+
+ Raises the error.
+
+ The error.
+
+
+
+ Waits a specified time for a given to get signaled.
+
+ The handle to wait for.
+ To number of milliseconds to wait for to get signaled, or -1 to wait indefinitely.
+ The connection was closed by the server.
+ The channel was closed.
+ The handle did not get signaled within the specified timeout.
+
+
+
+ Blocks the current thread until the specified gets signaled, using a
+ 32-bit signed integer to specify the time interval in milliseconds.
+
+ The handle to wait for.
+ To number of milliseconds to wait for to get signaled, or -1 to wait indefinitely.
+
+ true if received a signal within the specified timeout;
+ otherwise, false.
+
+ The connection was closed by the server.
+ The channel was closed.
+
+ The blocking wait is also interrupted when either the established channel is closed, the current
+ session is disconnected or an unexpected occurred while processing a channel
+ or session event.
+
+
+
+
+ Blocks the current thread until the specified gets signaled, using a
+ 32-bit signed integer to specify the time interval in milliseconds.
+
+ The first handle to wait for.
+ The second handle to wait for.
+ To number of milliseconds to wait for a to get signaled, or -1 to wait indefinitely.
+
+ 0 if received a signal within the specified timeout, and 1
+ if received a signal within the specified timeout.
+
+ The connection was closed by the server.
+ The channel was closed.
+ The handle did not get signaled within the specified timeout.
+
+
+ The blocking wait is also interrupted when either the established channel is closed, the current
+ session is disconnected or an unexpected occurred while processing a channel
+ or session event.
+
+
+ When both and are signaled during the call,
+ then 0 is returned.
+
+
+
+
+
+ Waits for any of the elements in the specified array to receive a signal, using a 32-bit signed
+ integer to specify the time interval.
+
+ A array - constructed using - containing the objects to wait for.
+ To number of milliseconds to wait for a to get signaled, or -1 to wait indefinitely.
+
+ The array index of the first non-system object that satisfied the wait.
+
+ The connection was closed by the server.
+ The channel was closed.
+ No object satified the wait and a time interval equivalent to has passed.
+
+ For the return value, the index of the first non-system object is considered to be zero.
+
+
+
+
+ Creates a array that is composed of system objects and the specified
+ elements.
+
+ The first to wait for.
+ The second to wait for.
+
+ A array that is composed of system objects and the specified elements.
+
+
+
+
+ Creates a array that is composed of system objects and the specified
+ elements.
+
+ A array containing the objects to wait for.
+
+ A array that is composed of system objects and the specified elements.
+
+
+
+
+ Unsubscribes the current from session events.
+
+ The session.
+
+ Does nothing when is null.
+
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Finalizes an instance of the class.
+
+
+
+
diff --git a/SalesPacking_MES_API_Project/bin/Debug/SalesPacking_MES_API_Project.exe b/SalesPacking_MES_API_Project/bin/Debug/SalesPacking_MES_API_Project.exe
new file mode 100644
index 0000000..31e8413
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/SalesPacking_MES_API_Project.exe differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/SalesPacking_MES_API_Project.exe.config b/SalesPacking_MES_API_Project/bin/Debug/SalesPacking_MES_API_Project.exe.config
new file mode 100644
index 0000000..0074fc9
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/SalesPacking_MES_API_Project.exe.config
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/SalesPacking_MES_API_Project/bin/Debug/SalesPacking_MES_API_Project.pdb b/SalesPacking_MES_API_Project/bin/Debug/SalesPacking_MES_API_Project.pdb
new file mode 100644
index 0000000..6288aae
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/SalesPacking_MES_API_Project.pdb differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/SalesPacking_MES_API_Project.xml b/SalesPacking_MES_API_Project/bin/Debug/SalesPacking_MES_API_Project.xml
new file mode 100644
index 0000000..ff67fc0
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/SalesPacking_MES_API_Project.xml
@@ -0,0 +1,31 @@
+
+
+
+
+SalesPacking_MES_API_Project
+
+
+
+
+
+ 지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다.
+
+
+
+
+ 이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다.
+
+
+
+
+ 이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을
+ 재정의합니다.
+
+
+
+
+ System.Drawing.Bitmap 형식의 지역화된 리소스를 찾습니다.
+
+
+
+
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Buffers.dll b/SalesPacking_MES_API_Project/bin/Debug/System.Buffers.dll
new file mode 100644
index 0000000..f2d83c5
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/System.Buffers.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Buffers.xml b/SalesPacking_MES_API_Project/bin/Debug/System.Buffers.xml
new file mode 100644
index 0000000..e243dce
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/System.Buffers.xml
@@ -0,0 +1,38 @@
+
+
+ System.Buffers
+
+
+
+ Provides a resource pool that enables reusing instances of type .
+ The type of the objects that are in the resource pool.
+
+
+ Initializes a new instance of the class.
+
+
+ Creates a new instance of the class.
+ A new instance of the class.
+
+
+ Creates a new instance of the class using the specifed configuration.
+ The maximum length of an array instance that may be stored in the pool.
+ 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.
+ A new instance of the class with the specified configuration.
+
+
+ Retrieves a buffer that is at least the requested length.
+ The minimum length of the array.
+ An array of type that is at least minimumLength in length.
+
+
+ Returns an array to the pool that was previously obtained using the method on the same instance.
+ A buffer to return to the pool that was previously obtained using the method.
+ Indicates whether the contents of the buffer should be cleared before reuse. If clearArray is set to true, and if the pool will store the buffer to enable subsequent reuse, the method will clear the array of its contents so that a subsequent caller using the method will not see the content of the previous caller. If clearArray is set to false or if the pool will release the buffer, the array's contents are left unchanged.
+
+
+ Gets a shared instance.
+ A shared instance.
+
+
+
\ No newline at end of file
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.CodeDom.dll b/SalesPacking_MES_API_Project/bin/Debug/System.CodeDom.dll
new file mode 100644
index 0000000..29ccd3d
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/System.CodeDom.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.CodeDom.xml b/SalesPacking_MES_API_Project/bin/Debug/System.CodeDom.xml
new file mode 100644
index 0000000..b7947c0
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/System.CodeDom.xml
@@ -0,0 +1,317 @@
+
+
+
+ System.CodeDom
+
+
+
+ There is no CodeDom provider defined for the language.
+
+
+ This CodeDomProvider does not support this method.
+
+
+ The output writer for code generation and the writer supplied don't match and cannot be used. This is generally caused by a bad implementation of a CodeGenerator derived class.
+
+
+ This code generation API cannot be called while the generator is being used to generate something else.
+
+
+ Element type {0} is not supported.
+
+
+ The 'Comment' property of the CodeCommentStatement '{0}' cannot be null.
+
+
+ Invalid Primitive Type: {0}. Consider using CodeObjectCreateExpression.
+
+
+ Identifier '{0}' is not valid.
+
+
+ The total arity specified in '{0}' does not match the number of TypeArguments supplied. There were '{1}' TypeArguments supplied.
+
+
+ Argument {0} cannot be null or zero-length.
+
+
+ The file name '{0}' was already in the collection.
+
+
+ The type name:"{0}" on the property:"{1}" of type:"{2}" is not a valid language-independent type name.
+
+
+ The region directive '{0}' contains invalid characters. RegionText cannot contain any new line characters.
+
+
+ The CodeChecksumPragma file name '{0}' contains invalid path characters.
+
+
+ Timed out waiting for a program to execute. The command being executed was {0}.
+
+
+ This CodeDomProvider type does not have a constructor that takes providerOptions - "{0}".
+
+
+ The identifier:"{0}" on the property:"{1}" of type:"{2}" is not a valid language-independent identifier name. Check to see if CodeGenerator.IsValidLanguageIndependentIdentifier allows the identifier name.
+
+
+ {unknown}
+
+
+ auto-generated>
+
+
+ This code was generated by a tool.
+
+
+ Changes to this file may cause incorrect behavior and will be lost if
+
+
+ the code is regenerated.
+
+
+
+ Attribute used to indicate a source generator should create a function for marshalling
+ arguments instead of relying on the runtime to generate an equivalent marshalling function at run-time.
+
+
+ This attribute is meaningless if the source generator associated with it is not enabled.
+ The current built-in source generator only supports C# and only supplies an implementation when
+ applied to static, partial, non-generic methods.
+
+
+
+
+ Initializes a new instance of the .
+
+ Name of the library containing the import.
+
+
+
+ Gets the name of the library containing the import.
+
+
+
+
+ Gets or sets the name of the entry point to be called.
+
+
+
+
+ Gets or sets how to marshal string arguments to the method.
+
+
+ If this field is set to a value other than ,
+ must not be specified.
+
+
+
+
+ Gets or sets the used to control how string arguments to the method are marshalled.
+
+
+ If this field is specified, must not be specified
+ or must be set to .
+
+
+
+
+ Gets or sets whether the callee sets an error (SetLastError on Windows or errno
+ on other platforms) before returning from the attributed method.
+
+
+
+
+ Specifies how strings should be marshalled for generated p/invokes
+
+
+
+
+ Indicates the user is suppling a specific marshaller in .
+
+
+
+
+ Use the platform-provided UTF-8 marshaller.
+
+
+
+
+ Use the platform-provided UTF-16 marshaller.
+
+
+
+
+ Base type for all platform-specific API attributes.
+
+
+
+
+ Records the platform that the project targeted.
+
+
+
+
+ Records the operating system (and minimum version) that supports an API. Multiple attributes can be
+ applied to indicate support on multiple operating systems.
+
+
+ Callers can apply a
+ or use guards to prevent calls to APIs on unsupported operating systems.
+
+ A given platform should only be specified once.
+
+
+
+
+ Marks APIs that were removed in a given operating system version.
+
+
+ Primarily used by OS bindings to indicate APIs that are only available in
+ earlier versions.
+
+
+
+
+ Marks APIs that were obsoleted in a given operating system version.
+
+
+ Primarily used by OS bindings to indicate APIs that should not be used anymore.
+
+
+
+
+ Annotates a custom guard field, property or method with a supported platform name and optional version.
+ Multiple attributes can be applied to indicate guard for multiple supported platforms.
+
+
+ Callers can apply a to a field, property or method
+ and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs.
+
+ The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.
+
+
+
+
+ Annotates the custom guard field, property or method with an unsupported platform name and optional version.
+ Multiple attributes can be applied to indicate guard for multiple unsupported platforms.
+
+
+ Callers can apply a to a field, property or method
+ and use that field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms.
+
+ The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.
+
+
+
+ Specifies that null is allowed as an input even if the corresponding type disallows it.
+
+
+ Specifies that null is disallowed as an input even if the corresponding type allows it.
+
+
+ Specifies that an output may be null even if the corresponding type disallows it.
+
+
+ Specifies that an output will not be null even if the corresponding type allows it. Specifies that an input argument was not null when the call returns.
+
+
+ Specifies that when a method returns , the parameter may be null even if the corresponding type disallows it.
+
+
+ Initializes the attribute with the specified return value condition.
+
+ The return value condition. If the method returns this value, the associated parameter may be null.
+
+
+
+ Gets the return value condition.
+
+
+ Specifies that when a method returns , the parameter will not be null even if the corresponding type allows it.
+
+
+ Initializes the attribute with the specified return value condition.
+
+ The return value condition. If the method returns this value, the associated parameter will not be null.
+
+
+
+ Gets the return value condition.
+
+
+ Specifies that the output will be non-null if the named parameter is non-null.
+
+
+ Initializes the attribute with the associated parameter name.
+
+ The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null.
+
+
+
+ Gets the associated parameter name.
+
+
+ Applied to a method that will never return under any circumstance.
+
+
+ Specifies that the method will not return if the associated Boolean parameter is passed the specified value.
+
+
+ Initializes the attribute with the specified parameter value.
+
+ The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to
+ the associated parameter matches this value.
+
+
+
+ Gets the condition parameter value.
+
+
+ Specifies that the method or property will ensure that the listed field and property members have not-null values.
+
+
+ Initializes the attribute with a field or property member.
+
+ The field or property member that is promised to be not-null.
+
+
+
+ Initializes the attribute with the list of field and property members.
+
+ The list of field and property members that are promised to be not-null.
+
+
+
+ Gets field or property member names.
+
+
+ Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition.
+
+
+ Initializes the attribute with the specified return value condition and a field or property member.
+
+ The return value condition. If the method returns this value, the associated parameter will not be null.
+
+
+ The field or property member that is promised to be not-null.
+
+
+
+ Initializes the attribute with the specified return value condition and list of field and property members.
+
+ The return value condition. If the method returns this value, the associated parameter will not be null.
+
+
+ The list of field and property members that are promised to be not-null.
+
+
+
+ Gets the return value condition.
+
+
+ Gets field or property member names.
+
+
+
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Collections.Immutable.dll b/SalesPacking_MES_API_Project/bin/Debug/System.Collections.Immutable.dll
new file mode 100644
index 0000000..ad944df
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/System.Collections.Immutable.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Collections.Immutable.xml b/SalesPacking_MES_API_Project/bin/Debug/System.Collections.Immutable.xml
new file mode 100644
index 0000000..6c749c0
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/System.Collections.Immutable.xml
@@ -0,0 +1,6100 @@
+
+
+
+ System.Collections.Immutable
+
+
+
+ Provides a set of initialization methods for instances of the class.
+
+
+ Creates a from an according to specified key selector function.
+ An from which to create a .
+ A function to extract a key from each element.
+ An to compare keys.
+ The type of the elements of .
+ The type of the key returned by .
+ A that contains the keys and values selected from the input sequence.
+
+
+ Creates a with the specified key/value pairs.
+ The key/value pairs to use to populate the dictionary.
+ The comparer implementation to use to compare keys for equality. If , is used.
+ The type of the keys in the dictionary.
+ The type of the values in the dictionary.
+ A that contains the specified keys and values.
+
+
+ Creates a from an according to specified key selector and element selector functions.
+ An from which to create a .
+ A function to extract a key from each element.
+ A transform function to produce a result element value from each element.
+ An to compare keys.
+ The type of the elements of .
+ The type of the key returned by .
+ The type of the value returned by .
+ A that contains the keys and values selected from the input sequence.
+
+
+ Provides an immutable, read-only dictionary optimized for fast lookup and enumeration.
+ The type of the keys in the dictionary.
+ The type of the values in this dictionary.
+
+
+ Determines whether the dictionary contains the specified key.
+ The key to locate in the dictionary.
+
+ if the dictionary contains an element with the specified key; otherwise, .
+
+
+ Copies the elements of the dictionary to an array of type , starting at the specified .
+ The array that is the destination of the elements copied from the dictionary.
+ The zero-based index in at which copying begins.
+
+
+ Copies the elements of the dictionary to a span of type .
+ The span that is the destination of the elements copied from the dictionary.
+
+
+ Returns an enumerator that iterates through the dictionary.
+ An enumerator that iterates through the dictionary.
+
+
+ Gets either a reference to a in the dictionary or a reference if the key does not exist in the dictionary.
+ The key used for lookup.
+ A reference to a in the dictionary or a reference if the key does not exist in the dictionary.
+
+
+ Adds an item to the .
+ The object to add to the .
+
+
+ Removes all items from the .
+
+
+ Determines whether the contains a specific value.
+ The object to locate in the .
+
+ if is found in the ; otherwise, .
+
+
+ Removes the first occurrence of a specific object from the .
+ The object to remove from the .
+
+ if was successfully removed from the ; otherwise, . This method also returns if is not found in the original .
+
+
+ Adds an element with the provided key and value to the .
+ The object to use as the key of the element to add.
+ The object to use as the value of the element to add.
+
+
+ Removes the element with the specified key from the .
+ The key of the element to remove.
+
+ if the element is successfully removed; otherwise, . This method also returns if was not found in the original .
+
+
+ Returns an enumerator that iterates through the collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Copies the elements of the to an , starting at a particular index.
+ The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing.
+ The zero-based index in array
at which copying begins.
+
+
+ Adds an element with the provided key and value to the object.
+ The to use as the key of the element to add.
+ The to use as the value of the element to add.
+
+
+ Removes all elements from the object.
+
+
+ Determines whether the object contains an element with the specified key.
+ The key to locate in the object.
+
+ true
if the contains an element with the key; otherwise, false
.
+
+
+ Returns an object for the object.
+ An object for the object.
+
+
+ Removes the element with the specified key from the object.
+ The key of the element to remove.
+
+
+ Returns an enumerator that iterates through a collection.
+ An object that can be used to iterate through the collection.
+
+
+ Gets the value associated with the specified key.
+ The key of the value to get.
+ When this method returns, contains the value associated with the specified key, if the key is found; otherwise, the default value for the type of .
+
+ if the dictionary contains an element with the specified key; otherwise, .
+
+
+ Gets the comparer used by this dictionary.
+
+
+ Gets the number of key/value pairs contained in the dictionary.
+
+
+ Gets an empty .
+
+
+ Gets a reference to the value associated with the specified key.
+ The key of the value to get.
+
+ does not exist in the collection.
+ A reference to the value associated with the specified key.
+
+
+ Gets a collection containing the keys in the dictionary.
+
+
+ Gets a value indicating whether the is read-only.
+
+ if the is read-only; otherwise, .
+
+
+ Gets or sets the element with the specified key.
+ The key of the element to get or set.
+ The element with the specified key.
+
+
+ Gets an containing the keys of the .
+ An containing the keys of the object that implements .
+
+
+ Gets an containing the values in the .
+ An containing the values in the object that implements .
+
+
+ Gets the element that has the specified key in the read-only dictionary.
+ The key to locate.
+ The element that has the specified key in the read-only dictionary.
+
+
+ Gets an enumerable collection that contains the keys in the read-only dictionary.
+ An enumerable collection that contains the keys in the read-only dictionary.
+
+
+ Gets an enumerable collection that contains the values in the read-only dictionary.
+ An enumerable collection that contains the values in the read-only dictionary.
+
+
+ Gets a value indicating whether access to the is synchronized (thread safe).
+
+ true
if access to the is synchronized (thread safe); otherwise, false
.
+
+
+ Gets an object that can be used to synchronize access to the .
+ An object that can be used to synchronize access to the .
+
+
+ Gets a value indicating whether the object has a fixed size.
+
+ true
if the object has a fixed size; otherwise, false
.
+
+
+ Gets a value indicating whether the object is read-only.
+
+ true
if the object is read-only; otherwise, false
.
+
+
+ Gets or sets the element with the specified key.
+ The key of the element to get or set.
+ The element with the specified key, or null
if the key does not exist.
+
+
+ Gets an object containing the keys of the object.
+ An object containing the keys of the object.
+
+
+ Gets an object containing the values in the object.
+ An object containing the values in the object.
+
+
+ Gets a collection containing the values in the dictionary.
+
+
+ Enumerates the elements of a .
+
+
+
+
+ Advances the enumerator to the next element of the collection.
+
+ true
if the enumerator was successfully advanced to the next element; false
if the enumerator has passed the end of the collection.
+
+
+ Sets the enumerator to its initial position, which is before the first element in the collection.
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+ Gets the element in the collection at the current position of the enumerator.
+ The element in the collection at the current position of the enumerator.
+
+
+ Gets the element in the collection at the current position of the enumerator.
+ The element in the collection at the current position of the enumerator.
+
+
+ Provides a set of initialization methods for instances of the class.
+
+
+ Creates a with the specified values.
+ The values to use to populate the set.
+ The comparer implementation to use to compare values for equality. If , is used.
+ The type of the values in the set.
+ A frozen set.
+
+
+ Provides an immutable, read-only set optimized for fast lookup and enumeration.
+ The type of the values in this set.
+
+
+ Determines whether the set contains the specified element.
+ The element to locate.
+
+ if the set contains the specified element; otherwise, .
+
+
+ Copies the values in the set to an array, starting at the specified .
+ The array that is the destination of the values copied from the set.
+ The zero-based index in at which copying begins.
+
+
+ Copies the values in the set to a span.
+ The span that is the destination of the values copied from the set.
+
+
+ Returns an enumerator that iterates through the set.
+ An enumerator that iterates through the set.
+
+
+ Determines whether the current set is a proper (strict) subset of a specified collection.
+ The collection to compare to the current set.
+
+ true
if the current set is a proper subset of other
; otherwise, false
.
+
+
+ Determines whether the current set is a proper (strict) superset of a specified collection.
+ The collection to compare to the current set.
+
+ true
if the current set is a proper superset of other
; otherwise, false
.
+
+
+ Determines whether a set is a subset of a specified collection.
+ The collection to compare to the current set.
+
+ true
if the current set is a subset of other
; otherwise, false
.
+
+
+ Determines whether the current set is a superset of a specified collection.
+ The collection to compare to the current set.
+
+ true
if the current set is a superset of other
; otherwise, false
.
+
+
+ Determines whether the current set overlaps with the specified collection.
+ The collection to compare to the current set.
+
+ true
if the current set and other
share at least one common element; otherwise, false
.
+
+
+ Determines whether the current set and the specified collection contain the same elements.
+ The collection to compare to the current set.
+
+ true
if the current set is equal to other
; otherwise, false
.
+
+
+ Adds an item to the .
+ The object to add to the .
+
+
+ Removes all items from the .
+
+
+ Removes the first occurrence of a specific object from the .
+ The object to remove from the .
+
+ if was successfully removed from the ; otherwise, . This method also returns if is not found in the original .
+
+
+ Returns an enumerator that iterates through the collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Adds an element to the current set and returns a value to indicate if the element was successfully added.
+ The element to add to the set.
+
+ if the element is added to the set; if the element is already in the set.
+
+
+ Removes all elements in the specified collection from the current set.
+ The collection of items to remove from the set.
+
+
+ Modifies the current set so that it contains only elements that are also in a specified collection.
+ The collection to compare to the current set.
+
+
+ Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.
+ The collection to compare to the current set.
+
+
+ Modifies the current set so that it contains all elements that are present in the current set, in the specified collection, or in both.
+ The collection to compare to the current set.
+
+
+ Copies the elements of the to an , starting at a particular index.
+ The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing.
+ The zero-based index in array
at which copying begins.
+
+
+ Returns an enumerator that iterates through a collection.
+ An object that can be used to iterate through the collection.
+
+
+ Searches the set for a given value and returns the equal value it finds, if any.
+ The value to search for.
+ The value from the set that the search found, or the default value of T when the search yielded no match.
+ A value indicating whether the search was successful.
+
+
+ Gets the comparer used by this set.
+
+
+ Gets the number of values contained in the set.
+
+
+ Gets an empty .
+
+
+ Gets a collection containing the values in the set.
+
+
+ Gets a value indicating whether the is read-only.
+
+ if the is read-only; otherwise, .
+
+
+ Gets a value indicating whether access to the is synchronized (thread safe).
+
+ true
if access to the is synchronized (thread safe); otherwise, false
.
+
+
+ Gets an object that can be used to synchronize access to the .
+ An object that can be used to synchronize access to the .
+
+
+ Enumerates the values of a .
+
+
+
+ Advances the enumerator to the next element of the collection.
+
+ true
if the enumerator was successfully advanced to the next element; false
if the enumerator has passed the end of the collection.
+
+
+ Sets the enumerator to its initial position, which is before the first element in the collection.
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+ Gets the element in the collection at the current position of the enumerator.
+ The element in the collection at the current position of the enumerator.
+
+
+ Gets the element in the collection at the current position of the enumerator.
+ The element in the collection at the current position of the enumerator.
+
+
+ Represents an immutable collection of key/value pairs.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+ The type of keys in the dictionary.
+ The type of values in the dictionary.
+
+
+ Adds an element with the specified key and value to the dictionary.
+ The key of the element to add.
+ The value of the element to add.
+ The given key already exists in the dictionary but has a different value.
+ A new immutable dictionary that contains the additional key/value pair.
+
+
+ Adds the specified key/value pairs to the dictionary.
+ The key/value pairs to add.
+ One of the given keys already exists in the dictionary but has a different value.
+ A new immutable dictionary that contains the additional key/value pairs.
+
+
+ Retrieves an empty dictionary that has the same ordering and key/value comparison rules as this dictionary instance.
+ An empty dictionary with equivalent ordering and key/value comparison rules.
+
+
+ Determines whether the immutable dictionary contains the specified key/value pair.
+ The key/value pair to locate.
+
+ if the specified key/value pair is found in the dictionary; otherwise, .
+
+
+ Removes the element with the specified key from the immutable dictionary.
+ The key of the element to remove.
+ A new immutable dictionary with the specified element removed; or this instance if the specified key cannot be found in the dictionary.
+
+
+ Removes the elements with the specified keys from the immutable dictionary.
+ The keys of the elements to remove.
+ A new immutable dictionary with the specified keys removed; or this instance if the specified keys cannot be found in the dictionary.
+
+
+ Sets the specified key and value in the immutable dictionary, possibly overwriting an existing value for the key.
+ The key of the entry to add.
+ The key value to set.
+ A new immutable dictionary that contains the specified key/value pair.
+
+
+ Sets the specified key/value pairs in the immutable dictionary, possibly overwriting existing values for the keys.
+ The key/value pairs to set in the dictionary. If any of the keys already exist in the dictionary, this method will overwrite their previous values.
+ A new immutable dictionary that contains the specified key/value pairs.
+
+
+ Determines whether this dictionary contains a specified key.
+ The key to search for.
+ The matching key located in the dictionary if found, or equalkey if no match is found.
+
+ if a match for is found; otherwise, .
+
+
+ Represents a list of elements that cannot be modified.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+ The type of elements in the list.
+
+
+ Makes a copy of the list, and adds the specified object to the end of the copied list.
+ The object to add to the list.
+ A new list with the object added.
+
+
+ Makes a copy of the list and adds the specified objects to the end of the copied list.
+ The objects to add to the list.
+ A new list with the elements added.
+
+
+ Creates a list with all the items removed, but with the same sorting and ordering semantics as this list.
+ An empty list that has the same sorting and ordering semantics as this instance.
+
+
+ Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the that starts at the specified index and contains the specified number of elements.
+ The object to locate in the . This value can be null for reference types.
+ The zero-based starting indexes of the search. 0 (zero) is valid in an empty list.
+ The number of elements in the section to search.
+ The equality comparer to use to locate .
+ The zero-based index of the first occurrence of within the range of elements in the that starts at and contains number of elements if found; otherwise -1.
+
+
+ Inserts the specified element at the specified index in the immutable list.
+ The zero-based index at which to insert the value.
+ The object to insert.
+ A new immutable list that includes the specified element.
+
+
+ Inserts the specified elements at the specified index in the immutable list.
+ The zero-based index at which the new elements should be inserted.
+ The elements to insert.
+ A new immutable list that includes the specified elements.
+
+
+ Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the that contains the specified number of elements and ends at the specified index.
+ The object to locate in the list. The value can be for reference types.
+ The zero-based starting index of the search. 0 (zero) is valid in an empty list.
+ The number of elements in the section to search.
+ The equality comparer to match .
+ Returns .
+
+
+ Removes the first occurrence of a specified object from this immutable list.
+ The object to remove from the list.
+ The equality comparer to use to locate .
+ A new list with the specified object removed.
+
+
+ Removes all the elements that match the conditions defined by the specified predicate.
+ The delegate that defines the conditions of the elements to remove.
+ A new immutable list with the elements removed.
+
+
+ Removes the element at the specified index of the immutable list.
+ The index of the element to remove.
+ A new list with the element removed.
+
+
+ Removes the specified object from the list.
+ The objects to remove from the list.
+ The equality comparer to use to determine if match any objects in the list.
+ A new immutable list with the specified objects removed, if matched objects in the list.
+
+
+ Removes a range of elements from the .
+ The zero-based starting index of the range of elements to remove.
+ The number of elements to remove.
+ A new immutable list with the elements removed.
+
+
+ Returns a new list with the first matching element in the list replaced with the specified element.
+ The element to be replaced.
+ The element to replace the first occurrence of with.
+ The equality comparer to use for matching .
+
+ does not exist in the list.
+ A new list that contains , even if is the same as .
+
+
+ Replaces an element in the list at a given position with the specified element.
+ The position in the list of the element to replace.
+ The element to replace the old element with.
+ A new list that contains the new element, even if the element at the specified location is the same as the new element.
+
+
+ Represents an immutable first-in, first-out collection of objects.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+ The type of elements in the queue.
+
+
+ Returns a new queue with all the elements removed.
+ An empty immutable queue.
+
+
+ Removes the first element in the immutable queue, and returns the new queue.
+ The queue is empty.
+ The new immutable queue with the first element removed. This value is never .
+
+
+ Adds an element to the end of the immutable queue, and returns the new queue.
+ The element to add.
+ The new immutable queue with the specified element added.
+
+
+ Returns the element at the beginning of the immutable queue without removing it.
+ The queue is empty.
+ The element at the beginning of the queue.
+
+
+ Gets a value that indicates whether this immutable queue is empty.
+
+ if this queue is empty; otherwise, .
+
+
+ Represents a set of elements that can only be modified by creating a new instance of the set.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+ The type of element stored in the set.
+
+
+ Adds the specified element to this immutable set.
+ The element to add.
+ A new set with the element added, or this set if the element is already in the set.
+
+
+ Retrieves an empty immutable set that has the same sorting and ordering semantics as this instance.
+ An empty set that has the same sorting and ordering semantics as this instance.
+
+
+ Determines whether this immutable set contains a specified element.
+ The element to locate in the set.
+
+ if the set contains the specified value; otherwise, .
+
+
+ Removes the elements in the specified collection from the current immutable set.
+ The collection of items to remove from this set.
+ A new set with the items removed; or the original set if none of the items were in the set.
+
+
+ Creates an immutable set that contains only elements that exist in this set and the specified set.
+ The collection to compare to the current .
+ A new immutable set that contains elements that exist in both sets.
+
+
+ Determines whether the current immutable set is a proper (strict) subset of the specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a proper subset of the specified collection; otherwise, .
+
+
+ Determines whether the current immutable set is a proper (strict) superset of the specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a proper superset of the specified collection; otherwise, .
+
+
+ Determines whether the current immutable set is a subset of a specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a subset of the specified collection; otherwise, .
+
+
+ Determines whether the current immutable set is a superset of a specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a superset of the specified collection; otherwise, .
+
+
+ Determines whether the current immutable set overlaps with the specified collection.
+ The collection to compare to the current set.
+
+ if the current set and the specified collection share at least one common element; otherwise, .
+
+
+ Removes the specified element from this immutable set.
+ The element to remove.
+ A new set with the specified element removed, or the current set if the element cannot be found in the set.
+
+
+ Determines whether the current immutable set and the specified collection contain the same elements.
+ The collection to compare to the current set.
+
+ if the sets are equal; otherwise, .
+
+
+ Creates an immutable set that contains only elements that are present either in the current set or in the specified collection, but not both.
+ The collection to compare to the current set.
+ A new set that contains the elements that are present only in the current set or in the specified collection, but not both.
+
+
+ Determines whether the set contains a specified value.
+ The value to search for.
+ The matching value from the set, if found, or equalvalue if there are no matches.
+
+ if a matching value was found; otherwise, .
+
+
+ Creates a new immutable set that contains all elements that are present in either the current set or in the specified collection.
+ The collection to add elements from.
+ A new immutable set with the items added; or the original set if all the items were already in the set.
+
+
+ Represents an immutable last-in-first-out (LIFO) collection.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+ The type of elements in the stack.
+
+
+ Removes all objects from the immutable stack.
+ An empty immutable stack.
+
+
+ Returns the element at the top of the immutable stack without removing it.
+ The stack is empty.
+ The element at the top of the stack.
+
+
+ Removes the element at the top of the immutable stack and returns the new stack.
+ The stack is empty.
+ The new stack; never .
+
+
+ Inserts an element at the top of the immutable stack and returns the new stack.
+ The element to push onto the stack.
+ The new stack.
+
+
+ Gets a value that indicates whether this immutable stack is empty.
+
+ if this stack is empty; otherwise,.
+
+
+ Provides methods for creating an array that is immutable; meaning it cannot be changed once it is created.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+ Searches the sorted immutable array for a specified element using the default comparer and returns the zero-based index of the element, if it's found.
+ The sorted array to search.
+ The object to search for.
+ The type of element stored in the array.
+
+ does not implement or the search encounters an element that does not implement .
+ The zero-based index of the item in the array, if item is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than or, if there is no larger element, the bitwise complement of .
+
+
+ Searches a sorted immutable array for a specified element and returns the zero-based index of the element, if it's found.
+ The sorted array to search.
+ The object to search for.
+ The comparer implementation to use when comparing elements, or null to use the default comparer.
+ The type of element stored in the array.
+
+ is null and does not implement or the search encounters an element that does not implement .
+ The zero-based index of the item in the array, if item is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than or, if there is no larger element, the bitwise complement of .
+
+
+ Searches a sorted immutable array for a specified element and returns the zero-based index of the element, if it's found.
+ The sorted array to search.
+ The starting index of the range to search.
+ The length of the range to search.
+ The object to search for.
+ The type of element stored in the array.
+
+ does not implement or the search encounters an element that does not implement .
+
+ and do not specify a valid range in .
+
+ is less than the lower bound of .
+
+-or-
+
+ is less than zero.
+ The zero-based index of the item in the array, if item is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than or, if there is no larger element, the bitwise complement of .
+
+
+ Searches a sorted immutable array for a specified element and returns the zero-based index of the element.
+ The sorted array to search.
+ The starting index of the range to search.
+ The length of the range to search.
+ The object to search for.
+ The comparer to use when comparing elements for equality or to use the default comparer.
+ The type of element stored in the array.
+
+ is null and does not implement or the search encounters an element that does not implement .
+
+ and do not specify a valid range in .
+
+-or-
+
+ is , and is of a type that is not compatible with the elements of .
+
+ is less than the lower bound of .
+
+-or-
+
+ is less than zero.
+ The zero-based index of the item in the array, if item is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than or, if there is no larger element, the bitwise complement of .
+
+
+ Creates an empty immutable array.
+ The type of elements stored in the array.
+ An empty immutable array.
+
+
+ Creates an immutable array that contains the specified object.
+ The object to store in the array.
+ The type of elements stored in the array.
+ An immutable array that contains the specified object.
+
+
+ Creates an immutable array that contains the specified objects.
+ The first object to store in the array.
+ The second object to store in the array.
+ The type of elements stored in the array.
+ An immutable array that contains the specified objects.
+
+
+ Creates an immutable array that contains the specified objects.
+ The first object to store in the array.
+ The second object to store in the array.
+ The third object to store in the array.
+ The type of elements stored in the array.
+ An immutable array that contains the specified objects.
+
+
+ Creates an immutable array that contains the specified objects.
+ The first object to store in the array.
+ The second object to store in the array.
+ The third object to store in the array.
+ The fourth object to store in the array.
+ The type of elements stored in the array.
+ An immutable array that contains the specified objects.
+
+
+ Creates an immutable array from the specified array of objects.
+ The array of objects to populate the array with.
+ The type of elements stored in the array.
+ An immutable array that contains the array of items.
+
+
+ Creates an immutable array with specified objects from another array.
+ The source array of objects.
+ The index of the first element to copy from .
+ The number of elements from to include in this immutable array.
+ The type of elements stored in the array.
+ An immutable array that contains the specified objects from the source array.
+
+
+ Creates an immutable array with the specified objects from another immutable array.
+ The source array of objects.
+ The index of the first element to copy from .
+ The number of elements from to include in this immutable array.
+ The type of elements stored in the array.
+ An immutable array that contains the specified objects from the source array.
+
+
+ Creates an with the specified elements.
+ The elements to store in the array.
+ The type of element stored in the array.
+ An immutable array containing the specified items.
+
+
+ Creates an with the specified elements.
+ The elements to store in the array.
+ The type of element stored in the array.
+ An immutable array containing the specified items.
+
+
+ Creates a mutable array that can be converted to an without allocating new memory.
+ The type of elements stored in the builder.
+ A mutable array of the specified type that can be efficiently converted to an immutable array.
+
+
+ Creates a mutable array that can be converted to an without allocating new memory.
+ The initial capacity of the builder.
+ The type of elements stored in the builder.
+ A mutable array of the specified type that can be efficiently converted to an immutable array.
+
+
+ Creates a new populated with the specified items.
+ The elements to add to the array.
+ The type of element stored in the array.
+ An immutable array that contains the specified items.
+
+
+ Initializes a new instance of the struct.
+ The source array to initialize the resulting array with.
+ The function to apply to each element from the source array.
+ The type of element stored in the source array.
+ The type of element to store in the target array.
+ An immutable array that contains the specified items.
+
+
+ Initializes a new instance of the struct.
+ The source array to initialize the resulting array with.
+ The index of the first element in the source array to include in the resulting array.
+ The number of elements from the source array to include in the resulting array.
+ The function to apply to each element from the source array included in the resulting array.
+ The type of element stored in the source array.
+ The type of element to store in the target array.
+ An immutable array that contains the specified items.
+
+
+ Initializes a new instance of the struct.
+ The source array to initialize the resulting array with.
+ The function to apply to each element from the source array.
+ An argument to be passed to the selector mapping function.
+ The type of element stored in the source array.
+ The type of argument to pass to the selector mapping function.
+ The type of element to store in the target array.
+ An immutable array that contains the specified items.
+
+
+ Initializes a new instance of the struct.
+ The source array to initialize the resulting array with.
+ The index of the first element in the source array to include in the resulting array.
+ The number of elements from the source array to include in the resulting array.
+ The function to apply to each element from the source array included in the resulting array.
+ An argument to be passed to the selector mapping function.
+ The type of element stored in the source array.
+ The type of argument to be passed to the selector mapping function.
+ The type of element to be stored in the target array.
+ An immutable array that contains the specified items.
+
+
+ Creates an immutable array from the specified collection.
+ The collection of objects to copy to the immutable array.
+ The type of elements contained in .
+ An immutable array that contains the specified collection of objects.
+
+
+ Creates an immutable array from the current contents of the builder's array.
+ The builder to create the immutable array from.
+ The type of elements contained in the immutable array.
+ An immutable array that contains the current contents of the builder's array.
+
+
+ Produce an immutable array of contents from specified elements.
+ The elements to store in the array.
+ The type of element in the list.
+ An immutable array containing the items in the span.
+
+
+ Converts the span to an immutable array.
+ The elements to store in the array.
+ The type of element in the list.
+ An immutable array containing the items in the span.
+
+
+ Represents an array that is immutable; meaning it cannot be changed once it is created.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+ The type of element stored by the array.
+
+
+ Gets an empty immutable array.
+
+
+ Returns a copy of the original array with the specified item added to the end.
+ The item to be added to the end of the array.
+ A new array with the specified item added to the end.
+
+
+ Adds the specified values to this list.
+ The values to add.
+ A new list with the elements added.
+
+
+ Adds the specified items to the end of the array.
+ The values to add.
+ The number of elements from the source array to add.
+ A new list with the elements added.
+
+
+ Returns a copy of the original array with the specified elements added to the end of the array.
+ The elements to add to the array.
+ A new array with the elements added.
+
+
+ Returns a copy of the original array with the specified elements added to the end of the array.
+ The elements to add to the array.
+ A new array with the elements added.
+
+
+ Adds the specified items to the end of the array.
+ The values to add.
+ The number of elements from the source array to add.
+ A new list with the elements added.
+
+
+ Adds the specified values to this list.
+ The values to add.
+ A new list with the elements added.
+
+
+ Adds the specified items to the end of the array.
+ The values to add.
+ The type that derives from the type of item already in the array.
+ A new list with the elements added.
+
+
+ Adds the specified items to the end of the array.
+ The values to add.
+ The type that derives from the type of item already in the array.
+ A new list with the elements added.
+
+
+ Returns a new immutable array that contains the elements of this array cast to a different type.
+ The type of array element to return.
+ An immutable array that contains the elements of this array, cast to a different type. If the cast fails, returns an array whose property returns .
+
+
+ Creates a new read-only memory region over this immutable array.
+ The read-only memory representation of this immutable array.
+
+
+ Creates a new read-only span over this immutable array.
+ The read-only span representation of this immutable array.
+
+
+ Creates a over the portion of the current , beginning at a specified position for a specified length.
+ The index at which to begin the span.
+ The number of items in the span.
+ The representation of the .
+
+
+ Creates a span over the portion of the current based on the specified .
+ A range in the current .
+ A span representation of the .
+
+
+ Initializes a new instance of the struct by casting the underlying array to an array of type .
+ The type of array element to return.
+ The cast is illegal.
+ An immutable array instance with elements cast to the new type.
+
+
+ Initializes a new instance of the struct based on the contents of an existing instance, allowing a covariant static cast to efficiently reuse the existing array.
+ The array to initialize the array with. No copy is made.
+ The type of array element to return.
+ An immutable array instance with elements cast to the new type.
+
+
+ Returns an array with all the elements removed.
+ An array with all of the elements removed.
+
+
+ Determines whether the specified item exists in the array.
+ The item to search for.
+
+ if the specified item was found in the array; otherwise .
+
+
+ Determines whether the specified item exists in the array.
+ The item to search for.
+ The equality comparer to use in the search.
+ If , is used.
+
+ if an equal value was found in the array; otherwise.
+
+
+ Copies the contents of this array to the specified array.
+ The array to copy to.
+
+
+ Copies the contents of this array to the specified array starting at the specified destination index.
+ The array to copy to.
+ The index in where copying begins.
+
+
+ Copies the specified items in this array to the specified array at the specified starting index.
+ The index of this array where copying begins.
+ The array to copy to.
+ The index in where copying begins.
+ The number of elements to copy from this array.
+
+
+ Copies the elements of current to a .
+ The that is the destination of the elements copied from current .
+
+
+ Indicates whether specified array is equal to this array.
+ An object to compare with this object.
+
+ if is equal to this array; otherwise, .
+
+
+ Determines if this array is equal to the specified object.
+ The to compare with this array.
+
+ if this array is equal to ; otherwise, .
+
+
+ Returns an enumerator that iterates through the contents of the array.
+ An enumerator.
+
+
+ Returns a hash code for this instance.
+ A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
+
+
+ Searches the array for the specified item.
+ The item to search for.
+ The zero-based index position of the item if it is found, or -1 if it is not.
+
+
+ Searches the array for the specified item.
+ The item to search for.
+ The index at which to begin the search.
+ The zero-based index position of the item if it is found, or -1 if it is not.
+
+
+ Searches the array for the specified item.
+ The item to search for.
+ The index at which to begin the search.
+ The equality comparer to use in the search.
+ The zero-based index position of the item if it is found, or -1 if it is not.
+
+
+ Searches the array for the specified item.
+ The item to search for.
+ The index at which to begin the search.
+ The number of elements to search.
+ The zero-based index position of the item if it is found, or -1 if it is not.
+
+
+ Searches the array for the specified item.
+ The item to search for.
+ The index at which to begin the search.
+ The number of elements to search.
+ The equality comparer to use in the search.
+ The zero-based index position of the item if it is found, or -1 if it is not.
+
+
+ Returns a new array with the specified value inserted at the specified position.
+ The 0-based index into the array at which the new item should be added.
+ The item to insert at the start of the array.
+ A new array with the item inserted at the specified index.
+
+
+ Inserts the specified values at the specified index.
+ The index at which to insert the value.
+ The elements to insert.
+ The new immutable collection.
+
+
+ Inserts the specified values at the specified index.
+ The index at which to insert the value.
+ The elements to insert.
+ A new immutable array with the items inserted at the specified index.
+
+
+ Inserts the specified values at the specified index.
+ The index at which to insert the value.
+ The elements to insert.
+ A new immutable array with the items inserted at the specified index.
+
+
+ Inserts the specified values at the specified index.
+ The index at which to insert the value.
+ The elements to insert.
+ The new immutable collection.
+
+
+ Gets a read-only reference to the element at the specified in the read-only list.
+ The zero-based index of the element to get a reference to.
+ A read-only reference to the element at the specified in the read-only list.
+
+
+ Searches the array for the specified item; starting at the end of the array.
+ The item to search for.
+ The 0-based index into the array where the item was found; or -1 if it could not be found.
+
+
+ Searches the array for the specified item; starting at the end of the array.
+ The item to search for.
+ The index at which to begin the search.
+ The 0-based index into the array where the item was found; or -1 if it could not be found.
+
+
+ Searches the array for the specified item; starting at the end of the array.
+ The item to search for.
+ The index at which to begin the search.
+ The number of elements to search.
+ The 0-based index into the array where the item was found; or -1 if it could not be found.
+
+
+ Searches the array for the specified item; starting at the end of the array.
+ The item to search for.
+ The index at which to begin the search.
+ The number of elements to search.
+ The equality comparer to use in the search.
+ The 0-based index into the array where the item was found; or -1 if it could not be found.
+
+
+ Filters the elements of this array to those assignable to the specified type.
+ The type to filter the elements of the sequence on.
+ An that contains elements from the input sequence of type of .
+
+
+ Returns a value that indicates if two arrays are equal.
+ The array to the left of the operator.
+ The array to the right of the operator.
+
+ if the arrays are equal; otherwise, .
+
+
+ Returns a value that indicates if two arrays are equal.
+ The array to the left of the operator.
+ The array to the right of the operator.
+
+ if the arrays are equal; otherwise, .
+
+
+ Returns a value that indicates whether two arrays are not equal.
+ The array to the left of the operator.
+ The array to the right of the operator.
+
+ if the arrays are not equal; otherwise, .
+
+
+ Checks for inequality between two array.
+ The object to the left of the operator.
+ The object to the right of the operator.
+
+ if the two arrays are not equal; otherwise, .
+
+
+ Returns an array with the first occurrence of the specified element removed from the array. If no match is found, the current array is returned.
+ The item to remove.
+ A new array with the item removed.
+
+
+ Returns an array with the first occurrence of the specified element removed from the array.
+
+ If no match is found, the current array is returned.
+ The item to remove.
+ The equality comparer to use in the search.
+ A new array with the specified item removed.
+
+
+ Removes all the items from the array that meet the specified condition.
+ The delegate that defines the conditions of the elements to remove.
+ A new array with items that meet the specified condition removed.
+
+
+ Returns an array with the element at the specified position removed.
+ The 0-based index of the element to remove from the returned array.
+ A new array with the item at the specified index removed.
+
+
+ Removes the specified values from this list.
+ The items to remove if matches are found in this list.
+ The equality comparer to use in the search.
+ A new list with the elements removed.
+
+
+ Removes the specified items from this array.
+ The items to remove if matches are found in this list.
+ A new array with the elements removed.
+
+
+ Removes the specified items from this array.
+ The items to remove if matches are found in this list.
+ The equality comparer to use in the search.
+ A new array with the elements removed.
+
+
+ Removes the specified values from this list.
+ The items to remove if matches are found in this list.
+ A new list with the elements removed.
+
+
+ Removes the specified items from this list.
+ The items to remove if matches are found in this list.
+ The equality comparer to use in the search.
+ A new array with the elements removed.
+
+
+ Returns an array with the elements at the specified position removed.
+ The 0-based index of the starting element to remove from the array.
+ The number of elements to remove from the array.
+ The new array with the specified elements removed.
+
+
+ Removes the specified values from this list.
+ The items to remove if matches are found in this list.
+ The equality comparer to use in the search.
+ A new list with the elements removed.
+
+
+ Finds the first element in the array equal to the specified value and replaces the value with the specified new value.
+ The value to find and replace in the array.
+ The value to replace the oldvalue with.
+
+ is not found in the array.
+ A new array that contains even if the new and old values are the same.
+
+
+ Finds the first element in the array equal to the specified value and replaces the value with the specified new value.
+ The value to find and replace in the array.
+ The value to replace the oldvalue with.
+ The equality comparer to use to compare values.
+
+ is not found in the array.
+ A new array that contains even if the new and old values are the same.
+
+
+ Replaces the item at the specified index with the specified item.
+ The index of the item to replace.
+ The item to add to the list.
+ The new array that contains at the specified index.
+
+
+ Forms a slice out of the current starting at a specified index for a specified length.
+ The index at which to begin this slice.
+ The desired length for the slice.
+ An that consists of elements from the current , starting at .
+
+
+ Sorts the elements in the immutable array using the default comparer.
+ A new immutable array that contains the items in this array, in sorted order.
+
+
+ Sorts the elements in the immutable array using the specified comparer.
+ The implementation to use when comparing elements, or to use the default comparer.
+ A new immutable array that contains the items in this array, in sorted order.
+
+
+ Sorts the elements in the entire using the specified .
+ The to use when comparing elements.
+
+ is null.
+ The sorted list.
+
+
+ Sorts the specified elements in the immutable array using the specified comparer.
+ The index of the first element to sort.
+ The number of elements to include in the sort.
+ The implementation to use when comparing elements, or to use the default comparer.
+ A new immutable array that contains the items in this array, in sorted order.
+
+
+ Throws in all cases.
+ The item to add to the end of the array.
+
+
+ Throws in all cases.
+
+
+ Throws in all cases.
+ The object to remove from the array.
+ Throws in all cases.
+
+
+ Returns an enumerator that iterates through the array.
+ The property returns .
+ An enumerator that can be used to iterate through the array.
+
+
+ Throws in all cases.
+ The index of the location to insert the item.
+ The item to insert.
+
+
+ Throws in all cases.
+ The index.
+
+
+ Copies this array to another array starting at the specified index.
+ The array to copy this array to.
+ The index in the destination array to start the copy operation.
+
+
+ Returns an enumerator that iterates through the immutable array.
+ The property returns .
+ An enumerator that iterates through the immutable array.
+
+
+ Throws in all cases.
+ The value to add to the array.
+ Thrown in all cases.
+ Throws in all cases.
+
+
+ Throws in all cases.
+ Thrown in all cases.
+
+
+ Throws in all cases.
+ The value to check for.
+ Throws in all cases.
+
+
+ Gets the value at the specified index.
+ The value to return the index of.
+ The value of the element at the specified index.
+
+
+ Throws in all cases.
+ Index that indicates where to insert the item.
+ The value to insert.
+ Thrown in all cases.
+
+
+ Throws in all cases.
+ The value to remove from the array.
+ Thrown in all cases.
+
+
+ Throws in all cases.
+ The index of the item to remove.
+ Thrown in all cases.
+
+
+ Returns a copy of the original array with the specified item added to the end.
+ The value to add to the end of the array.
+ A new array with the specified item added to the end.
+
+
+ Returns a copy of the original array with the specified elements added to the end of the array.
+ The elements to add to the end of the array.
+ A new array with the elements added to the end.
+
+
+ Returns an array with all the elements removed.
+ An array with all the elements removed.
+
+
+ Returns a new array with the specified value inserted at the specified position.
+ The 0-based index into the array at which the new item should be added.
+ The item to insert at the start of the array.
+ A new array with the specified value inserted.
+
+
+ Inserts the specified values at the specified index.
+ The index at which to insert the value.
+ The elements to insert.
+ A new array with the specified values inserted.
+
+
+ Returns an array with the first occurrence of the specified element removed from the array; if no match is found, the current array is returned.
+ The value to remove from the array.
+ The equality comparer to use in the search.
+ A new array with the value removed.
+
+
+ Removes all the items from the array that meet the specified condition.
+ The delegate that defines the conditions of the elements to remove.
+ A new array with items that meet the specified condition removed.
+
+
+ Returns an array with the element at the specified position removed.
+ The 0-based index of the element to remove from the returned array.
+ A new array with the specified item removed.
+
+
+ Removes the specified items from this array.
+ The items to remove if matches are found in this list.
+ The equality comparer to use in the search.
+ A new array with the elements removed.
+
+
+ Returns an array with the elements at the specified position removed.
+ The 0-based index of the starting element to remove from the array.
+ The number of elements to remove from the array.
+ The new array with the specified elements removed.
+
+
+ Finds the first element in the array equal to the specified value and replaces the value with the specified new value.
+ The value to find and replace in the array.
+ The value to replace the oldvalue with.
+ The equality comparer to use to compare values.
+
+ is not found in the array.
+ A new array that contains even if the new and old values are the same.
+
+
+ Replaces the item at the specified index with the specified item.
+ The index of the item to replace.
+ The value to add to the list.
+ The new array that contains at the specified index.
+
+
+ Determines whether the current collection element precedes, occurs in the same position as, or follows another element in the sort order.
+ The element to compare with the current instance.
+ The object used to compare members of the current array with the corresponding members of other array.
+ The arrays are not the same length.
+ An integer that indicates whether the current element precedes, is in the same position or follows the other element.
+
+
+ Determines whether this array is structurally equal to the specified array.
+ The array to compare with the current instance.
+ An object that determines whether the current instance and other are structurally equal.
+
+ if the two arrays are structurally equal; otherwise, .
+
+
+ Returns a hash code for the current instance.
+ An object that computes the hash code of the current object.
+ The hash code for the current instance.
+
+
+ Creates a mutable array that has the same contents as this array and can be efficiently mutated across multiple operations using standard mutable interfaces.
+ The new builder with the same contents as this array.
+
+
+ Gets a value indicating whether this array was declared but not initialized.
+
+ if the is ; otherwise, .
+
+
+ Gets a value indicating whether this is empty or is not initialized.
+
+ if the is or ; otherwise, .
+
+
+ Gets a value indicating whether this is empty.
+
+ if the is empty; otherwise, .
+
+
+ Gets the element at the specified index in the immutable array.
+ The zero-based index of the element to get.
+ The element at the specified index in the immutable array.
+
+
+ Gets the number of elements in the array.
+ The number of elements in the array.
+
+
+ Gets the number of items in the collection.
+ The property returns .
+ Number of items in the collection.
+
+
+ Gets a value indicating whether this instance is read only.
+
+ if this instance is read only; otherwise, .
+
+
+ Gets or sets the element at the specified index in the read-only list.
+ The zero-based index of the element to get.
+ Always thrown from the setter.
+ The property returns .
+ The element at the specified index in the read-only list.
+
+
+ Gets the number of items in the collection.
+ The property returns .
+ The number of items in the collection.
+
+
+ Gets the element at the specified index.
+ The index.
+ The property returns .
+ The element.
+
+
+ Gets the size of the array.
+ The property returns .
+ The number of items in the collection.
+
+
+ See the interface. Always returns since since immutable collections are thread-safe.
+ Boolean value determining whether the collection is thread-safe.
+
+
+ Gets the sync root.
+ An object for synchronizing access to the collection.
+
+
+ Gets a value indicating whether this instance is fixed size.
+
+ if this instance is fixed size; otherwise, .
+
+
+ Gets a value indicating whether this instance is read only.
+
+ if this instance is read only; otherwise, .
+
+
+ Gets or sets the at the specified index.
+ The index.
+ Always thrown from the setter.
+ The property returns .
+ The object at the specified index.
+
+
+ A writable array accessor that can be converted into an instance without allocating extra memory.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+
+ Adds the specified item to the array.
+ The object to add to the array.
+
+
+ Adds the specified items to the end of the array.
+ The items to add to the array.
+
+
+ Adds the specified items to the end of the array.
+ The items to add to the array.
+ The number of elements from the source array to add.
+
+
+ Adds the specified items to the end of the array.
+ The items to add to the array.
+
+
+ Adds the specified items to the end of the array.
+ The items to add to the array.
+
+
+ Adds the specified items to the end of the array.
+ The items to add to the array.
+
+
+ Adds the specified items to the end of the array.
+ The items to add to the array.
+ The number of elements from the source array to add.
+
+
+ Adds the specified items to the end of the array.
+ The items to add at the end of the array.
+
+
+ Adds the specified items that derive from the type currently in the array, to the end of the array.
+ The items to add to end of the array.
+ The type that derives from the type of item already in the array.
+
+
+ Adds the specified items that derive from the type currently in the array, to the end of the array.
+ The items to add to the end of the array.
+ The type that derives from the type of item already in the array.
+
+
+ Adds the specified items that derive from the type currently in the array, to the end of the array.
+ The items to add to the end of the array.
+ The type that derives from the type of item already in the array.
+
+
+ Adds the specified items to the end of the array.
+ The items to add at the end of the array.
+ The type that derives from the type of item already in the array.
+
+
+ Removes all items from the array.
+
+
+ Determines whether the array contains a specific value.
+ The object to locate in the array.
+
+ if the object is found; otherwise, .
+
+
+ Copies the contents of this array to the specified array.
+ The array to copy to.
+
+
+ Copies the current contents to the specified array.
+ The array to copy to.
+ The index to start the copy operation.
+
+
+ Copies the contents of this array to the specified array.
+ The index into this collection of the first element to copy.
+ The array to copy to.
+ The index into the destination array to which the first copied element is written.
+ The number of elements to copy.
+
+
+ Copies the current contents to the specified .
+ The to copy to.
+
+
+ Returns the current contents as an and sets the collection to a zero length array.
+ An immutable array.
+
+
+ Gets an object that can be used to iterate through the collection.
+ An object that can be used to iterate through the collection.
+
+
+ Determines the index of a specific item in the array.
+ The item to locate in the array.
+ The index of if it's found in the list; otherwise, -1.
+
+
+ Determines the index of the specified item.
+ The item to locate in the array.
+ The starting position of the search.
+ The index of if it's found in the list; otherwise, -1.
+
+
+ Searches the array for the specified item.
+ The item to search for.
+ The index at which to begin the search.
+ The equality comparer to use in the search.
+ If , is used.
+ The 0-based index into the array where the item was found; or -1 if it could not be found.
+
+
+ Determines the index of the specified item.
+ The item to locate in the array.
+ The starting position of the search.
+ The number of elements to search.
+ The index of if it's found in the list; otherwise, -1.
+
+
+ Determines the index for the specified item.
+ The item to locate in the array.
+ The index at which to begin the search.
+ The starting position of the search.
+ The equality comparer to use in the search.
+ The index of if it's found in the list; otherwise, -1.
+
+
+ Inserts an item in the array at the specified index.
+ The zero-based index at which to insert the item.
+ The object to insert into the array.
+
+
+ Inserts the specified values at the specified index.
+ The index at which to insert the value.
+ The elements to insert.
+
+
+ Inserts the specified values at the specified index.
+ The index at which to insert the value.
+ The elements to insert.
+
+
+ Gets a read-only reference to the element at the specified index.
+ The item index.
+
+ is greater or equal to the array count.
+ The read-only reference to the element at the specified index.
+
+
+ Determines the 0-based index of the last occurrence of the specified item in this array.
+ The item to search for.
+ The 0-based index where the item was found; or -1 if it could not be found.
+
+
+ Determines the 0-based index of the last occurrence of the specified item in this array.
+ The item to search for.
+ The starting position of the search.
+ The 0-based index into the array where the item was found; or -1 if it could not be found.
+
+
+ Determines the 0-based index of the last occurrence of the specified item in this array.
+ The item to search for.
+ The starting position of the search.
+ The number of elements to search.
+ The 0-based index into the array where the item was found; or -1 if it could not be found.
+
+
+ Determines the 0-based index of the last occurrence of the specified item in this array.
+ The item to search for.
+ The starting position of the search.
+ The number of elements to search.
+ The equality comparer to use in the search.
+ The 0-based index into the array where the item was found; or -1 if it could not be found.
+
+
+ Extracts the internal array as an and replaces it with a zero length array.
+ When doesn't equal .
+ An immutable array containing the elements of the builder.
+
+
+ Removes the specified element.
+ The item to remove.
+
+ if was found and removed; otherwise, .
+
+
+ Removes the first occurrence of the specified element from the builder.
+ If no match is found, the builder remains unchanged.
+ The element to remove.
+ The equality comparer to use in the search.
+ If , is used.
+ A value indicating whether the specified element was found and removed from the collection.
+
+
+ Removes all the elements that match the conditions defined by the specified predicate.
+ The delegate that defines the conditions of the elements to remove.
+
+
+ Removes the item at the specified index from the array.
+ The zero-based index of the item to remove.
+
+
+ Removes the specified values from this list.
+ The items to remove if matches are found in this list.
+
+
+ Removes the specified values from this list.
+ The items to remove if matches are found in this list.
+ The equality comparer to use in the search.
+ If , is used.
+
+
+ Removes the specified values from this list.
+ The 0-based index into the array for the element to omit from the returned array.
+ The number of elements to remove.
+
+
+ Replaces the first equal element in the list with the specified element.
+ The element to replace.
+ The element to replace the old element with.
+
+
+ Replaces the first equal element in the list with the specified element.
+ The element to replace.
+ The element to replace the old element with.
+ The equality comparer to use in the search.
+ If , is used.
+
+
+ Reverses the order of elements in the collection.
+
+
+ Sorts the contents of the array.
+
+
+ Sorts the contents of the array.
+ The comparer to use for sorting. If comparer is , the default comparer for the elements type in the array is used.
+
+
+ Sorts the elements in the entire array using the specified .
+ The to use when comparing elements.
+
+ is null.
+
+
+ Sorts the contents of the array.
+ The starting index for the sort.
+ The number of elements to include in the sort.
+ The comparer to use for sorting. If comparer is , the default comparer for the elements type in the array is used.
+
+
+ Returns an enumerator that iterates through the array.
+ An enumerator that iterates through the array.
+
+
+ Returns an enumerator that iterates through the array.
+ An enumerator that iterates through the array.
+
+
+ Creates a new array with the current contents of this .
+ A new array with the contents of this .
+
+
+ Returns an immutable array that contains the current contents of this .
+ An immutable array that contains the current contents of this .
+
+
+ Gets or sets the length of the internal array. When set, the internal array is reallocated to the given capacity if it is not already the specified length.
+ The length of the internal array.
+
+
+ Gets or sets the number of items in the array.
+ The number of items in the array.
+
+
+ Gets or sets the item at the specified index.
+ The index of the item to get or set.
+ The specified index is not in the array.
+ The item at the specified index.
+
+
+ Gets a value that indicates whether the is read-only.
+
+ if the is read-only; otherwise, .
+
+
+ An array enumerator.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+
+ Advances to the next value in the array.
+
+ if another item exists in the array; otherwise, .
+
+
+ Gets the current item.
+ The current item.
+
+
+ Provides a set of initialization methods for instances of the class.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+ Determines whether the specified immutable dictionary contains the specified key/value pair.
+ The immutable dictionary to search.
+ The key to locate in the immutable dictionary.
+ The value to locate on the specified key, if the key is found.
+ The type of the keys in the immutable dictionary.
+ The type of the values in the immutable dictionary.
+
+ if this map contains the specified key/value pair; otherwise, .
+
+
+ Creates an empty immutable dictionary.
+ The type of keys stored by the dictionary.
+ The type of values stored by the dictionary.
+ An empty immutable dictionary.
+
+
+ Creates an empty immutable dictionary that uses the specified key comparer.
+ The implementation to use to determine the equality of keys in the dictionary.
+ The type of keys stored by the dictionary.
+ The type of values stored by the dictionary.
+ An empty immutable dictionary.
+
+
+ Creates an empty immutable dictionary that uses the specified key and value comparers.
+ The implementation to use to determine the equality of keys in the dictionary.
+ The implementation to use to determine the equality of values in the dictionary.
+ The type of keys stored by the dictionary.
+ The type of values stored by the dictionary.
+ An empty immutable dictionary.
+
+
+ Creates a new immutable dictionary builder.
+ The type of keys stored by the dictionary.
+ The type of values stored by the dictionary.
+ The new builder.
+
+
+ Creates a new immutable dictionary builder.
+ The key comparer.
+ The type of keys stored by the dictionary.
+ The type of values stored by the dictionary.
+ The new builder.
+
+
+ Creates a new immutable dictionary builder.
+ The key comparer.
+ The value comparer.
+ The type of keys stored by the dictionary.
+ The type of values stored by the dictionary.
+ The new builder.
+
+
+ Creates a new immutable dictionary that contains the specified items.
+ The items used to populate the dictionary before it's immutable.
+ The type of keys in the dictionary.
+ The type of values in the dictionary.
+ A new immutable dictionary that contains the specified items.
+
+
+ Creates a new immutable dictionary that contains the specified items and uses the specified key comparer.
+ The comparer implementation to use to compare keys for equality.
+ The items to add to the dictionary before it's immutable.
+ The type of keys in the dictionary.
+ The type of values in the dictionary.
+ A new immutable dictionary that contains the specified items and uses the specified comparer.
+
+
+ Creates a new immutable dictionary that contains the specified items and uses the specified key comparer.
+ The comparer implementation to use to compare keys for equality.
+ The comparer implementation to use to compare values for equality.
+ The items to add to the dictionary before it's immutable.
+ The type of keys in the dictionary.
+ The type of values in the dictionary.
+ A new immutable dictionary that contains the specified items and uses the specified comparer.
+
+
+ Gets the value for a given key if a matching key exists in the dictionary.
+ The dictionary to retrieve the value from.
+ The key to search for.
+ The type of the key.
+ The type of the value.
+ The value for the key, or default(TValue) if no matching key was found.
+
+
+ Gets the value for a given key if a matching key exists in the dictionary.
+ The dictionary to retrieve the value from.
+ The key to search for.
+ The default value to return if no matching key is found in the dictionary.
+ The type of the key.
+ The type of the value.
+ The value for the key, or if no matching key was found.
+
+
+ Constructs an immutable dictionary from an existing collection of elements, applying a transformation function to the source keys.
+ The source collection used to generate the immutable dictionary.
+ The function used to transform keys for the immutable dictionary.
+ The type of element in the source collection.
+ The type of key in the resulting immutable dictionary.
+ The immutable dictionary that contains elements from , with keys transformed by applying .
+
+
+ Constructs an immutable dictionary based on some transformation of a sequence.
+ The source collection used to generate the immutable dictionary.
+ The function used to transform keys for the immutable dictionary.
+ The key comparer to use for the dictionary.
+ The type of element in the source collection.
+ The type of key in the resulting immutable dictionary.
+ The immutable dictionary that contains elements from , with keys transformed by applying .
+
+
+ Enumerates a sequence of key/value pairs and produces an immutable dictionary of its contents.
+ The sequence of key/value pairs to enumerate.
+ The type of the keys in the dictionary.
+ The type of the values in the dictionary.
+ An immutable dictionary that contains the key/value pairs in the specified sequence.
+
+
+ Enumerates a sequence of key/value pairs and produces an immutable dictionary of its contents by using the specified key comparer.
+ The sequence of key/value pairs to enumerate.
+ The key comparer to use when building the immutable dictionary.
+ The type of the keys in the dictionary.
+ The type of the values in the dictionary.
+ An immutable dictionary that contains the key/value pairs in the specified sequence.
+
+
+ Enumerates a sequence of key/value pairs and produces an immutable dictionary of its contents by using the specified key and value comparers.
+ The sequence of key/value pairs to enumerate.
+ The key comparer to use when building the immutable dictionary.
+ The value comparer to use for the immutable dictionary.
+ The type of the keys in the dictionary.
+ The type of the values in the dictionary.
+ An immutable dictionary that contains the key/value pairs in the specified sequence.
+
+
+ Creates an immutable dictionary from the current contents of the builder's dictionary.
+ The builder to create the immutable dictionary from.
+ The type of the keys in the dictionary.
+ The type of the values in the dictionary.
+ An immutable dictionary that contains the current contents in the builder's dictionary.
+
+
+ Enumerates and transforms a sequence, and produces an immutable dictionary of its contents.
+ The sequence to enumerate to generate the dictionary.
+ The function that will produce the key for the dictionary from each sequence element.
+ The function that will produce the value for the dictionary from each sequence element.
+ The type of the elements in the sequence.
+ The type of the keys in the resulting dictionary.
+ The type of the values in the resulting dictionary.
+ An immutable dictionary that contains the items in the specified sequence.
+
+
+ Enumerates and transforms a sequence, and produces an immutable dictionary of its contents by using the specified key comparer.
+ The sequence to enumerate to generate the dictionary.
+ The function that will produce the key for the dictionary from each sequence element.
+ The function that will produce the value for the dictionary from each sequence element.
+ The key comparer to use for the dictionary.
+ The type of the elements in the sequence.
+ The type of the keys in the resulting dictionary.
+ The type of the values in the resulting dictionary.
+ An immutable dictionary that contains the items in the specified sequence.
+
+
+ Enumerates and transforms a sequence, and produces an immutable dictionary of its contents by using the specified key and value comparers.
+ The sequence to enumerate to generate the dictionary.
+ The function that will produce the key for the dictionary from each sequence element.
+ The function that will produce the value for the dictionary from each sequence element.
+ The key comparer to use for the dictionary.
+ The value comparer to use for the dictionary.
+ The type of the elements in the sequence.
+ The type of the keys in the resulting dictionary.
+ The type of the values in the resulting dictionary.
+ An immutable dictionary that contains the items in the specified sequence.
+
+
+ Represents an immutable, unordered collection of keys and values.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+ The type of the keys in the dictionary.
+ The type of the values in the dictionary.
+
+
+ Gets an empty immutable dictionary.
+
+
+ Adds an element with the specified key and value to the immutable dictionary.
+ The key of the element to add.
+ The value of the element to add.
+ The given key already exists in the dictionary but has a different value.
+ A new immutable dictionary that contains the additional key/value pair.
+
+
+ Adds the specified key/value pairs to the immutable dictionary.
+ The key/value pairs to add.
+ One of the given keys already exists in the dictionary but has a different value.
+ A new immutable dictionary that contains the additional key/value pairs.
+
+
+ Retrieves an empty immutable dictionary that has the same ordering and key/value comparison rules as this dictionary instance.
+ An empty dictionary with equivalent ordering and key/value comparison rules.
+
+
+ Determines whether this immutable dictionary contains the specified key/value pair.
+ The key/value pair to locate.
+
+ if the specified key/value pair is found in the dictionary; otherwise, .
+
+
+ Determines whether the immutable dictionary contains an element with the specified key.
+ The key to locate.
+
+ if the immutable dictionary contains an element with the specified key; otherwise, .
+
+
+ Determines whether the immutable dictionary contains an element with the specified value.
+ The value to locate. The value can be for reference types.
+
+ if the dictionary contains an element with the specified value; otherwise, .
+
+
+ Returns an enumerator that iterates through the immutable dictionary.
+ An enumerator that can be used to iterate through the dictionary.
+
+
+ Removes the element with the specified key from the immutable dictionary.
+ The key of the element to remove.
+ A new immutable dictionary with the specified element removed; or this instance if the specified key cannot be found in the dictionary.
+
+
+ Removes the elements with the specified keys from the immutable dictionary.
+ The keys of the elements to remove.
+ A new immutable dictionary with the specified keys removed; or this instance if the specified keys cannot be found in the dictionary.
+
+
+ Sets the specified key and value in the immutable dictionary, possibly overwriting an existing value for the key.
+ The key of the entry to add.
+ The key value to set.
+ A new immutable dictionary that contains the specified key/value pair.
+
+
+ Sets the specified key/value pairs in the immutable dictionary, possibly overwriting existing values for the keys.
+ The key/value pairs to set in the dictionary. If any of the keys already exist in the dictionary, this method will overwrite their previous values.
+ A new immutable dictionary that contains the specified key/value pairs.
+
+
+ Adds an item to the .
+ The object to add to the .
+
+
+ Removes all items from the .
+
+
+ Copies the elements of the to an , starting at a particular index.
+ The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+
+ Removes the first occurrence of a specific object from the .
+ The object to remove from the .
+
+ if was successfully removed from the ; otherwise, . This method also returns if is not found in the original .
+
+
+ Adds an element with the provided key and value to the immutable dictionary.
+ The object to use as the key of the element to add.
+ The object to use as the value of the element to add.
+
+ is .
+ An element with the same key already exists in the .
+ The is read-only.
+
+
+ Removes the element with the specified key from the generic dictionary.
+ The key of the element to remove.
+
+ is .
+ The is read-only.
+
+ if the element is successfully removed; otherwise, . This method also returns if was not found in the original generic dictionary.
+
+
+ Returns an enumerator that iterates through the collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Copies the elements of the dictionary to an array, starting at a particular array index.
+ The one-dimensional array that is the destination of the elements copied from the dictionary. The array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+
+ Adds an element with the provided key and value to the immutable dictionary object.
+ The object to use as the key of the element to add.
+ The object to use as the value of the element to add.
+
+
+ Clears this instance.
+ The dictionary object is read-only.
+
+
+ Determines whether the immutable dictionary object contains an element with the specified key.
+ The key to locate in the dictionary object.
+
+ if the dictionary contains an element with the key; otherwise, .
+
+
+ Returns an object for the immutable dictionary object.
+ An enumerator object for the dictionary object.
+
+
+ Removes the element with the specified key from the immutable dictionary object.
+ The key of the element to remove.
+
+
+ Returns an enumerator that iterates through a collection.
+ An enumerator object that can be used to iterate through the collection.
+
+
+ See the interface.
+ Key of the entry to be added.
+ Value of the entry to be added.
+ A new immutable dictionary that contains the additional key/value pair.
+
+
+ See the interface.
+ Sequence of key/value pairs to be added to the dictionary.
+ A new immutable dictionary that contains the additional key/value pairs.
+
+
+ Retrieves an empty dictionary that has the same ordering and key-value comparison rules as this dictionary instance.
+ The immutable dictionary instance.
+
+
+ See the interface.
+ Key of the entry to be removed.
+ A new immutable dictionary with the specified element removed; or this instance if the specified key cannot be found in the dictionary.
+
+
+ See the interface.
+ Sequence of keys to be removed.
+ A new immutable dictionary with the specified keys removed; or this instance if the specified keys cannot be found in the dictionary.
+
+
+ See the interface.
+ Key of entry to be added.
+ Value of the entry to be added.
+ A new immutable dictionary that contains the specified key/value pair.
+
+
+ Applies a given set of key-value pairs to an immutable dictionary, replacing any conflicting keys in the resulting dictionary.
+ The key-value pairs to set on the map. Any keys that conflict with existing keys will replace the previous values.
+ A copy of the immutable dictionary with updated key-value pairs.
+
+
+ Creates an immutable dictionary with the same contents as this dictionary that can be efficiently mutated across multiple operations by using standard mutable interfaces.
+ A collection with the same contents as this dictionary that can be efficiently mutated across multiple operations by using standard mutable interfaces.
+
+
+ Determines whether this dictionary contains a specified key.
+ The key to search for.
+ The matching key located in the dictionary if found, or equalkey if no match is found.
+
+ if a match for is found; otherwise, .
+
+
+ Gets the value associated with the specified key.
+ The key whose value will be retrieved.
+ When this method returns, contains the value associated with the specified key, if the key is found; otherwise, contains the default value for the type of the parameter. This parameter is passed uninitialized.
+
+ is null.
+
+ if the object that implements the dictionary contains an element with the specified key; otherwise, .
+
+
+ Gets an instance of the immutable dictionary that uses the specified key comparer.
+ The key comparer to use.
+ An instance of the immutable dictionary that uses the given comparer.
+
+
+ Gets an instance of the immutable dictionary that uses the specified key and value comparers.
+ The key comparer to use.
+ The value comparer to use.
+ An instance of the immutable dictionary that uses the given comparers.
+
+
+ Gets the number of key/value pairs in the immutable dictionary.
+ The number of key/value pairs in the dictionary.
+
+
+ Gets a value that indicates whether this instance of the immutable dictionary is empty.
+
+ if this instance is empty; otherwise, .
+
+
+ Gets the associated with the specified key.
+ The type of the key.
+ The value associated with the specified key. If no results are found, the operation throws an exception.
+
+
+ Gets the key comparer for the immutable dictionary.
+ The key comparer.
+
+
+ Gets the keys in the immutable dictionary.
+ The keys in the immutable dictionary.
+
+
+ Gets a value indicating whether the is read-only.
+
+ if the is read-only; otherwise, .
+
+
+ Gets or sets the with the specified key.
+ The type of the key.
+ An object of type associated with the .
+
+
+ Gets the keys.
+ A collection containing the keys.
+
+
+ Gets the values.
+ A collection containing the values.
+
+
+ Gets a value indicating whether access to the is synchronized (thread safe).
+
+ if access to the is synchronized (thread safe); otherwise, .
+
+
+ Gets an object that can be used to synchronize access to the .
+ An object that can be used to synchronize access to the .
+
+
+ Gets a value indicating whether the object has a fixed size.
+
+ if the object has a fixed size; otherwise, .
+
+
+ Gets a value indicating whether the is read-only.
+
+ if the is read-only; otherwise, .
+
+
+ Gets or sets the element with the specified key.
+ The key.
+ The value stored under the specified key.
+
+
+ Gets an containing the keys of the .
+ An containing the keys of the object that implements .
+
+
+ Gets an containing the values in the .
+ An containing the values in the object that implements .
+
+
+ Gets the value comparer used to determine whether values are equal.
+ The value comparer used to determine whether values are equal.
+
+
+ Gets the values in the immutable dictionary.
+ The values in the immutable dictionary.
+
+
+ Represents a hash map that mutates with little or no memory allocations and that can produce or build on immutable hash map instances very efficiently.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+
+
+ Adds an element that has the specified key and value to the immutable dictionary.
+ The key of the element to add.
+ The value of the element to add.
+
+ is null.
+ An element with the same key already exists in the dictionary.
+ The dictionary is read-only.
+
+
+ Adds the specified item to the immutable dictionary.
+ The object to add to the dictionary.
+ The dictionary is read-only.
+
+
+ Adds a sequence of values to this collection.
+ The items to add to this collection.
+
+
+ Removes all items from the immutable dictionary.
+ The dictionary is read-only.
+
+
+ Determines whether the immutable dictionary contains a specific value.
+ The object to locate in the dictionary.
+
+ if is found in the dictionary; otherwise, .
+
+
+ Determines whether the immutable dictionary contains an element that has the specified key.
+ The key to locate in the dictionary.
+
+ is null.
+
+ if the dictionary contains an element with the key; otherwise, .
+
+
+ Determines whether the immutable dictionary contains an element that has the specified value.
+ The value to locate in the immutable dictionary. The value can be for reference types.
+
+ if the dictionary contains an element with the specified value; otherwise, .
+
+
+ Returns an enumerator that iterates through the immutable dictionary.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Gets the value for a given key if a matching key exists in the dictionary.
+ The key to search for.
+ The value for the key, or default(TValue) if no matching key was found.
+
+
+ Gets the value for a given key if a matching key exists in the dictionary.
+ The key to search for.
+ The default value to return if no matching key is found in the dictionary.
+ The value for the key, or if no matching key was found.
+
+
+ Removes the element with the specified key from the immutable dictionary.
+ The key of the element to remove.
+
+ is null.
+ The dictionary is read-only.
+
+ if the element is successfully removed; otherwise, . This method also returns if was not found in the dictionary.
+
+
+ Removes the first occurrence of a specific object from the immutable dictionary.
+ The object to remove from the dictionary.
+ The dictionary is read-only.
+
+ if was successfully removed from the dictionary; otherwise, . This method also returns false if is not found in the dictionary.
+
+
+ Removes any entries with keys that match those found in the specified sequence from the immutable dictionary.
+ The keys for entries to remove from the dictionary.
+
+
+ Copies the elements of the dictionary to an array of type , starting at the specified array index.
+ The one-dimensional array that is the destination of the elements copied from the dictionary. The array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+
+ Returns an enumerator that iterates through the collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Copies the elements of the dictionary to an array of type , starting at the specified array index.
+ The one-dimensional array of type that is the destination of the elements copied from the dictionary. The array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+
+ Adds an element with the provided key and value to the dictionary object.
+ The key of the element to add.
+ The value of the element to add.
+
+
+ Determines whether the dictionary object contains an element with the specified key.
+ The key to locate.
+
+ if the dictionary contains an element with the key; otherwise, .
+
+
+ Returns an object for the dictionary.
+
+ An object for the dictionary.
+
+
+ Removes the element with the specified key from the dictionary.
+ The key of the element to remove.
+
+
+ Returns an enumerator that iterates through a collection.
+ An enumerator object that can be used to iterate through the collection.
+
+
+ Creates an immutable dictionary based on the contents of this instance.
+ An immutable dictionary.
+
+
+ Determines whether this dictionary contains a specified key.
+ The key to search for.
+ The matching key located in the dictionary if found, or equalkey if no match is found.
+
+ if a match for is found; otherwise, .
+
+
+ Returns the value associated with the specified key.
+ The key whose value will be retrieved.
+ When this method returns, contains the value associated with the specified key, if the key is found; otherwise, returns the default value for the type of the parameter. This parameter is passed uninitialized.
+
+ is null.
+
+ if the object that implements the immutable dictionary contains an element with the specified key; otherwise, .
+
+
+ Gets the number of elements contained in the immutable dictionary.
+ The number of elements contained in the immutable dictionary.
+
+
+ Gets or sets the element with the specified key.
+ The element to get or set.
+
+ is .
+ The property is being retrieved, and is not found.
+ The property is being set, and the is read-only.
+ The element that has the specified key.
+
+
+ Gets or sets the key comparer.
+ The key comparer.
+
+
+ Gets a collection that contains the keys of the immutable dictionary.
+ A collection that contains the keys of the object that implements the immutable dictionary.
+
+
+ Gets a value that indicates whether the collection is read-only.
+
+ if the collection is read-only; otherwise, .
+
+
+ Gets a collection containing the keys of the generic dictionary.
+ A collection containing the keys of the object that implements the generic dictionary.
+
+
+ Gets a collection containing the values in the generic dictionary.
+ A collection containing the values in the object that implements the generic dictionary.
+
+
+ Gets a value that indicates whether access to the is synchronized (thread safe).
+
+ if access to the is synchronized (thread safe); otherwise, .
+
+
+ Gets an object that can be used to synchronize access to the .
+ An object that can be used to synchronize access to the .
+
+
+ Gets a value that indicates whether the object has a fixed size.
+
+ if the object has a fixed size; otherwise, .
+
+
+ Gets a value that indicates whether the is read-only.
+
+ if the is read-only; otherwise, .
+
+
+ Gets or sets the element with the specified key.
+ The key.
+ Value stored under specified key.
+
+
+ Gets an containing the keys of the .
+ An containing the keys of the object that implements .
+
+
+ Gets an containing the values in the .
+ An containing the values in the object that implements .
+
+
+ Gets or sets the value comparer.
+ The value comparer.
+
+
+ Gets a collection that contains the values of the immutable dictionary.
+ A collection that contains the values of the object that implements the dictionary.
+
+
+ Enumerates the contents of the immutable dictionary without allocating any memory.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+
+
+ Releases the resources used by the current instance of the class.
+
+
+ Advances the enumerator to the next element of the immutable dictionary.
+ The dictionary was modified after the enumerator was created.
+
+ if the enumerator was successfully advanced to the next element; if the enumerator has passed the end of the dictionary.
+
+
+ Sets the enumerator to its initial position, which is before the first element in the dictionary.
+ The dictionary was modified after the enumerator was created.
+
+
+ Gets the element at the current position of the enumerator.
+ The element in the dictionary at the current position of the enumerator.
+
+
+ Gets the current element.
+ Current element in enumeration.
+
+
+ Provides a set of initialization methods for instances of the class.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+ Creates an empty immutable hash set.
+ The type of items to be stored in the immutable hash set.
+ An empty immutable hash set.
+
+
+ Creates a new immutable hash set that contains the specified item.
+ The item to prepopulate the hash set with.
+ The type of items in the immutable hash set.
+ A new immutable hash set that contains the specified item.
+
+
+ Creates a new immutable hash set that contains the specified array of items.
+ An array that contains the items to prepopulate the hash set with.
+ The type of items in the immutable hash set.
+ A new immutable hash set that contains the specified items.
+
+
+ Creates an empty immutable hash set that uses the specified equality comparer.
+ The object to use for comparing objects in the set for equality.
+ The type of items in the immutable hash set.
+ An empty immutable hash set.
+
+
+ Creates a new immutable hash set that contains the specified item and uses the specified equality comparer for the set type.
+ The object to use for comparing objects in the set for equality.
+ The item to prepopulate the hash set with.
+ The type of items in the immutable hash set.
+ A new immutable hash set that contains the specified item.
+
+
+ Creates a new immutable hash set that contains the items in the specified collection and uses the specified equality comparer for the set type.
+ The object to use for comparing objects in the set for equality.
+ An array that contains the items to prepopulate the hash set with.
+ The type of items stored in the immutable hash set.
+ A new immutable hash set that contains the specified items.
+
+
+ Creates a new immutable collection prefilled with the specified items.
+ The equality comparer.
+ The items to prepopulate.
+ The type of items stored by the collection.
+ The new immutable collection.
+
+
+ Creates a new immutable collection prefilled with the specified items.
+ The items to prepopulate.
+ The type of items stored by the collection.
+ The new immutable collection.
+
+
+ Creates a new immutable hash set builder.
+ The type of items stored by the collection.
+ The immutable hash set builder.
+
+
+ Creates a new immutable hash set builder.
+ The object to use for comparing objects in the set for equality.
+ The type of items stored by the collection.
+ The new immutable hash set builder.
+
+
+ Creates a new immutable hash set prefilled with the specified items.
+ The items to add to the hash set.
+ The type of items stored by the collection.
+ The new immutable hash set that contains the specified items.
+
+
+ Creates a new immutable hash set that contains the specified items and uses the specified equality comparer for the set type.
+ The object to use for comparing objects in the set for equality.
+ The items add to the collection before immutability is applied.
+ The type of items stored in the collection.
+ The new immutable hash set.
+
+
+ Enumerates a sequence and produces an immutable hash set of its contents.
+ The sequence to enumerate.
+ The type of the elements in the sequence.
+ An immutable hash set that contains the items in the specified sequence.
+
+
+ Enumerates a sequence, produces an immutable hash set of its contents, and uses the specified equality comparer for the set type.
+ The sequence to enumerate.
+ The object to use for comparing objects in the set for equality.
+ The type of the elements in the sequence.
+ An immutable hash set that contains the items in the specified sequence and uses the specified equality comparer.
+
+
+ Creates an immutable hash set from the current contents of the builder's set.
+ The builder to create the immutable hash set from.
+ The type of the elements in the hash set.
+ An immutable hash set that contains the current contents in the builder's set.
+
+
+ Represents an immutable, unordered hash set.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+ The type of elements in the hash set.
+
+
+ Gets an immutable hash set for this type that uses the default .
+
+
+ Adds the specified element to the hash set.
+ The element to add to the set.
+ A hash set that contains the added value and any values previously held by the object.
+
+
+ Retrieves an empty immutable hash set that has the same sorting and ordering semantics as this instance.
+ An empty hash set that has the same sorting and ordering semantics as this instance.
+
+
+ Determines whether this immutable hash set contains the specified element.
+ The object to locate in the immutable hash set.
+
+ if is found in the ; otherwise, .
+
+
+ Removes the elements in the specified collection from the current immutable hash set.
+ The collection of items to remove from this set.
+ A new set with the items removed; or the original set if none of the items were in the set.
+
+
+ Returns an enumerator that iterates through the collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Creates an immutable hash set that contains elements that exist in both this set and the specified set.
+ The collection to compare to the current set.
+ A new immutable set that contains any elements that exist in both sets.
+
+
+ Determines whether the current immutable hash set is a proper (strict) subset of a specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a proper subset of the specified collection; otherwise, .
+
+
+ Determines whether the current immutable hash set is a proper (strict) superset of a specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a proper superset of the specified collection; otherwise, .
+
+
+ Determines whether the current immutable hash set is a subset of a specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a subset of the specified collection; otherwise, .
+
+
+ Determines whether the current immutable hash set is a superset of a specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a superset of the specified collection; otherwise, .
+
+
+ Determines whether the current immutable hash set overlaps with the specified collection.
+ The collection to compare to the current set.
+
+ if the current set and the specified collection share at least one common element; otherwise, .
+
+
+ Removes the specified element from this immutable hash set.
+ The element to remove.
+ A new set with the specified element removed, or the current set if the element cannot be found in the set.
+
+
+ Determines whether the current immutable hash set and the specified collection contain the same elements.
+ The collection to compare to the current set.
+
+ if the sets are equal; otherwise, .
+
+
+ Creates an immutable hash set that contains only elements that are present either in the current set or in the specified collection, but not both.
+ The collection to compare to the current set.
+ A new set that contains the elements that are present only in the current set or in the specified collection, but not both.
+
+
+ Adds an item to the set.
+ The object to add to the set.
+ The set is read-only.
+
+
+ Removes all items from this set.
+ The set is read-only.
+
+
+ Copies the elements of the set to an array, starting at a particular index.
+ The one-dimensional array that is the destination of the elements copied from the set. The array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+
+ Removes the first occurrence of a specific object from the set.
+ The object to remove from the set.
+
+ if the element is successfully removed; otherwise, .
+
+
+ Returns an enumerator that iterates through the collection.
+ An enumerator that iterates through the collection.
+
+
+ Adds an element to the current set and returns a value that indicates whether the element was successfully added.
+ The element to add to the collection.
+
+ if the element is added to the set; if the element is already in the set.
+
+
+ Removes all elements in the specified collection from the current set.
+ The collection of items to remove.
+
+
+ Modifies the current set so that it contains only elements that are also in a specified collection.
+ The collection to compare to the current collection.
+
+
+ Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.
+ The collection to compare to the current set.
+
+
+ Modifies the current set so that it contains all elements that are present in either the current set or in the specified collection.
+ The collection to compare to the current set.
+
+
+ Copies the elements of the set to an array, starting at a particular index.
+ The one-dimensional array that is the destination of the elements copied from the set. The array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+
+ Returns an enumerator that iterates through a set.
+ An enumerator that can be used to iterate through the set.
+
+
+ Adds the specified element to this immutable set.
+ The element to add.
+ A new set with the element added, or this set if the element is already in the set.
+
+
+ Retrieves an empty set that has the same sorting and ordering semantics as this instance.
+ An empty set that has the same sorting or ordering semantics as this instance.
+
+
+ Removes the elements in the specified collection from the current set.
+ The collection of items to remove from this set.
+ A new set with the items removed; or the original set if none of the items were in the set.
+
+
+ Creates an immutable set that contains elements that exist in both this set and the specified set.
+ The collection to compare to the current set.
+ A new immutable set that contains any elements that exist in both sets.
+
+
+ Removes the specified element from this immutable set.
+ The element to remove.
+ A new set with the specified element removed, or the current set if the element cannot be found in the set.
+
+
+ Creates an immutable set that contains only elements that are present either in the current set or in the specified collection, but not both.
+ The collection to compare to the current set.
+ A new set that contains the elements that are present only in the current set or in the specified collection, but not both.
+
+
+ Creates a new immutable set that contains all elements that are present in either the current set or in the specified collection.
+ The collection to add elements from.
+ A new immutable set with the items added; or the original set if all the items were already in the set.
+
+
+ Creates an immutable hash set that has the same contents as this set and can be efficiently mutated across multiple operations by using standard mutable interfaces.
+ A set with the same contents as this set that can be efficiently mutated across multiple operations by using standard mutable interfaces.
+
+
+ Searches the set for a given value and returns the equal value it finds, if any.
+ The value to search for.
+ The value from the set that the search found, or the original value if the search yielded no match.
+ A value indicating whether the search was successful.
+
+
+ Creates a new immutable hash set that contains all elements that are present in either the current set or in the specified collection.
+ The collection to add elements from.
+ A new immutable hash set with the items added; or the original set if all the items were already in the set.
+
+
+ Gets an instance of the immutable hash set that uses the specified equality comparer for its search methods.
+ The equality comparer to use.
+ An instance of this immutable hash set that uses the given comparer.
+
+
+ Gets the number of elements in the immutable hash set.
+ The number of elements in the hash set.
+
+
+ Gets a value that indicates whether the current immutable hash set is empty.
+
+ if this instance is empty; otherwise, .
+
+
+ Gets the object that is used to obtain hash codes for the keys and to check the equality of values in the immutable hash set.
+ The comparer used to obtain hash codes for the keys and check equality.
+
+
+ See the interface.
+
+ if the is read-only; otherwise, .
+
+
+ See the interface.
+
+ if access to the is synchronized (thread safe); otherwise, .
+
+
+ See .
+ An object that can be used to synchronize access to the .
+
+
+ Represents a hash set that mutates with little or no memory allocations and that can produce or build on immutable hash set instances very efficiently.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+
+ Adds the specified item to the immutable hash set.
+ The item to add.
+
+ if the item did not already belong to the collection; otherwise, .
+
+
+ Removes all items from the immutable hash set.
+ The hash set is read-only.
+
+
+ Determines whether the immutable hash set contains a specific value.
+ The object to locate in the hash set.
+
+ if is found in the hash set ; otherwise, .
+
+
+ Removes all elements in the specified collection from the current hash set.
+ The collection of items to remove from the set.
+
+
+ Returns an enumerator that iterates through the immutable hash set.
+ An enumerator that can be used to iterate through the set.
+
+
+ Modifies the current set so that it contains only elements that are also in a specified collection.
+ The collection to compare to the current set.
+
+
+ Determines whether the current set is a proper (strict) subset of a specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a proper subset of ; otherwise, .
+
+
+ Determines whether the current set is a proper (strict) superset of a specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a proper superset of ; otherwise, .
+
+
+ Determines whether the current set is a subset of a specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a subset of ; otherwise, .
+
+
+ Determines whether the current set is a superset of a specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a superset of ; otherwise, .
+
+
+ Determines whether the current set overlaps with the specified collection.
+ The collection to compare to the current set.
+
+ if the current set and share at least one common element; otherwise, .
+
+
+ Removes the first occurrence of a specific object from the immutable hash set.
+ The object to remove from the set.
+ The set is read-only.
+
+ if was successfully removed from the set ; otherwise, . This method also returns if is not found in the original set.
+
+
+ Determines whether the current set and the specified collection contain the same elements.
+ The collection to compare to the current set.
+
+ if the current set is equal to ; otherwise, .
+
+
+ Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.
+ The collection to compare to the current set.
+
+
+ Adds an item to the hash set.
+ The object to add to the set.
+ The set is read-only.
+
+
+ Copies the elements of the hash set to an array, starting at a particular array index.
+ The one-dimensional array that is the destination of the elements copied from the hash set. The array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+
+ Returns an enumerator that iterates through the collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Returns an enumerator that iterates through a collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Creates an immutable hash set based on the contents of this instance.
+ An immutable set.
+
+
+ Searches the set for a given value and returns the equal value it finds, if any.
+ The value for which to search.
+ The value from the set that the search found, or the original value if the search yielded no match.
+ A value indicating whether the search was successful.
+
+
+ Modifies the current set so that it contains all elements that are present in both the current set and in the specified collection.
+ The collection to compare to the current set.
+
+
+ Gets the number of elements contained in the immutable hash set.
+ The number of elements contained in the immutable hash set.
+
+
+ Gets or sets the key comparer.
+ The key comparer.
+
+
+ Gets a value indicating whether the is read-only.
+
+ if the is read-only; otherwise, .
+
+
+ Enumerates the contents of the immutable hash set without allocating any memory.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+
+ Releases the resources used by the current instance of the class.
+
+
+ Advances the enumerator to the next element of the immutable hash set.
+ The hash set was modified after the enumerator was created.
+
+ if the enumerator was successfully advanced to the next element; if the enumerator has passed the end of the hash set.
+
+
+ Sets the enumerator to its initial position, which is before the first element in the hash set.
+ The hash set was modified after the enumerator was created.
+
+
+ Gets the element at the current position of the enumerator.
+ The element at the current position of the enumerator.
+
+
+ Gets the current element.
+ The element in the collection at the current position of the enumerator.
+
+
+ Contains interlocked exchange mechanisms for immutable collections.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+ Obtains the value from a dictionary after having added it or updated an existing entry.
+ The variable or field to atomically update if the specified is not in the dictionary.
+ The key for the value to add or update.
+ The value to use if no previous value exists.
+ The function that receives the key and prior value and returns the new value with which to update the dictionary.
+ The type of key stored by the dictionary.
+ The type of value stored by the dictionary.
+ The added or updated value.
+
+
+ Obtains the value from a dictionary after having added it or updated an existing entry.
+ The variable or field to atomically update if the specified is not in the dictionary.
+ The key for the value to add or update.
+ The function that receives the key and returns a new value to add to the dictionary when no value previously exists.
+ The function that receives the key and prior value and returns the new value with which to update the dictionary.
+ The type of key stored by the dictionary.
+ The type of value stored by the dictionary.
+ The added or updated value.
+
+
+ Atomically enqueues an element to the end of a queue.
+ The variable or field to atomically update.
+ The value to enqueue.
+ The type of items contained in the collection.
+
+
+ Gets the value for the specified key from the dictionary, or if the key was not found, adds a new value to the dictionary.
+ The variable or field to atomically update if the specified key is not in the dictionary.
+ The key for the value to get or add.
+ The value to add to the dictionary the key is not found.
+ The type of the keys contained in the collection.
+ The type of the values contained in the collection.
+ The value at the specified key or if the key was not present.
+
+
+ Gets the value for the specified key from the dictionary, or if the key was not found, adds a new value to the dictionary.
+ The variable or field to atomically update if the specified is not in the dictionary.
+ The key for the value to retrieve or add.
+ The function to execute to obtain the value to insert into the dictionary if the key is not found. This delegate will not be invoked more than once.
+ The type of the keys contained in the collection.
+ The type of the values contained in the collection.
+ The value at the specified key or if the key was not present.
+
+
+ Gets the value for the specified key from the dictionary, or if the key was not found, adds a new value to the dictionary.
+ The variable or field to update if the specified is not in the dictionary.
+ The key for the value to retrieve or add.
+ The function to execute to obtain the value to insert into the dictionary if the key is not found.
+ The argument to pass to the value factory.
+ The type of the keys contained in the collection.
+ The type of the values contained in the collection.
+ The type of the argument supplied to the value factory.
+ The value at the specified key or if the key was not present.
+
+
+ Compares two immutable arrays for equality and, if they are equal, replaces one of the arrays.
+ The destination, whose value is compared with and possibly replaced.
+ The value that replaces the destination value if the comparison results in equality.
+ The value that is compared to the value at .
+ The type of element stored by the array.
+ The original value in .
+
+
+ Sets an array to the specified array and returns a reference to the original array, as an atomic operation.
+ The array to set to the specified value.
+ The value to which the parameter is set.
+ The type of element stored by the array.
+ The original value of .
+
+
+ Sets an array to the specified array if the array has not been initialized.
+ The array to set to the specified value.
+ The value to which the parameter is set, if it's not initialized.
+ The type of element stored by the array.
+
+ if the array was assigned the specified value; otherwise, .
+
+
+ Pushes a new element onto the stack.
+ The stack to update.
+ The value to push on the stack.
+ The type of items in the stack.
+
+
+ Adds the specified key and value to the dictionary if the key is not in the dictionary.
+ The dictionary to update with the specified key and value.
+ The key to add, if is not already defined in the dictionary.
+ The value to add.
+ The type of the keys contained in the collection.
+ The type of the values contained in the collection.
+
+ if the key is not in the dictionary; otherwise, .
+
+
+ Atomically removes and returns the specified element at the head of the queue, if the queue is not empty.
+ The variable or field to atomically update.
+ Set to the value from the head of the queue, if the queue not empty.
+ The type of items in the queue.
+
+ if the queue is not empty and the head element is removed; otherwise, .
+
+
+ Removes an element from the top of the stack, if there is an element to remove.
+ The stack to update.
+ Receives the value removed from the stack, if the stack is not empty.
+ The type of items in the stack.
+
+ if an element is removed from the stack; otherwise, .
+
+
+ Removes the element with the specified key, if the key exists.
+ The dictionary to update.
+ The key to remove.
+ Receives the value of the removed item, if the dictionary is not empty.
+ The type of the keys contained in the collection.
+ The type of the values contained in the collection.
+
+ if the key was found and removed; otherwise, .
+
+
+ Sets the specified key to the specified value if the specified key already is set to a specific value.
+ The dictionary to update.
+ The key to update.
+ The new value to set.
+ The current value for in order for the update to succeed.
+ The type of the keys contained in the collection.
+ The type of the values contained in the collection.
+
+ if and are present in the dictionary and comparison was updated to ; otherwise, .
+
+
+ Mutates a value in-place with optimistic locking transaction semantics via a specified transformation function. The transformation is retried as many times as necessary to win the optimistic locking race.
+ The variable or field to be changed, which may be accessed by multiple threads.
+ A function that mutates the value. This function should be side-effect free, as it may run multiple times when races occur with other threads.
+ The type of data.
+
+ if the location's value is changed by applying the result of the function; if the location's value remained the same because the last invocation of returned the existing value.
+
+
+ Mutates an immutable array in-place with optimistic locking transaction semantics via a specified transformation function.
+ The transformation is retried as many times as necessary to win the optimistic locking race.
+ The immutable array to be changed.
+ A function that produces the new array from the old. This function should be side-effect free, as it may run multiple times when races occur with other threads.
+ The type of data in the immutable array.
+
+ if the location's value is changed by applying the result of the function; if the location's value remained the same because the last invocation of returned the existing value.
+
+
+ Mutates a value in-place with optimistic locking transaction semantics via a specified transformation function. The transformation is retried as many times as necessary to win the optimistic locking race.
+ The variable or field to be changed, which may be accessed by multiple threads.
+ A function that mutates the value. This function should be side-effect free, as it may run multiple times when races occur with other threads.
+ The argument to pass to .
+ The type of data.
+ The type of argument passed to the .
+
+ if the location's value is changed by applying the result of the function; if the location's value remained the same because the last invocation of returned the existing value.
+
+
+ Mutates an immutable array in-place with optimistic locking transaction semantics via a specified transformation function.
+ The transformation is retried as many times as necessary to win the optimistic locking race.
+ The immutable array to be changed.
+ A function that produces the new array from the old. This function should be side-effect free, as it may run multiple times when races occur with other threads.
+ The argument to pass to .
+ The type of data in the immutable array.
+ The type of argument passed to the .
+
+ if the location's value is changed by applying the result of the function; if the location's value remained the same because the last invocation of returned the existing value.
+
+
+ Provides a set of initialization methods for instances of the class.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+ Creates an empty immutable list.
+ The type of items to be stored in the .
+ An empty immutable list.
+
+
+ Creates a new immutable list that contains the specified item.
+ The item to prepopulate the list with.
+ The type of items in the .
+ A new that contains the specified item.
+
+
+ Creates a new immutable list that contains the specified array of items.
+ An array that contains the items to prepopulate the list with.
+ The type of items in the .
+ A new immutable list that contains the specified items.
+
+
+ Creates a new immutable list that contains the items from the specified span of items.
+ A span that contains the items to prepopulate the list with.
+ The type of items stored by the collection.
+ A new immutable list that contains the specified items.
+
+
+ Creates a new immutable list builder.
+ The type of items stored by the collection.
+ The immutable collection builder.
+
+
+ Creates a new immutable list that contains the specified items.
+ The items to add to the list.
+ The type of items in the .
+ An immutable list that contains the specified items.
+
+
+ Searches for the specified object and returns the zero-based index of the first occurrence within the list.
+ The list to search.
+ The object to locate in the list. The value can be null for reference types.
+ The type of items in the list.
+ The zero-based index of the first occurrence of item within the range of elements in the list that extends from index to the last element, if found; otherwise, -1.
+
+
+ Searches for the specified object and returns the zero-based index of the first occurrence within the list.
+ The list to search.
+ The object to locate in the Immutable list. The value can be null for reference types.
+ The equality comparer to use in the search.
+ The type of items in the list.
+ The zero-based index of the first occurrence of item within the range of elements in the immutable list that extends from index to the last element, if found; otherwise, -1.
+
+
+ Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the immutable list that extends from the specified index to the last element.
+ The list to search.
+ The object to locate in the Immutable list. The value can be null for reference types.
+ The zero-based starting index of the search. 0 (zero) is valid in an empty list.
+ The type of items in the list.
+ The zero-based index of the first occurrence of item within the range of elements in the Immutable list that extends from index to the last element, if found; otherwise, -1.
+
+
+ Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the immutable list that extends from the specified index to the last element.
+ The list to search.
+ The object to locate in the Immutable list. The value can be null for reference types.
+ The zero-based starting index of the search. 0 (zero) is valid in an empty list.
+ The number of elements in the section to search.
+ The type of items in the list.
+ The zero-based index of the first occurrence of item within the range of elements in the Immutable list that extends from index to the last element, if found; otherwise, -1.
+
+
+ Searches for the specified object and returns the zero-based index of the last occurrence within the entire immutable list.
+ The list to search.
+ The object to locate in the Immutable list. The value can be null for reference types.
+ The type of items in the list.
+ The zero-based index of the last occurrence of item within the entire the Immutable list, if found; otherwise, -1.
+
+
+ Searches for the specified object and returns the zero-based index of the last occurrence within the entire immutable list.
+ The list to search.
+ The object to locate in the Immutable list. The value can be null for reference types.
+ The equality comparer to use in the search.
+ The type of items in the list.
+ The zero-based index of the last occurrence of item within the entire the Immutable list, if found; otherwise, -1.
+
+
+ Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the immutable list that extends from the first element to the specified index.
+ The list to search.
+ The object to locate in the Immutable list. The value can be null for reference types.
+ The zero-based starting index of the backward search.
+ The type of items in the list.
+ The zero-based index of the last occurrence of item within the range of elements in the Immutable list that extends from the first element to index, if found; otherwise, -1.
+
+
+ Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the immutable list that extends from the first element to the specified index.
+ The list to search.
+ The object to locate in the Immutable list. The value can be null for reference types.
+ The zero-based starting index of the backward search.
+ The number of elements in the section to search.
+ The type of items in the list.
+ The zero-based index of the last occurrence of item within the range of elements in the Immutable list that extends from the first element to index, if found; otherwise, -1.
+
+
+ Removes the specified value from this list.
+ The list to search.
+ The value to remove.
+ The type of items in the list.
+ A new immutable list with the element removed, or this list if the element is not in this list.
+
+
+ Removes the specified values from this list.
+ The list to search.
+ The items to remove if matches are found in this list.
+ The type of items in the list.
+ A new immutable list with the elements removed.
+
+
+ Replaces the first equal element in the list with the specified element.
+ The list to search.
+ The element to replace.
+ The element to replace the old element with.
+ The type of items in the list.
+
+ does not exist in the list.
+ The new list -- even if the value being replaced is equal to the new value for that position.
+
+
+ Enumerates a sequence and produces an immutable list of its contents.
+ The sequence to enumerate.
+ The type of the elements in the sequence.
+ An immutable list that contains the items in the specified sequence.
+
+
+ Creates an immutable list from the current contents of the builder's collection.
+ The builder to create the immutable list from.
+ The type of the elements in the list.
+ An immutable list that contains the current contents in the builder's collection.
+
+
+ Represents an immutable list, which is a strongly typed list of objects that can be accessed by index.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+ The type of elements in the list.
+
+
+ Gets an empty immutable list.
+
+
+ Adds the specified object to the end of the immutable list.
+ The object to add.
+ A new immutable list with the object added.
+
+
+ Adds the elements of the specified collection to the end of the immutable list.
+ The collection whose elements will be added to the end of the list.
+ A new immutable list with the elements added.
+
+
+ Searches the entire sorted list for an element using the default comparer and returns the zero-based index of the element.
+ The object to locate. The value can be for reference types.
+ The default comparer cannot find a comparer implementation of the for type T.
+ The zero-based index of item in the sorted List, if item is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than item or, if there is no larger element, the bitwise complement of .
+
+
+ Searches the entire sorted list for an element using the specified comparer and returns the zero-based index of the element.
+ The object to locate. The value can be null for reference types.
+ The comparer implementation to use when comparing elements or null to use the default comparer.
+ comparer is , and the default comparer cannot find an comparer implementation for type T.
+ The zero-based index of item in the sorted List, if item is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than item or, if there is no larger element, the bitwise complement of .
+
+
+ Searches a range of elements in the sorted list for an element using the specified comparer and returns the zero-based index of the element.
+ The zero-based starting index of the range to search.
+ The length of the range to search.
+ The object to locate. The value can be null for reference types.
+ The comparer implementation to use when comparing elements, or to use the default comparer.
+ index is less than 0 or is less than 0.
+ index and do not denote a valid range in the list.
+
+ is , and the default comparer cannot find an comparer implementation for type T.
+ The zero-based index of item in the sorted list, if item is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than item or, if there is no larger element, the bitwise complement of .
+
+
+ Removes all elements from the immutable list.
+ An empty list that retains the same sort or unordered semantics that this instance has.
+
+
+ Determines whether this immutable list contains the specified value.
+ The value to locate.
+
+ if the list contains the specified value; otherwise, .
+
+
+ Converts the elements in the current immutable list to another type, and returns a list containing the converted elements.
+ A delegate that converts each element from one type to another type.
+ The type of the elements of the target array.
+ A list of the target type containing the converted elements from the current .
+
+
+ Copies the entire immutable list to a compatible one-dimensional array, starting at the beginning of the target array.
+ The one-dimensional array that is the destination of the elements copied from the immutable list. The array must have zero-based indexing.
+
+
+ Copies the entire immutable list to a compatible one-dimensional array, starting at the specified index of the target array.
+ The one-dimensional array that is the destination of the elements copied from the immutable list. The array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+
+ Copies a range of elements from the immutable list to a compatible one-dimensional array, starting at the specified index of the target array.
+ The zero-based index in the source immutable list at which copying begins.
+ The one-dimensional array that is the destination of the elements copied from the immutable list. The array must have zero-based indexing.
+ The zero-based index in array at which copying begins.
+ The number of elements to copy.
+
+
+ Determines whether the immutable list contains elements that match the conditions defined by the specified predicate.
+ The delegate that defines the conditions of the elements to search for.
+
+ if the immutable list contains one or more elements that match the conditions defined by the specified predicate; otherwise, .
+
+
+ Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire immutable list.
+ The delegate that defines the conditions of the element to search for.
+ The first element that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type .
+
+
+ Retrieves all the elements that match the conditions defined by the specified predicate.
+ The delegate that defines the conditions of the elements to search for.
+ An immutable list that contains all the elements that match the conditions defined by the specified predicate, if found; otherwise, an empty immutable list.
+
+
+ Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the immutable list that starts at the specified index and contains the specified number of elements.
+ The zero-based starting index of the search.
+ The number of elements in the section to search.
+ The delegate that defines the conditions of the element to search for.
+ The zero-based index of the first occurrence of an element that matches the conditions defined by match, if found; otherwise, ?1.
+
+
+ Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the immutable list that extends from the specified index to the last element.
+ The zero-based starting index of the search.
+ The delegate that defines the conditions of the element to search for.
+ The zero-based index of the first occurrence of an element that matches the conditions defined by match, if found; otherwise, ?1.
+
+
+ Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the entire immutable list.
+ The delegate that defines the conditions of the element to search for.
+ The zero-based index of the first occurrence of an element that matches the conditions defined by match, if found; otherwise, -1.
+
+
+ Searches for an element that matches the conditions defined by the specified predicate, and returns the last occurrence within the entire immutable list.
+ The delegate that defines the conditions of the element to search for.
+ The last element that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type .
+
+
+ Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the immutable list that contains the specified number of elements and ends at the specified index.
+ The zero-based starting index of the backward search.
+ The number of elements in the section to search.
+ The delegate that defines the conditions of the element to search for.
+ The zero-based index of the last occurrence of an element that matches the conditions defined by , if found; otherwise, ?1.
+
+
+ Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the immutable list that extends from the first element to the specified index.
+ The zero-based starting index of the backward search.
+ The delegate that defines the conditions of the element to search for.
+ The zero-based index of the last occurrence of an element that matches the conditions defined by , if found; otherwise, ?1.
+
+
+ Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the entire immutable list.
+ The delegate that defines the conditions of the element to search for.
+ The zero-based index of the last occurrence of an element that matches the conditions defined by , if found; otherwise, ?1.
+
+
+ Performs the specified action on each element of the immutable list.
+ The delegate to perform on each element of the immutable list.
+
+
+ Returns an enumerator that iterates through the immutable list.
+ An enumerator that can be used to iterate through the immutable list.
+
+
+ Creates a shallow copy of a range of elements in the source immutable list.
+ The zero-based index at which the range starts.
+ The number of elements in the range.
+ A shallow copy of a range of elements in the source immutable list.
+
+
+ Searches for the specified object and returns the zero-based index of the first occurrence within the entire immutable list.
+ The object to locate in the immutable list. The value can be for reference types.
+ The zero-based index of the first occurrence of within the entire immutable list, if found; otherwise, ?1.
+
+
+ Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the list that starts at the specified index and contains the specified number of elements.
+ The object to locate in the list The value can be null for reference types.
+ The zero-based starting index of the search. 0 (zero) is valid in an empty list.
+ The number of elements in the section to search.
+ The equality comparer to use in the search.
+ The zero-based index of the first occurrence of item within the range of elements in the list that starts at index and contains count number of elements, if found; otherwise, -1.
+
+
+ Inserts the specified object into the immutable list at the specified index.
+ The zero-based index at which to insert the object.
+ The object to insert.
+ The new immutable list after the object is inserted.
+
+
+ Inserts the elements of a collection into the immutable list at the specified index.
+ The zero-based index at which to insert the elements.
+ The collection whose elements should be inserted.
+ The new immutable list after the elements are inserted.
+
+
+ Gets a read-only reference to the element of the set at the given .
+ The 0-based index of the element in the set to return.
+
+ is negative or not less than .
+ A read-only reference to the element at the given position.
+
+
+ Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the list that contains the specified number of elements and ends at the specified index.
+ The object to locate in the list. The value can be null for reference types.
+ The zero-based starting index of the backward search.
+ The number of elements in the section to search.
+ The equality comparer to use in the search.
+ The zero-based index of the last occurrence of item within the range of elements in the list that contains count number of elements and ends at index, if found; otherwise, -1.
+
+
+ Removes the first occurrence of the specified object from this immutable list.
+ The object to remove.
+ A new list with the object removed, or this list if the specified object is not in this list.
+
+
+ Removes the first occurrence of the object that matches the specified value from this immutable list.
+ The value of the element to remove from the list.
+ The equality comparer to use in the search.
+ A new list with the object removed, or this list if the specified object is not in this list.
+
+
+ Removes all the elements that match the conditions defined by the specified predicate.
+ The delegate that defines the conditions of the elements to remove.
+ The new list with the elements removed.
+
+
+ Removes the element at the specified index.
+ The zero-based index of the element to remove.
+ A new list with the element removed.
+
+
+ Removes a range of elements from this immutable list.
+ The collection whose elements should be removed if matches are found in this list.
+ A new list with the elements removed.
+
+
+ Removes the specified values from this list.
+ The items to remove if matches are found in this list.
+ The equality comparer to use in the search.
+ A new list with the elements removed.
+
+
+ Removes a range of elements, starting from the specified index and containing the specified number of elements, from this immutable list.
+ The starting index to begin removal.
+ The number of elements to remove.
+ A new list with the elements removed.
+
+
+ Replaces the specified element in the immutable list with a new element.
+ The element to replace.
+ The element to replace with.
+
+ does not exist in the immutable list.
+ The new list with the replaced element, even if it is equal to the old element.
+
+
+ Replaces the specified element in the immutable list with a new element.
+ The element to replace in the list.
+ The element to replace with.
+ The comparer to use to check for equality.
+ A new list with the object replaced, or this list if the specified object is not in this list.
+
+
+ Reverses the order of the elements in the entire immutable list.
+ The reversed list.
+
+
+ Reverses the order of the elements in the specified range of the immutable list.
+ The zero-based starting index of the range to reverse.
+ The number of elements in the range to reverse.
+ The reversed list.
+
+
+ Replaces an element at a given position in the immutable list with the specified element.
+ The position in the list of the element to replace.
+ The element to replace the old element with.
+ The new list with the replaced element, even if it is equal to the old element at that position.
+
+
+ Sorts the elements in the entire immutable list using the default comparer.
+ The sorted list.
+
+
+ Sorts the elements in the entire immutable list using the specified comparer.
+ The implementation to use when comparing elements, or to use the default comparer ().
+ The sorted list.
+
+
+ Sorts the elements in the entire immutable list using the specified comparer.
+ The delegate to use when comparing elements.
+
+ is .
+ The sorted list.
+
+
+ Sorts a range of elements in the immutable list using the specified comparer.
+ The zero-based starting index of the range to sort.
+ The length of the range to sort.
+ The implementation to use when comparing elements, or to use the default comparer ().
+ The sorted list.
+
+
+ Adds the specified item to the immutable list.
+ The item to add.
+ Always thrown.
+
+
+ Removes all items from the immutable list.
+
+
+
+ Removes the first occurrence of a specific object from the immutable list.
+ The object to remove.
+ Always thrown.
+
+ if was successfully removed from the list; otherwise, . This method also returns if is not found in the original list.
+
+
+ Returns an enumerator that iterates through the immutable list.
+ An enumerator that can be used to iterate through the list.
+
+
+ Inserts an object in the immutable list at the specified index.
+ The zero-based index at which should be inserted.
+ The object to insert.
+
+
+
+ Removes the value at the specified index.
+ The zero-based index of the item to remove.
+
+
+
+ Copies the entire immutable list to a compatible one-dimensional array, starting at the specified array index.
+ The one-dimensional array that is the destination of the elements copied from immutable list.
+ The zero-based index in at which copying begins.
+
+
+ Returns an enumerator that iterates through the immutable list.
+ An enumerator that can be used to iterate through the list.
+
+
+ Adds an item to the immutable list.
+ The object to add to the list.
+ Always thrown.
+ The position into which the new element was inserted, or -1 to indicate that the item was not inserted into the list.
+
+
+ Removes all items from the immutable list.
+ Always thrown.
+
+
+ Determines whether the immutable list contains a specific value.
+ The object to locate in the list.
+
+
+ if the object is found in the list; otherwise, .
+
+
+ Determines the index of a specific item in the immutable list.
+ The object to locate in the list.
+
+ The index of if found in the list; otherwise, -1.
+
+
+ Inserts an item into the immutable list at the specified index.
+ The zero-based index at which should be inserted.
+ The object to insert into the list.
+ Always thrown.
+
+
+ Removes the first occurrence of a specific object from the immutable list.
+ The object to remove from the list.
+ Always thrown.
+
+
+ Removes the item at the specified index of the immutable list.
+ The zero-based index of the item to remove.
+ Always thrown.
+
+
+ Adds the specified value to this immutable list.
+ The value to add.
+ A new list with the element added.
+
+
+ Adds the specified values to this immutable list.
+ The values to add.
+ A new list with the elements added.
+
+
+ Retrieves an empty list that has the same sorting and ordering semantics as this instance.
+ An empty list that has the same sorting and ordering semantics as this instance.
+
+
+ Inserts the specified element at the specified index in the immutable list.
+ The index at which to insert the value.
+ The element to insert.
+ A new immutable list that includes the specified element.
+
+
+ Inserts the specified elements at the specified index in the immutable list.
+ The index at which to insert the elements.
+ The elements to insert.
+ A new immutable list that includes the specified elements.
+
+
+ Removes the element with the specified value from the list.
+ The value of the element to remove from the list.
+ The comparer to use to compare elements for equality.
+ A new with the specified element removed.
+
+
+ Removes all the elements that match the conditions defined by the specified predicate.
+ The delegate that defines the conditions of the elements to remove.
+ A new immutable list with the elements removed.
+
+
+ Removes the element at the specified index of the immutable list.
+ The index of the element to remove.
+ A new list with the element removed.
+
+
+ Removes a range of elements from this immutable list that match the items specified.
+ The range of items to remove from the list, if found.
+ The equality comparer to use to compare elements.
+
+ or is .
+ An immutable list with the items removed.
+
+
+ Removes the specified number of elements at the specified location from this list.
+ The starting index of the range of elements to remove.
+ The number of elements to remove.
+ A new list with the elements removed.
+
+
+ Replaces an element in the list with the specified element.
+ The element to replace.
+ The element to replace the old element with.
+ The equality comparer to use in the search.
+
+ does not exist in the list.
+ The new list.
+
+
+ Replaces an element in the list at a given position with the specified element.
+ The position in the list of the element to replace.
+ The element to replace the old element with.
+ The new list.
+
+
+ Creates a list that has the same contents as this list and can be efficiently mutated across multiple operations using standard mutable interfaces.
+ The created list with the same contents as this list.
+
+
+ Determines whether every element in the immutable list matches the conditions defined by the specified predicate.
+ The delegate that defines the conditions to check against the elements.
+
+ if every element in the immutable list matches the conditions defined by the specified predicate; otherwise, . If the list has no elements, the return value is .
+
+
+ Gets the number of elements contained in the list.
+ The number of elements in the list.
+
+
+ Gets a value that indicates whether this list is empty.
+
+ if the list is empty; otherwise, .
+
+
+ Gets the element at the specified index of the list.
+ The index of the element to retrieve.
+ In a get operation, is negative or not less than .
+ The element at the specified index.
+
+
+ Gets a value indicating whether the is read-only.
+
+ if the is read-only; otherwise, .
+
+
+ Gets or sets the value at the specified index.
+ The zero-based index of the item to access.
+ Thrown from getter when is negative or not less than .
+ Always thrown from the setter.
+ Value stored in the specified index.
+
+
+ This type is immutable, so it is always thread-safe. See the interface.
+ Boolean value determining whether the collection is thread-safe.
+
+
+ See .
+ Object used for synchronizing access to the collection.
+
+
+ Gets a value indicating whether the has a fixed size.
+
+ if the has a fixed size; otherwise, .
+
+
+ Gets a value indicating whether the is read-only.
+
+ if the is read-only; otherwise, .
+
+
+ Gets or sets the at the specified index.
+ The index.
+ Thrown from getter when is negative or not less than .
+ Always thrown from the setter.
+ The value at the specified index.
+
+
+ Represents a list that mutates with little or no memory allocations and that can produce or build on immutable list instances very efficiently.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+
+ Adds an item to the immutable list.
+ The item to add to the list.
+
+
+ Adds a series of elements to the end of this list.
+ The elements to add to the end of the list.
+
+
+ Searches the entire for an element using the default comparer and returns the zero-based index of the element.
+ The object to locate. The value can be null for reference types.
+ The default comparer cannot find an implementation of the generic interface or the interface for type T.
+ The zero-based index of item in the , if item is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than .
+
+
+ Searches the entire for an element using the specified comparer and returns the zero-based index of the element.
+ The object to locate. This value can be null for reference types.
+ The implementation to use when comparing elements, or for the default comparer.
+
+ is , and the default comparer cannot find an implementation of the generic interface or the interface for type T.
+ The zero-based index of item in the , if item is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than .
+
+
+ Searches the specified range of the for an element using the specified comparer and returns the zero-based index of the element.
+ The zero-based starting index of the range to search.
+ The length of the range to search.
+ The object to locate. This value can be null for reference types.
+ The implementation to use when comparing elements, or for the default comparer.
+
+ is less than 0.
+-or-
+
+ is less than 0.
+
+ and do not denote a valid range in the .
+
+ is , and the default comparer cannot find an implementation of the generic interface or the interface for type T.
+ The zero-based index of item in the , if item is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than .
+
+
+ Removes all items from the immutable list.
+
+
+ Determines whether the immutable list contains a specific value.
+ The object to locate in the list.
+
+ if item is found in the list; otherwise, .
+
+
+ Creates a new immutable list from the list represented by this builder by using the converter function.
+ The converter function.
+ The type of the output of the delegate converter function.
+ A new immutable list from the list represented by this builder.
+
+
+ Copies the entire immutable list to a compatible one-dimensional array, starting at the beginning of the target array.
+ The one-dimensional array that is the destination of the elements copied from the immutable list. The array must have zero-based indexing.
+
+
+ Copies the entire immutable list to a compatible one-dimensional array, starting at the specified index of the target array.
+ The one-dimensional array that is the destination of the elements copied from the immutable list. The array must have zero-based indexing.
+ The zero-based index in array at which copying begins.
+
+
+ Copies the entire immutable list to a compatible one-dimensional array, starting at the specified index of the target array.
+ The zero-based index in the source immutable list at which copying begins.
+ The one-dimensional array that is the destination of the elements copied from the immutable list. The array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+ The number of elements to copy.
+
+
+ Determines whether the immutable list contains elements that match the conditions defined by the specified predicate.
+ The delegate that defines the conditions of the elements to search for.
+
+ if the immutable list contains one or more elements that match the conditions defined by the specified predicate; otherwise, .
+
+
+ Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire immutable list.
+ The delegate that defines the conditions of the element to search for.
+ The first element that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type .
+
+
+ Retrieves all the elements that match the conditions defined by the specified predicate.
+ The delegate that defines the conditions of the elements to search for.
+ An immutable list containing all the elements that match the conditions defined by the specified predicate, if found; otherwise, an empty immutable list.
+
+
+ Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the immutable list that starts at the specified index and contains the specified number of elements.
+ The zero-based starting index of the search.
+ The number of elements in the section to search.
+ The delegate that defines the conditions of the element to search for.
+ The zero-based index of the first occurrence of an element that matches the conditions defined by , if found; otherwise, -1.
+
+
+ Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the immutable list that extends from the specified index to the last element.
+ The zero-based starting index of the search.
+ The delegate that defines the conditions of the element to search for.
+ The zero-based index of the first occurrence of an element that matches the conditions defined by , if found; otherwise, -1.
+
+
+ Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the entire immutable list.
+ The delegate that defines the conditions of the element to search for.
+ The zero-based index of the first occurrence of an element that matches the conditions defined by , if found; otherwise, -1.
+
+
+ Searches for an element that matches the conditions defined by the specified predicate, and returns the last occurrence within the entire immutable list.
+ The delegate that defines the conditions of the element to search for.
+ The last element that matches the conditions defined by the specified predicate, found; otherwise, the default value for type .
+
+
+ Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the immutable list that contains the specified number of elements and ends at the specified index.
+ The zero-based starting index of the backward search.
+ The number of elements in the section to search.
+ The delegate that defines the conditions of the element to search for.
+ The zero-based index of the last occurrence of an element that matches the conditions defined by , if found; otherwise, -1.
+
+
+ Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the immutable list that extends from the first element to the specified index.
+ The zero-based starting index of the backward search.
+ The delegate that defines the conditions of the element to search for.
+ The zero-based index of the last occurrence of an element that matches the conditions defined by , if found; otherwise, -1.
+
+
+ Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the entire immutable list.
+ The delegate that defines the conditions of the element to search for.
+ The zero-based index of the last occurrence of an element that matches the conditions defined by , if found; otherwise, -1.
+
+
+ Performs the specified action on each element of the list.
+ The delegate to perform on each element of the list.
+
+
+ Returns an enumerator that iterates through the collection.
+ An enumerator that can be used to iterate through the list.
+
+
+ Creates a shallow copy of a range of elements in the source immutable list.
+ The zero-based index at which the range starts.
+ The number of elements in the range.
+ A shallow copy of a range of elements in the source immutable list.
+
+
+ Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the immutable list.
+ The object to locate in the immutable list. The value can be for reference types.
+ The zero-based index of the first occurrence of within the range of elements in the immutable list, if found; otherwise, -1.
+
+
+ Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the immutable list that extends from the specified index to the last element.
+ The object to locate in the immutable list. The value can be for reference types.
+ The zero-based starting index of the search. 0 (zero) is valid in an empty list.
+ The zero-based index of the first occurrence of item within the range of elements in the immutable list that extends from to the last element, if found; otherwise, -1.
+
+
+ Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the immutable list that starts at the specified index and contains the specified number of elements.
+ The object to locate in the immutable list. The value can be for reference types.
+ The zero-based starting index of the search. 0 (zero) is valid in an empty list.
+ The number of elements in the section to search.
+ The zero-based index of the first occurrence of item within the range of elements in the immutable list that starts at and contains number of elements, if found; otherwise, -1.
+
+
+ Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the that starts at the specified index and contains the specified number of elements.
+ The object to locate in the immutable list. The value can be for reference types.
+ The zero-based starting index of the search. 0 (zero) is valid in an empty list.
+ The number of elements to search.
+ The value comparer to use for comparing elements for equality.
+ The zero-based index of the first occurrence of item within the range of elements in the immutable list that starts at and contains number of elements, if found; otherwise, -1
+
+
+ Inserts an item to the immutable list at the specified index.
+ The zero-based index at which should be inserted.
+ The object to insert into the immutable list.
+
+
+ Inserts the elements of a collection into the immutable list at the specified index.
+ The zero-based index at which the new elements should be inserted.
+ The collection whose elements should be inserted into the immutable list. The collection itself cannot be , but it can contain elements that are null, if type T is a reference type.
+
+
+ Gets a read-only reference to the value for a given into the list.
+ The index of the desired element.
+ A read-only reference to the value at the specified .
+
+
+ Searches for the specified object and returns the zero-based index of the last occurrence within the entire immutable list.
+ The object to locate in the immutable list. The value can be for reference types.
+ The zero-based index of the last occurrence of within the entire immutable list, if found; otherwise, -1.
+
+
+ Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the immutable list that extends from the first element to the specified index.
+ The object to locate in the immutable list. The value can be for reference types.
+ The zero-based starting index of the backward search.
+ The zero-based index of the last occurrence of within the range of elements in the immutable list that extends from the first element to , if found; otherwise, -1.
+
+
+ Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the immutable list that contains the specified number of elements and ends at the specified index.
+ The object to locate in the immutable list. The value can be for reference types.
+ The zero-based starting index of the backward search.
+ The number of elements in the section to search.
+ The zero-based index of the last occurrence of within the range of elements in the immutable list that contains number of elements and ends at , if found; otherwise, -1.
+
+
+ Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the immutable list that contains the specified number of elements and ends at the specified index.
+ The object to locate in the immutable list. The value can be for reference types.
+ The zero-based starting index of the search. 0 (zero) is valid in an empty list.
+ The number of elements to search.
+ The value comparer to use for comparing elements for equality.
+ The zero-based index of the first occurrence of item within the range of elements in the immutable list that starts at and contains number of elements, if found; otherwise, -1
+
+
+ Removes the first occurrence of a specific object from the immutable list.
+ The object to remove from the list.
+
+ if item was successfully removed from the list; otherwise, . This method also returns if item is not found in the list.
+
+
+ Removes the first occurrence matching the specified value from this list.
+ The item to remove.
+ The equality comparer to use in the search.
+ If , is used.
+ A value indicating whether the specified element was found and removed from the collection.
+
+
+ Removes all the elements that match the conditions defined by the specified predicate.
+ The delegate that defines the conditions of the elements to remove.
+ The number of elements removed from the immutable list.
+
+
+ Removes the item at the specified index of the immutable list.
+ The zero-based index of the item to remove from the list.
+
+
+ Removes any first occurrences of the specified values from this list.
+ The items to remove if matches are found in this list.
+
+
+ Removes any first occurrences of the specified values from this list.
+ The items to remove if matches are found in this list.
+ The equality comparer to use in the search.
+ If , is used.
+
+
+ Removes the specified range of values from this list.
+ The starting index to begin removal.
+ The number of elements to remove.
+
+
+ Replaces the first equal element in the list with the specified element.
+ The element to replace.
+ The element to replace the old element with.
+ The old value does not exist in the list.
+
+
+ Replaces the first equal element in the list with the specified element.
+ The element to replace.
+ The element to replace the old element with.
+ The equality comparer to use in the search.
+ If , is used.
+ The old value does not exist in the list.
+
+
+ Reverses the order of the elements in the entire immutable list.
+
+
+ Reverses the order of the elements in the specified range of the immutable list.
+ The zero-based starting index of the range to reverse.
+ The number of elements in the range to reverse.
+
+
+ Sorts the elements in the entire immutable list by using the default comparer.
+
+
+ Sorts the elements in the entire immutable list by using the specified comparer.
+ The implementation to use when comparing elements, or to use the default comparer ().
+
+
+ Sorts the elements in the entire immutable list by using the specified comparison object.
+ The object to use when comparing elements.
+
+ is .
+
+
+ Sorts the elements in a range of elements in the immutable list by using the specified comparer.
+ The zero-based starting index of the range to sort.
+ The length of the range to sort.
+ The implementation to use when comparing elements, or to use the default comparer ().
+
+
+ Returns an enumerator that iterates through the collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Copies the elements of the list to an array, starting at a particular array index.
+ The one-dimensional array that is the destination of the elements copied from the list. The array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+
+
+ Returns an enumerator that iterates through the collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Adds an item to the list.
+ The object to add to the list.
+
+ The position into which the new element was inserted, or -1 to indicate that the item was not inserted into the collection.
+
+
+ Removes all items from the list.
+
+
+
+ Determines whether the list contains a specific value.
+ The object to locate in the list.
+
+
+ if the is found in the list; otherwise, .
+
+
+ Determines the index of a specific item in the list.
+ The object to locate in the list.
+
+ The index of if found in the list; otherwise, -1.
+
+
+ Inserts an item to the list at the specified index.
+ The zero-based index at which should be inserted.
+ The object to insert into the list.
+
+
+
+ Removes the first occurrence of a specific object from the list.
+ The object to remove from the list.
+
+
+
+ Creates an immutable list based on the contents of this instance.
+ An immutable list.
+
+
+ Determines whether every element in the immutable list matches the conditions defined by the specified predicate.
+ The delegate that defines the conditions to check against the elements.
+
+ if every element in the immutable list matches the conditions defined by the specified predicate; otherwise, . If the list has no elements, the return value is .
+
+
+ Gets the number of elements in this immutable list.
+ The number of elements in this list.
+
+
+ Gets or sets the value for a given index in the list.
+ The index of the item to get or set.
+ The value at the specified index.
+
+
+ Gets a value that indicates whether this instance is read-only.
+ Always .
+
+
+ Gets a value that indicates whether access to the is synchronized (thread safe).
+
+ if access to the is synchronized (thread safe); otherwise, .
+
+
+ Gets an object that can be used to synchronize access to the .
+ An object that can be used to synchronize access to the .
+
+
+ Gets a value that indicates whether the has a fixed size.
+
+ if the has a fixed size; otherwise, .
+
+
+ Gets a value that indicates whether the is read-only.
+
+ if the is read-only; otherwise, .
+
+
+ Gets or sets the at the specified index.
+ The index.
+ The object at the specified index.
+
+
+ Enumerates the contents of a binary tree.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+
+ Releases the resources used by the current instance of the class.
+
+
+ Advances enumeration to the next element of the immutable list.
+
+ if the enumerator was successfully advanced to the next element; if the enumerator has passed the end of the list.
+
+
+ Sets the enumerator to its initial position, which is before the first element in the immutable list.
+
+
+ Gets the element at the current position of the enumerator.
+ The element at the current position of the enumerator.
+
+
+ The current element.
+ The element in the collection at the current position of the enumerator.
+
+
+ Provides a set of initialization methods for instances of the class.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+ Creates an empty immutable queue.
+ The type of items to be stored in the immutable queue.
+ An empty immutable queue.
+
+
+ Creates a new immutable queue that contains the specified item.
+ The item to prepopulate the queue with.
+ The type of items in the immutable queue.
+ A new immutable queue that contains the specified item.
+
+
+ Creates a new immutable queue that contains the specified array of items.
+ An array that contains the items to prepopulate the queue with.
+ The type of items in the immutable queue.
+ A new immutable queue that contains the specified items.
+
+
+ Creates a new immutable queue that contains the specified array of items.
+ A span that contains the items to prepopulate the queue with.
+ The type of items in the immutable queue.
+ A new immutable queue that contains the specified items.
+
+
+ Creates a new immutable queue that contains the specified items.
+ The items to add to the queue before immutability is applied.
+ The type of elements in the queue.
+ An immutable queue that contains the specified items.
+
+
+ Removes the item at the beginning of the immutable queue, and returns the new queue.
+ The queue to remove the item from.
+ When this method returns, contains the item from the beginning of the queue.
+ The type of elements in the immutable queue.
+ The stack is empty.
+ The new queue with the item removed.
+
+
+ Represents an immutable queue.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+ The type of elements in the queue.
+
+
+ Removes all objects from the immutable queue.
+ The empty immutable queue.
+
+
+ Removes the element at the beginning of the immutable queue, and returns the new queue.
+ The queue is empty.
+ The new immutable queue; never .
+
+
+ Removes the item at the beginning of the immutable queue, and returns the new queue.
+ When this method returns, contains the element from the beginning of the queue.
+ The queue is empty.
+ The new immutable queue with the beginning element removed.
+
+
+ Adds an element to the end of the immutable queue, and returns the new queue.
+ The element to add.
+ The new immutable queue.
+
+
+ Returns an enumerator that iterates through the immutable queue.
+ An enumerator that can be used to iterate through the queue.
+
+
+ Returns the element at the beginning of the immutable queue without removing it.
+ The queue is empty.
+ The element at the beginning of the queue.
+
+
+ Gets a read-only reference to the element at the front of the queue.
+ The queue is empty.
+ Read-only reference to the element at the front of the queue.
+
+
+ Returns an enumerator that iterates through the collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Returns an enumerator that iterates through a collection.
+ An object that can be used to iterate through the collection.
+
+
+ Removes all elements from the immutable queue.
+ The empty immutable queue.
+
+
+ Removes the element at the beginning of the immutable queue, and returns the new queue.
+ The queue is empty.
+ The new immutable queue; never .
+
+
+ Adds an element to the end of the immutable queue, and returns the new queue.
+ The element to add.
+ The new immutable queue.
+
+
+ Gets an empty immutable queue.
+ An empty immutable queue.
+
+
+ Gets a value that indicates whether this immutable queue is empty.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+ if this queue is empty; otherwise, .
+
+
+ Enumerates the contents of an immutable queue without allocating any memory.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+
+ Advances the enumerator to the next element of the immutable queue.
+
+ if the enumerator was successfully advanced to the next element; if the enumerator has passed the end of the queue.
+
+
+ Gets the element at the current position of the enumerator.
+ The element at the current position of the enumerator.
+
+
+ Provides a set of initialization methods for instances of the class.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+ Creates an empty immutable sorted dictionary.
+ The type of keys stored by the dictionary.
+ The type of values stored by the dictionary.
+ An empty immutable sorted dictionary.
+
+
+ Creates an empty immutable sorted dictionary that uses the specified key comparer.
+ The implementation to use to determine the equality of keys in the dictionary.
+ The type of keys stored by the dictionary.
+ The type of values stored by the dictionary.
+ An empty immutable sorted dictionary.
+
+
+ Creates an empty immutable sorted dictionary that uses the specified key and value comparers.
+ The implementation to use to determine the equality of keys in the dictionary.
+ The implementation to use to determine the equality of values in the dictionary.
+ The type of keys stored by the dictionary.
+ The type of values stored by the dictionary.
+ An empty immutable sorted dictionary.
+
+
+ Creates a new immutable sorted dictionary builder.
+ The type of keys stored by the dictionary.
+ The type of values stored by the dictionary.
+ The immutable collection builder.
+
+
+ Creates a new immutable sorted dictionary builder.
+ The key comparer.
+ The type of keys stored by the dictionary.
+ The type of values stored by the dictionary.
+ The immutable collection builder.
+
+
+ Creates a new immutable sorted dictionary builder.
+ The key comparer.
+ The value comparer.
+ The type of keys stored by the dictionary.
+ The type of values stored by the dictionary.
+ The immutable collection builder.
+
+
+ Creates a new immutable sorted dictionary from the specified range of items with the specified key comparer.
+ The comparer implementation to use to evaluate keys for equality and sorting.
+ The items to add to the sorted dictionary.
+ The type of keys stored in the dictionary.
+ The type of values stored in the dictionary.
+ The new immutable sorted dictionary that contains the specified items and uses the specified key comparer.
+
+
+ Creates a new immutable sorted dictionary from the specified range of items with the specified key and value comparers.
+ The comparer implementation to use to compare keys for equality and sorting.
+ The comparer implementation to use to compare values for equality.
+ The items to add to the sorted dictionary before it's immutable.
+ The type of keys stored in the dictionary.
+ The type of values stored in the dictionary.
+ An immutable sorted dictionary that contains the specified items and uses the specified comparers.
+
+
+ Creates an immutable sorted dictionary that contains the specified items and uses the default comparer.
+ The items to add to the sorted dictionary before it's immutable.
+ The type of keys stored in the dictionary.
+ The type of values stored in the dictionary.
+ An immutable sorted dictionary that contains the specified items.
+
+
+ Enumerates a sequence of key/value pairs and produces an immutable sorted dictionary of its contents.
+ The sequence of key/value pairs to enumerate.
+ The type of the keys in the dictionary.
+ The type of the values in the dictionary.
+ An immutable sorted dictionary that contains the key/value pairs in the specified sequence.
+
+
+ Enumerates a sequence of key/value pairs and produces an immutable dictionary of its contents by using the specified key comparer.
+ The sequence of key/value pairs to enumerate.
+ The key comparer to use when building the immutable dictionary.
+ The type of the keys in the dictionary.
+ The type of the values in the dictionary.
+ An immutable sorted dictionary that contains the key/value pairs in the specified sequence.
+
+
+ Enumerates a sequence of key/value pairs and produces an immutable sorted dictionary of its contents by using the specified key and value comparers.
+ The sequence of key/value pairs to enumerate.
+ The key comparer to use when building the immutable dictionary.
+ The value comparer to use for the immutable dictionary.
+ The type of the keys in the dictionary.
+ The type of the values in the dictionary.
+ An immutable sorted dictionary that contains the key/value pairs in the specified sequence.
+
+
+ Creates an immutable sorted dictionary from the current contents of the builder's dictionary.
+ The builder to create the immutable sorted dictionary from.
+ The type of the keys in the dictionary.
+ The type of the values in the dictionary.
+ An immutable sorted dictionary that contains the current contents in the builder's dictionary.
+
+
+ Enumerates and transforms a sequence, and produces an immutable sorted dictionary of its contents.
+ The sequence to enumerate to generate the dictionary.
+ The function that will produce the key for the dictionary from each sequence element.
+ The function that will produce the value for the dictionary from each sequence element.
+ The type of the elements in the sequence.
+ The type of the keys in the resulting dictionary.
+ The type of the values in the resulting dictionary.
+ An immutable sorted dictionary that contains the items in the specified sequence.
+
+
+ Enumerates and transforms a sequence, and produces an immutable sorted dictionary of its contents by using the specified key comparer.
+ The sequence to enumerate to generate the dictionary.
+ The function that will produce the key for the dictionary from each sequence element.
+ The function that will produce the value for the dictionary from each sequence element.
+ The key comparer to use for the dictionary.
+ The type of the elements in the sequence.
+ The type of the keys in the resulting dictionary.
+ The type of the values in the resulting dictionary.
+ An immutable dictionary that contains the items in the specified sequence.
+
+
+ Enumerates and transforms a sequence, and produces an immutable sorted dictionary of its contents by using the specified key and value comparers.
+ The sequence to enumerate to generate the dictionary.
+ The function that will produce the key for the dictionary from each sequence element.
+ The function that will produce the value for the dictionary from each sequence element.
+ The key comparer to use for the dictionary.
+ The value comparer to use for the dictionary.
+ The type of the elements in the sequence.
+ The type of the keys in the resulting dictionary.
+ The type of the values in the resulting dictionary.
+ An immutable sorted dictionary that contains the items in the specified sequence.
+
+
+ Represents an immutable sorted dictionary.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+ The type of the key contained in the dictionary.
+ The type of the value contained in the dictionary.
+
+
+ Gets an empty immutable sorted dictionary.
+
+
+ Adds an element with the specified key and value to the immutable sorted dictionary.
+ The key of the entry to add.
+ The value of entry to add.
+ The given key already exists in the dictionary but has a different value.
+ A new immutable sorted dictionary that contains the additional key/value pair.
+
+
+ Adds the specific key/value pairs to the immutable sorted dictionary.
+ The key/value pairs to add.
+ One of the given keys already exists in the dictionary but has a different value.
+ A new immutable dictionary that contains the additional key/value pairs.
+
+
+ Retrieves an empty immutable sorted dictionary that has the same ordering and key/value comparison rules as this dictionary instance.
+ An empty dictionary with equivalent ordering and key/value comparison rules.
+
+
+ Determines whether this immutable sorted dictionary contains the specified key/value pair.
+ The key/value pair to locate.
+
+ if the specified key/value pair is found in the dictionary; otherwise, .
+
+
+ Determines whether this immutable sorted map contains the specified key.
+ The key to locate.
+
+ if the immutable dictionary contains the specified key; otherwise, .
+
+
+ Determines whether the immutable sorted dictionary contains an element with the specified value.
+ The value to locate. The value can be for reference types.
+
+ if the dictionary contains an element with the specified value; otherwise, .
+
+
+ Returns an enumerator that iterates through the immutable sorted dictionary.
+ An enumerator that can be used to iterate through the dictionary.
+
+
+ Removes the element with the specified value from the immutable sorted dictionary.
+ The value of the element to remove.
+ A new immutable dictionary with the specified element removed; or this instance if the specified value cannot be found in the dictionary.
+
+
+ Removes the elements with the specified keys from the immutable sorted dictionary.
+ The keys of the elements to remove.
+ A new immutable dictionary with the specified keys removed; or this instance if the specified keys cannot be found in the dictionary.
+
+
+ Sets the specified key and value in the immutable sorted dictionary, possibly overwriting an existing value for the given key.
+ The key of the entry to add.
+ The key value to set.
+ A new immutable sorted dictionary that contains the specified key/value pair.
+
+
+ Sets the specified key/value pairs in the immutable sorted dictionary, possibly overwriting existing values for the keys.
+ The key/value pairs to set in the dictionary. If any of the keys already exist in the dictionary, this method will overwrite their previous values.
+ An immutable dictionary that contains the specified key/value pairs.
+
+
+ Adds an item to the .
+ The object to add to the .
+
+
+ Removes all items from the .
+
+
+ Copies the elements of the to an , starting at a particular index.
+ The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+
+ Removes the first occurrence of a specific object from the .
+ The object to remove from the .
+
+ if was successfully removed from the ; otherwise, . This method also returns if is not found in the original .
+
+
+ Adds an element with the provided key and value to the generic dictionary.
+ The object to use as the key of the element to add.
+ The object to use as the value of the element to add.
+
+ is .
+ An element with the same key already exists in the .
+ The is read-only.
+
+
+ Removes the element with the specified key from the generic dictionary.
+ The key of the element to remove.
+
+ is .
+ The is read-only.
+
+ if the element is successfully removed; otherwise, . This method also returns if was not found in the original generic dictionary.
+
+
+ Returns an enumerator that iterates through the collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Copies the elements of the dictionary to an array, starting at a particular array index.
+ The one-dimensional array that is the destination of the elements copied from the dictionary. The array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+
+ Adds an element with the provided key and value to the dictionary object.
+ The object to use as the key of the element to add.
+ The object to use as the value of the element to add.
+
+
+ Clears this instance.
+ The dictionary object is read-only.
+
+
+ Determines whether the immutable dictionary object contains an element with the specified key.
+ The key to locate in the dictionary object.
+
+ if the dictionary contains an element with the key; otherwise, .
+
+
+ Returns an object for the immutable dictionary object.
+ An enumerator object for the dictionary object.
+
+
+ Removes the element with the specified key from the immutable dictionary object.
+ The key of the element to remove.
+
+
+ Returns an enumerator that iterates through a collection.
+ An enumerator object that can be used to iterate through the collection.
+
+
+ See the interface.
+ Key of the entry to be added.
+ Value of the entry to be added.
+ The instance.
+
+
+ See the interface.
+ Sequence of key/value pairs to be added.
+ The instance.
+
+
+ See the interface.
+ The instance.
+
+
+ See the interface.
+ Key of entry to be removed.
+ The instance.
+
+
+ See the interface.
+ Sequence of keys to be removed.
+ The instance.
+
+
+ See the interface.
+ Key of entry to be updated.
+ Value of entry to be updated.
+ The instance.
+
+
+ Applies a given set of key-value pairs to an immutable dictionary, replacing any conflicting keys in the resulting dictionary.
+ A set of key-value pairs to set on the map.
+ The instance.
+
+
+ Creates an immutable sorted dictionary with the same contents as this dictionary that can be efficiently mutated across multiple operations by using standard mutable interfaces.
+ A collection with the same contents as this dictionary.
+
+
+ Determines whether this dictionary contains a specified key.
+ The key to search for.
+ The matching key located in the dictionary if found, or equalkey if no match is found.
+
+ if a match for is found; otherwise, .
+
+
+ Gets the value associated with the specified key.
+ The key whose value will be retrieved.
+ When this method returns, contains the value associated with the specified key, if the key is found; otherwise, contains the default value for the type of the parameter.
+
+ if the dictionary contains an element with the specified key; otherwise, .
+
+
+ Returns a read-only reference to the value associated with the provided .
+ Key of the entry to be looked up.
+ The is not present.
+ A read-only reference to the value associated with the provided .
+
+
+ Gets an instance of the immutable sorted dictionary that uses the specified key comparer.
+ The key comparer to use.
+ An instance of the immutable dictionary that uses the given comparer.
+
+
+ Gets an instance of the immutable sorted dictionary that uses the specified key and value comparers.
+ The key comparer to use.
+ The value comparer to use.
+ An instance of the immutable dictionary that uses the given comparers.
+
+
+ Gets the number of key/value pairs in the immutable sorted dictionary.
+ The number of key/value pairs in the dictionary.
+
+
+ Gets a value that indicates whether this instance of the immutable sorted dictionary is empty.
+
+ if this instance is empty; otherwise, .
+
+
+ Gets the associated with the specified key.
+ The key to retrieve the value for.
+ The value associated with the specified key. If no results are found, the operation throws an exception.
+
+
+ Gets the key comparer for the immutable sorted dictionary.
+ The key comparer for the dictionary.
+
+
+ Gets the keys in the immutable sorted dictionary.
+ The keys in the immutable dictionary.
+
+
+ Gets a value indicating whether the is read-only.
+
+ if the is read-only; otherwise, .
+
+
+ Gets or sets the with the specified key.
+ The object to use as the key of the element to access.
+ An object of type associated with the .
+
+
+ Gets the keys.
+ A collection containing the keys.
+
+
+ Gets the values.
+ A collection containing the values.
+
+
+ Gets a value indicating whether access to the is synchronized (thread safe).
+
+ if access to the is synchronized (thread-safe); otherwise, .
+
+
+ Gets an object that can be used to synchronize access to the .
+ An object that can be used to synchronize access to the .
+
+
+ Gets a value indicating whether the object has a fixed size.
+
+ if the object has a fixed size; otherwise, .
+
+
+ Gets a value indicating whether the is read-only.
+
+ if the is read-only; otherwise, .
+
+
+ Gets or sets the element with the specified key.
+ The key of the element to be accessed.
+ Value stored under the specified key.
+
+
+ Gets an containing the keys of the .
+ An containing the keys of the object that implements .
+
+
+ Gets an containing the values in the .
+ An containing the values in the object that implements .
+
+
+ Gets the value comparer used to determine whether values are equal.
+ The value comparer used to determine whether values are equal.
+
+
+ Gets the values in the immutable sorted dictionary.
+ The values in the dictionary.
+
+
+ Represents a sorted dictionary that mutates with little or no memory allocations and that can produce or build on immutable sorted dictionary instances very efficiently.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+
+
+ Adds an element that has the specified key and value to the immutable sorted dictionary.
+ The key of the element to add.
+ The value of the element to add.
+
+
+ Adds the specified item to the immutable sorted dictionary.
+ The object to add to the dictionary.
+
+
+ Adds a sequence of values to the immutable sorted dictionary.
+ The items to add to the dictionary.
+
+
+ Removes all items from the immutable sorted dictionary.
+
+
+ Determines whether the immutable sorted dictionary contains a specific value.
+ The object to locate in the dictionary.
+
+ if is found in the dictionary; otherwise, .
+
+
+ Determines whether the immutable sorted dictionary contains an element with the specified key.
+ The key to locate in the dictionary.
+
+ if the dictionary contains an element with the key; otherwise, .
+
+
+ Determines whether the immutable sorted dictionary contains an element with the specified value.
+ The value to locate in the dictionary. The value can be for reference types.
+
+ if the immutable sorted dictionary contains an element with the specified value; otherwise, .
+
+
+ Returns an enumerator that iterates through the immutable sorted dictionary.
+ An enumerator that can be used to iterate through the dictionary.
+
+
+ Gets the value for a given key if a matching key exists in the dictionary; otherwise the default value.
+ The key to search for.
+ The value for the key, or default(TValue) if no matching key was found.
+
+
+ Gets the value for a given key if a matching key exists in the dictionary; otherwise the default value.
+ The key to search for.
+ The default value to return if no matching key is found in the dictionary.
+ The value for the key, or if no matching key was found.
+
+
+ Removes the element with the specified key from the immutable sorted dictionary.
+ The key of the element to remove.
+
+ if the element is successfully removed; otherwise, . This method also returns if was not found in the original dictionary.
+
+
+ Removes the first occurrence of a specific object from the immutable sorted dictionary.
+ The object to remove from the dictionary.
+
+ if was successfully removed from the dictionary; otherwise, . This method also returns if is not found in the dictionary.
+
+
+ Removes any entries with keys that match those found in the specified sequence from the immutable sorted dictionary.
+ The keys for entries to remove from the dictionary.
+
+
+ See .
+ The one-dimensional array that is the destination of the elements copied from the dictionary. The array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+
+ See .
+ An enumerator that can be used to iterate through the collection.
+
+
+ Copies the elements of the dictionary to an array, starting at a particular array index.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+ The one-dimensional array that is the destination of the elements copied from the dictionary. The array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+
+ Adds an element with the provided key and value to the dictionary object.
+ The key of the element to add.
+ The value of the element to add.
+
+
+ Determines whether the dictionary object contains an element with the specified key.
+ The key to locate.
+
+ if the dictionary contains an element with the key; otherwise, .
+
+
+ Returns an object for the dictionary.
+ An object for the dictionary.
+
+
+ Removes the element with the specified key from the dictionary.
+ The key of the element to remove.
+
+
+ Returns an enumerator that iterates through a collection.
+ An enumerator object that can be used to iterate through the collection.
+
+
+ Creates an immutable sorted dictionary based on the contents of this instance.
+ An immutable sorted dictionary.
+
+
+ Determines whether this dictionary contains a specified key.
+ The key to search for.
+ The matching key located in the dictionary if found, or equalkey if no match is found.
+
+ if a match for is found; otherwise, .
+
+
+ Gets the value associated with the specified key.
+ The key whose value will be retrieved.
+ When this method returns, contains the value associated with the specified key, if the key is found; otherwise, contains the default value for the type of the parameter. This parameter is passed uninitialized.
+
+ if the object that implements the dictionary contains an element with the specified key; otherwise, .
+
+
+ Returns a read-only reference to the value associated with the provided .
+ Key of the entry to be looked up.
+ The is not present.
+ A read-only reference to the value associated with the provided .
+
+
+ Gets the number of elements in this immutable sorted dictionary.
+ The number of elements in this dictionary.
+
+
+ Gets or sets the value for a specified key in the immutable sorted dictionary.
+ The key to retrieve the value for.
+ The value associated with the given key.
+
+
+ Gets or sets the key comparer.
+ The key comparer.
+
+
+ Gets a strongly typed, read-only collection of elements.
+ A strongly typed, read-only collection of elements.
+
+
+ Gets a value that indicates whether this instance is read-only.
+ Always .
+
+
+ Returns a collection containing all keys stored in the dictionary. See .
+ A collection containing all keys stored in the dictionary.
+
+
+ Returns a collection containing all values stored in the dictionary. See .
+ A collection containing all values stored in the dictionary.
+
+
+ Gets a value that indicates whether access to the is synchronized (thread safe).
+
+ if access to the is synchronized (thread safe); otherwise, .
+
+
+ Gets an object that can be used to synchronize access to the .
+ An object that can be used to synchronize access to the .
+
+
+ Gets a value that indicates whether the object has a fixed size.
+
+ if the object has a fixed size; otherwise, .
+
+
+ Gets a value that indicates whether the is read-only.
+
+ if the is read-only; otherwise, .
+
+
+ Gets or sets the element with the specified key.
+ The key.
+ The value associated with the specified key.
+
+
+ Gets an containing the keys of the .
+ An containing the keys of the object that implements .
+
+
+ Gets an containing the values in the .
+ An containing the values in the object that implements .
+
+
+ Gets or sets the value comparer.
+ The value comparer.
+
+
+ Gets a collection that contains the values of the immutable sorted dictionary.
+ A collection that contains the values of the object that implements the dictionary.
+
+
+ Enumerates the contents of a binary tree.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+
+
+ Releases the resources used by the current instance of the class.
+
+
+ Advances the enumerator to the next element of the immutable sorted dictionary.
+
+ if the enumerator was successfully advanced to the next element; if the enumerator has passed the end of the sorted dictionary.
+
+
+ Sets the enumerator to its initial position, which is before the first element in the immutable sorted dictionary.
+
+
+ Gets the element at the current position of the enumerator.
+ The element at the current position of the enumerator.
+
+
+ The current element.
+ The element in the collection at the current position of the enumerator.
+
+
+ Provides a set of initialization methods for instances of the class.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+ Creates an empty immutable sorted set.
+ The type of items to be stored in the immutable set.
+ An empty immutable sorted set.
+
+
+ Creates a new immutable sorted set that contains the specified item.
+ The item to prepopulate the set with.
+ The type of items in the immutable set.
+ A new immutable set that contains the specified item.
+
+
+ Creates a new immutable sorted set that contains the specified array of items.
+ An array that contains the items to prepopulate the set with.
+ The type of items in the immutable set.
+ A new immutable set that contains the specified items.
+
+
+ Creates an empty immutable sorted set that uses the specified comparer.
+ The implementation to use when comparing items in the set.
+ The type of items in the immutable set.
+ An empty immutable set.
+
+
+ Creates a new immutable sorted set that contains the specified item and uses the specified comparer.
+ The implementation to use when comparing items in the set.
+ The item to prepopulate the set with.
+ The type of items stored in the immutable set.
+ A new immutable set that contains the specified item.
+
+
+ Creates a new immutable sorted set that contains the specified array of items and uses the specified comparer.
+ The implementation to use when comparing items in the set.
+ An array that contains the items to prepopulate the set with.
+ The type of items in the immutable set.
+ A new immutable set that contains the specified items.
+
+
+ Creates a new immutable collection prefilled with the specified items.
+ The comparer.
+ The items to prepopulate.
+ The type of items stored by the collection.
+ The new immutable collection.
+
+
+ Creates a new immutable sorted set that contains the specified array of items.
+ A span that contains the items to prepopulate the set with.
+ The type of items in the immutable set.
+ A new immutable set that contains the specified items.
+
+
+ Returns a collection that can be used to build an immutable sorted set.
+ The type of items stored by the collection.
+ The immutable collection builder.
+
+
+ Returns a collection that can be used to build an immutable sorted set.
+ The comparer used to compare items in the set for equality.
+ The type of items stored by the collection.
+ The immutable collection.
+
+
+ Creates a new immutable collection that contains the specified items.
+ The comparer to use to compare elements in this set.
+ The items to add to the set before it's immutable.
+ The type of items stored by the collection.
+ The new immutable set that contains the specified items.
+
+
+ Creates a new immutable collection that contains the specified items.
+ The items to add to the set with before it's immutable.
+ The type of items stored by the collection.
+ The new immutable set that contains the specified items.
+
+
+ Enumerates a sequence and produces an immutable sorted set of its contents.
+ The sequence to enumerate.
+ The type of the elements in the sequence.
+ An immutable sorted set that contains the items in the specified sequence.
+
+
+ Enumerates a sequence, produces an immutable sorted set of its contents, and uses the specified comparer.
+ The sequence to enumerate.
+ The comparer to use for initializing and adding members to the sorted set.
+ The type of the elements in the sequence.
+ An immutable sorted set that contains the items in the specified sequence.
+
+
+ Creates an immutable sorted set from the current contents of the builder's set.
+ The builder to create the immutable sorted set from.
+ The type of the elements in the immutable sorted set.
+ An immutable sorted set that contains the current contents in the builder's set.
+
+
+ Represents an immutable sorted set implementation.
+
+NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+ The type of elements in the set.
+
+
+ Gets an empty immutable sorted set.
+
+
+ Adds the specified value to this immutable sorted set.
+ The value to add.
+ A new set with the element added, or this set if the element is already in this set.
+
+
+ Removes all elements from the immutable sorted set.
+ An empty set with the elements removed.
+
+
+ Determines whether this immutable sorted set contains the specified value.
+ The value to check for.
+
+ if the set contains the specified value; otherwise, .
+
+
+ Removes a specified set of items from this immutable sorted set.
+ The items to remove from this set.
+ A new set with the items removed; or the original set if none of the items were in the set.
+
+
+ Returns an enumerator that iterates through the immutable sorted set.
+ An enumerator that can be used to iterate through the set.
+
+
+ Gets the position within this immutable sorted set that the specified value appears in.
+ The value whose position is being sought.
+ The index of the specified in the sorted set, if is found. If is not found and is less than one or more elements in this set, this method returns a negative number that is the bitwise complement of the index of the first element that is larger than value. If is not found and is greater than any of the elements in the set, this method returns a negative number that is the bitwise complement of the index of the last element plus 1.
+
+
+ Creates an immutable sorted set that contains elements that exist both in this set and in the specified set.
+ The set to intersect with this one.
+ A new immutable sorted set that contains any elements that exist in both sets.
+
+
+ Determines whether the current immutable sorted set is a proper (strict) subset of the specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a proper subset of ; otherwise, .
+
+
+ Determines whether the current immutable sorted set is a proper superset of a specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a proper superset of ; otherwise, .
+
+
+ Determines whether the current immutable sorted set is a subset of a specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a subset of ; otherwise, .
+
+
+ Determines whether the current immutable sorted set is a superset of a specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a superset of ; otherwise, .
+
+
+ Gets a read-only reference of the element of the set at the given .
+ The 0-based index of the element in the set to return.
+ A read-only reference of the element at the given position.
+
+
+ Determines whether the current immutable sorted set and a specified collection share common elements.
+ The collection to compare to the current set.
+
+ if the current set and share at least one common element; otherwise, .
+
+
+ Removes the specified value from this immutable sorted set.
+ The element to remove.
+ A new immutable sorted set with the element removed, or this set if the element was not found in the set.
+
+
+ Returns an that iterates over this immutable sorted set in reverse order.
+ An enumerator that iterates over the immutable sorted set in reverse order.
+
+
+ Determines whether the current immutable sorted set and the specified collection contain the same elements.
+ The collection to compare to the current set.
+
+ if the sets are equal; otherwise, .
+
+
+ Creates an immutable sorted set that contains elements that exist either in this set or in a given sequence, but not both.
+ The other sequence of items.
+ The new immutable sorted set.
+
+
+ Adds the specified value to the collection.
+ The value to add.
+
+
+ Removes all the items from the collection.
+
+
+ Copies the elements of the collection to an array, starting at a particular array index.
+ The one-dimensional array that is the destination of the elements copied from collection. The array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+
+ Removes the first occurrence of a specific object from the collection.
+ The object to remove from the collection.
+
+ if was successfully removed from the collection; otherwise, .
+
+
+ Returns an enumerator that iterates through the collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Inserts an item in the set at the specified index.
+ The zero-based index at which should be inserted.
+ The object to insert into the set.
+
+
+ Removes the item at the specified index.
+ The zero-based index of the item to remove.
+
+
+ Adds an element to the current set and returns a value to indicate if the element was successfully added.
+ The element to add to the set.
+
+ if the element is added to the set; if the element is already in the set.
+
+
+ Removes all elements in the specified collection from the current set.
+ The collection of items to remove from the set.
+
+
+ Modifies the current set so that it contains only elements that are also in a specified collection.
+ The collection to compare to the current set.
+
+
+ Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.
+ The collection to compare to the current set.
+
+
+ Modifies the current set so that it contains all elements that are present in either the current set or the specified collection.
+ The collection to compare to the current set.
+
+
+ Copies the elements of the set to an array, starting at a particular array index.
+ The one-dimensional array that is the destination of the elements copied from the set. The array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+
+ Returns an enumerator that iterates through a collection.
+ An enumerator object that can be used to iterate through the collection.
+
+
+ Adds an item to the set.
+ The object to add to the set.
+ The set is read-only or has a fixed size.
+ The position into which the new element was inserted, or -1 to indicate that the item was not inserted into the collection.
+
+
+ Removes all items from the set.
+ Thrown in all cases.
+
+
+ Determines whether the set contains a specific value.
+ The object to locate in the set.
+
+ if the object is found in the set; otherwise, .
+
+
+ Determines the index of a specific item in the set.
+ The object to locate in the set.
+ The index of if found in the list; otherwise, -1.
+
+
+ Inserts an item into the set at the specified index.
+ The zero-based index at which should be inserted.
+ The object to insert into the set.
+ The set is read-only or has a fixed size.
+
+
+ Removes the first occurrence of a specific object from the set.
+ The object to remove from the set.
+ The set is read-only or has a fixed size.
+
+
+ Removes the item at the specified index of the set.
+ The zero-based index of the item to remove.
+ The set is read-only or has a fixed size.
+
+
+ Adds the specified element to this immutable set.
+ The element to add.
+ A new set with the element added, or this set if the element is already in the set.
+
+
+ Retrieves an empty immutable set that has the same sorting and ordering semantics as this instance.
+ An empty set that has the same sorting and ordering semantics as this instance.
+
+
+ Removes the elements in the specified collection from the current immutable set.
+ The items to remove from this set.
+ The new set with the items removed; or the original set if none of the items were in the set.
+
+
+ Creates an immutable set that contains elements that exist in both this set and the specified set.
+ The collection to compare to the current set.
+ A new immutable set that contains any elements that exist in both sets.
+
+
+ Removes the specified element from this immutable set.
+ The element to remove.
+ A new set with the specified element removed, or the current set if the element cannot be found in the set.
+
+
+ Creates an immutable set that contains only elements that are present either in the current set or in the specified collection, but not both.
+ The collection to compare to the current set.
+ A new set that contains the elements that are present only in the current set or in the specified collection, but not both.
+
+
+ Creates a new immutable set that contains all elements that are present in either the current set or in the specified collection.
+ The collection to add elements from.
+ A new immutable set with the items added; or the original set if all the items were already in the set.
+
+
+ Creates a collection that has the same contents as this immutable sorted set that can be efficiently manipulated by using standard mutable interfaces.
+ The sorted set builder.
+
+
+ Searches the set for a given value and returns the equal value it finds, if any.
+ The value to search for.
+ The value from the set that the search found, or the original value if the search yielded no match.
+ A value indicating whether the search was successful.
+
+
+ Adds a given set of items to this immutable sorted set.
+ The items to add.
+ The new set with the items added; or the original set if all the items were already in the set.
+
+
+ Returns the immutable sorted set that has the specified key comparer.
+ The comparer to check for.
+ The immutable sorted set that has the specified key comparer.
+
+
+ Gets the number of elements in the immutable sorted set.
+ The number of elements in the immutable sorted set.
+
+
+ Gets a value that indicates whether this immutable sorted set is empty.
+
+ if this set is empty; otherwise, .
+
+
+ Gets the element of the immutable sorted set at the given index.
+ The index of the element to retrieve from the sorted set.
+ The element at the given index.
+
+
+ Gets the comparer used to sort keys in the immutable sorted set.
+ The comparer used to sort keys.
+
+
+ Gets the maximum value in the immutable sorted set, as defined by the comparer.
+ The maximum value in the set.
+
+
+ Gets the minimum value in the immutable sorted set, as defined by the comparer.
+ The minimum value in the set.
+
+
+ Returns true, since immutable collections are always read-only. See the interface.
+ A boolean value indicating whether the collection is read-only.
+
+
+ See the interface.
+ The zero-based index of the item to access.
+ The element stored at the specified index.
+
+
+ Returns true, since immutable collections are always thread-safe. See the interface.
+ A boolean value indicating whether the collection is thread-safe.
+
+
+ See .
+ Object used for synchronizing access to the collection.
+
+
+ Gets a value that indicates whether the has a fixed size.
+
+ if the has a fixed size; otherwise, .
+
+
+ Gets a value that indicates whether the is read-only.
+
+ if the is read-only; otherwise, .
+
+
+ Gets or sets the at the specified index.
+ The index.
+
+ The .
+
+
+ Represents a sorted set that enables changes with little or no memory allocations, and efficiently manipulates or builds immutable sorted sets.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+
+ Adds an element to the current set and returns a value to indicate whether the element was successfully added.
+ The element to add to the set.
+
+ if the element is added to the set; if the element is already in the set.
+
+
+ Removes all elements from this set.
+
+
+ Determines whether the set contains the specified object.
+ The object to locate in the set.
+
+ if is found in the set; otherwise, .
+
+
+ Removes the specified set of items from the current set.
+ The collection of items to remove from the set.
+
+
+ Returns an enumerator that iterates through the set.
+ A enumerator that can be used to iterate through the set.
+
+
+ Searches for the first index within this set that the specified value is contained.
+ The value to locate within the set.
+ The index of the specified in the sorted set, if is found. If is not found and is less than one or more elements in this set, returns a negative number that is the bitwise complement of the index of the first element that's larger than . If is not found and is greater than any of the elements in the set, returns a negative number that is the bitwise complement of (the index of the last element plus 1).
+
+
+ Modifies the current set so that it contains only elements that are also in a specified collection.
+ The collection to compare to the current set.
+
+
+ Determines whether the current set is a proper (strict) subset of a specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a proper subset of ; otherwise, .
+
+
+ Determines whether the current set is a proper (strict) superset of a specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a proper superset of ; otherwise, .
+
+
+ Determines whether the current set is a subset of a specified collection.
+ The collection is compare to the current set.
+
+ if the current set is a subset of ; otherwise, .
+
+
+ Determines whether the current set is a superset of a specified collection.
+ The collection to compare to the current set.
+
+ if the current set is a superset of ; otherwise, .
+
+
+ Gets a read-only reference to the element of the set at the given .
+ The 0-based index of the element in the set to return.
+ A read-only reference to the element at the given position.
+
+
+ Determines whether the current set overlaps with the specified collection.
+ The collection to compare to the current set.
+
+ if the current set and share at least one common element; otherwise, .
+
+
+ Removes the first occurrence of the specified object from the set.
+ The object to remove from the set.
+
+ if was removed from the set; if was not found in the set.
+
+
+ Returns an enumerator that iterates over the immutable sorted set in reverse order.
+ An enumerator that iterates over the set in reverse order.
+
+
+ Determines whether the current set and the specified collection contain the same elements.
+ The collection to compare to the current set.
+
+ if the current set is equal to ; otherwise, .
+
+
+ Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.
+ The collection to compare to the current set.
+
+
+ Adds an element to the current set and returns a value to indicate whether the element was successfully added.
+ The element to add to the set.
+
+
+ Copies the elements of the collection to an array, starting at a particular array index.
+ The one-dimensional array that is the destination of the elements copied from collection. The array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+
+ Returns an enumerator that iterates through the collection.
+ A enumerator that can be used to iterate through the collection.
+
+
+ Copies the elements of the set to an array, starting at a particular array index.
+ The one-dimensional array that is the destination of the elements copied from the set. The array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+
+ Returns an enumerator that iterates through the collection.
+ A enumerator that can be used to iterate through the collection.
+
+
+ Creates an immutable sorted set based on the contents of this instance.
+ An immutable set.
+
+
+ Searches the set for a given value and returns the equal value it finds, if any.
+ The value for which to search.
+ The value from the set that the search found, or the original value if the search yielded no match.
+ A value indicating whether the search was successful.
+
+
+ Modifies the current set so that it contains all elements that are present in both the current set and in the specified collection.
+ The collection to compare to the current state.
+
+
+ Gets the number of elements in the immutable sorted set.
+ The number of elements in this set.
+
+
+ Gets the element of the set at the given index.
+ The 0-based index of the element in the set to return.
+ The element at the given position.
+
+
+ Gets or sets the object that is used to determine equality for the values in the immutable sorted set.
+ The comparer that is used to determine equality for the values in the set.
+
+
+ Gets the maximum value in the immutable sorted set, as defined by the comparer.
+ The maximum value in the set.
+
+
+ Gets the minimum value in the immutable sorted set, as defined by the comparer.
+ The minimum value in the set.
+
+
+ Gets a value that indicates whether this instance is read-only.
+ Always .
+
+
+ Gets a value that indicates whether access to the is synchronized (thread-safe).
+
+ if access to the is synchronized (thread-safe); otherwise, .
+
+
+ Gets an object that can be used to synchronize access to the .
+ An object that can be used to synchronize access to the .
+
+
+ Enumerates the contents of a binary tree.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+
+ Releases the resources used by the current instance of the class.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+ Advances the enumerator to the next element of the immutable sorted set.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+ if the enumerator was successfully advanced to the next element; if the enumerator has passed the end of the sorted set.
+
+
+ Sets the enumerator to its initial position, which is before the first element in the immutable sorted set.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+ Gets the element at the current position of the enumerator.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+ The element at the current position of the enumerator.
+
+
+ The current element.
+ The element in the collection at the current position of the enumerator.
+
+
+ Provides a set of initialization methods for instances of the class.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+ Creates an empty immutable stack.
+ The type of items to be stored in the immutable stack.
+ An empty immutable stack.
+
+
+ Creates a new immutable stack that contains the specified item.
+ The item to prepopulate the stack with.
+ The type of items in the immutable stack.
+ A new immutable collection that contains the specified item.
+
+
+ Creates a new immutable stack that contains the specified array of items.
+ An array that contains the items to prepopulate the stack with.
+ The type of items in the immutable stack.
+ A new immutable stack that contains the specified items.
+
+
+ Creates a new immutable stack that contains the specified array of items.
+ A span that contains the items to prepopulate the stack with.
+ The type of items in the immutable stack.
+ A new immutable stack that contains the specified items.
+
+
+ Creates a new immutable stack that contains the specified items.
+ The items to add to the stack before it's immutable.
+ The type of items in the stack.
+ An immutable stack that contains the specified items.
+
+
+ Removes the specified item from an immutable stack.
+ The stack to modify.
+ The item to remove from the stack.
+ The type of items contained in the stack.
+ The stack is empty.
+ A stack; never .
+
+
+ Represents an immutable stack.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+ The type of element on the stack.
+
+
+ Removes all objects from the immutable stack.
+ An empty immutable stack.
+
+
+ Returns an enumerator that iterates through the immutable stack.
+ An enumerator that can be used to iterate through the stack.
+
+
+ Returns the object at the top of the stack without removing it.
+ The stack is empty.
+ The object at the top of the stack.
+
+
+ Gets a read-only reference to the element on the top of the stack.
+ The stack is empty.
+ A read-only reference to the element on the top of the stack.
+
+
+ Removes the element at the top of the immutable stack and returns the stack after the removal.
+ The stack is empty.
+ A stack; never .
+
+
+ Removes the specified element from the immutable stack and returns the stack after the removal.
+ The value to remove from the stack.
+ A stack; never .
+
+
+ Inserts an object at the top of the immutable stack and returns the new stack.
+ The object to push onto the stack.
+ The new stack.
+
+
+ Returns an enumerator that iterates through the collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Returns an enumerator that iterates through a collection.
+ An object that can be used to iterate through the collection.
+
+
+ Removes all elements from the immutable stack.
+ The empty immutable stack.
+
+
+ Removes the element at the top of the immutable stack and returns the new stack.
+ The stack is empty.
+ The new stack; never .
+
+
+ Inserts an element at the top of the immutable stack and returns the new stack.
+ The element to push onto the stack.
+ The new stack.
+
+
+ Gets an empty immutable stack.
+ An empty immutable stack.
+
+
+ Gets a value that indicates whether this instance of the immutable stack is empty.
+
+ if this instance is empty; otherwise, .
+
+
+ Enumerates the contents of an immutable stack without allocating any memory.
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+
+ Advances the enumerator to the next element of the immutable stack.
+
+ if the enumerator was successfully advanced to the next element; if the enumerator has passed the end of the stack.
+
+
+ Gets the element at the current position of the enumerator.
+ The element at the current position of the enumerator.
+
+
+ LINQ extension method overrides that offer greater efficiency for than the standard LINQ methods
+
+ NuGet package: System.Collections.Immutable (about immutable collections and how to install)
+
+
+ Applies a function to a sequence of elements in a cumulative way.
+ The collection to apply the function to.
+ A function to be invoked on each element, in a cumulative way.
+ The type of element contained by the collection.
+ The final value after the cumulative function has been applied to all elements.
+
+
+ Applies a function to a sequence of elements in a cumulative way.
+ The collection to apply the function to.
+ The initial accumulator value.
+ A function to be invoked on each element, in a cumulative way.
+ The type of the accumulated value.
+ The type of element contained by the collection.
+ The final accumulator value.
+
+
+ Applies a function to a sequence of elements in a cumulative way.
+ The collection to apply the function to.
+ The initial accumulator value.
+ A function to be invoked on each element, in a cumulative way.
+ A function to transform the final accumulator value into the result type.
+ The type of the accumulated value.
+ The type of result returned by the result selector.
+ The type of element contained by the collection.
+ The final accumulator value.
+
+
+ Gets a value indicating whether all elements in this array match a given condition.
+ The array to check for matches.
+ The predicate.
+ The type of element contained by the collection.
+
+ if every element of the source sequence passes the test in the specified predicate; otherwise, .
+
+
+ Returns a value indicating whether this collection contains any elements.
+ The builder to check for matches.
+ The type of elements in the array.
+
+ if the array builder contains any elements; otherwise, .
+
+
+ Gets a value indicating whether the array contains any elements.
+ The array to check for elements.
+ The type of element contained by the collection.
+
+ if the array contains an elements; otherwise, .
+
+
+ Gets a value indicating whether the array contains any elements that match a specified condition.
+ The array to check for elements.
+ The delegate that defines the condition to match to an element.
+ The type of element contained by the collection.
+
+ if an element matches the specified condition; otherwise, .
+
+
+ Returns the element at a specified index in the array.
+ The array to find an element in.
+ The index for the element to retrieve.
+ The type of element contained by the collection.
+ The item at the specified index.
+
+
+ Returns the element at a specified index in a sequence or a default value if the index is out of range.
+ The array to find an element in.
+ The index for the element to retrieve.
+ The type of element contained by the collection.
+ The item at the specified index, or the default value if the index is not found.
+
+
+ Returns the first element in the collection.
+ The builder to retrieve an item from.
+ The type of items in the array.
+ If the array is empty.
+ The first item in the list.
+
+
+ Returns the first element in an array.
+ The array to get an item from.
+ The type of element contained by the collection.
+ If the array is empty.
+ The first item in the array.
+
+
+ Returns the first element in a sequence that satisfies a specified condition.
+ The array to get an item from.
+ The delegate that defines the conditions of the element to search for.
+ The type of element contained by the collection.
+ If the array is empty.
+ The first item in the list if it meets the condition specified by .
+
+
+ Returns the first element in the collection, or the default value if the collection is empty.
+ The builder to retrieve an element from.
+ The type of item in the builder.
+ The first item in the list, if found; otherwise the default value for the item type.
+
+
+ Returns the first element of a sequence, or a default value if the sequence contains no elements.
+ The array to retrieve items from.
+ The type of element contained by the collection.
+ The first item in the list, if found; otherwise the default value for the item type.
+
+
+ Returns the first element of the sequence that satisfies a condition or a default value if no such element is found.
+ The array to retrieve elements from.
+ The delegate that defines the conditions of the element to search for.
+ The type of element contained by the collection.
+ The first item in the list, if found; otherwise the default value for the item type.
+
+
+ Returns the last element in the collection.
+ The builder to retrieve elements from.
+ The type of item in the builder.
+ The collection is empty.
+ The last element in the builder.
+
+
+ Returns the last element of the array.
+ The array to retrieve items from.
+ The type of element contained by the array.
+ The collection is empty.
+ The last element in the array.
+
+
+ Returns the last element of a sequence that satisfies a specified condition.
+ The array to retrieve elements from.
+ The delegate that defines the conditions of the element to retrieve.
+ The type of element contained by the collection.
+ The collection is empty.
+ The last element of the array that satisfies the condition.
+
+
+ Returns the last element in the collection, or the default value if the collection is empty.
+ The builder to retrieve an element from.
+ The type of item in the builder.
+ The last element of a sequence, or a default value if the sequence contains no elements.
+
+
+ Returns the last element of a sequence, or a default value if the sequence contains no elements.
+ The array to retrieve items from.
+ The type of element contained by the collection.
+ The last element of a sequence, or a default value if the sequence contains no elements.
+
+
+ Returns the last element of a sequence that satisfies a condition or a default value if no such element is found.
+ The array to retrieve an element from.
+ The delegate that defines the conditions of the element to search for.
+ The type of element contained by the collection.
+ The last element of a sequence, or a default value if the sequence contains no elements.
+
+
+ Projects each element of a sequence into a new form.
+ The immutable array to select items from.
+ A transform function to apply to each element.
+ The type of element contained by the collection.
+ The type of the result element.
+ An whose elements are the result of invoking the transform function on each element of source.
+
+
+ Projects each element of a sequence to an , flattens the resulting sequences into one sequence, and invokes a result selector function on each element therein.
+ The immutable array.
+ A transform function to apply to each element of the input sequence.
+ A transform function to apply to each element of the intermediate sequence.
+ The type of the elements of .
+ The type of the intermediate elements collected by .
+ The type of the elements of the resulting sequence.
+ An whose elements are the result of invoking the one-to-many transform function on each element of and then mapping each of those sequence elements and their corresponding source element to a result element.
+
+
+ Determines whether two sequences are equal according to an equality comparer.
+ The array to use for comparison.
+ The items to use for comparison.
+ The comparer to use to check for equality.
+ The type of element in the compared array.
+ The type of element contained by the collection.
+
+ to indicate the sequences are equal; otherwise, .
+
+
+ Determines whether two sequences are equal according to an equality comparer.
+ The array to use for comparison.
+ The items to use for comparison.
+ The comparer to use to check for equality.
+ The type of element in the compared array.
+ The type of element contained by the collection.
+
+ to indicate the sequences are equal; otherwise, .
+
+
+ Determines whether two sequences are equal according to an equality comparer.
+ The array to use for comparison.
+ The items to use for comparison.
+ The comparer to use to check for equality.
+ The type of element in the compared array.
+ The type of element contained by the collection.
+
+ to indicate the sequences are equal; otherwise, .
+
+
+ Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence.
+ The array to retrieve the element from.
+ The type of element contained by the collection.
+ The element in the sequence.
+
+
+ Returns the only element of a sequence that satisfies a specified condition, and throws an exception if more than one such element exists.
+ The immutable array to return a single element from.
+ The function to test whether an element should be returned.
+ The type of element contained by the collection.
+ Returns .
+
+
+ Returns the only element of the array, or a default value if the sequence is empty; this method throws an exception if there is more than one element in the sequence.
+ The array.
+ The type of element contained by the collection.
+
+ contains more than one element.
+ The element in the array, or the default value if the array is empty.
+
+
+ Returns the only element of a sequence that satisfies a specified condition or a default value if no such element exists; this method throws an exception if more than one element satisfies the condition.
+ The array to get the element from.
+ The condition the element must satisfy.
+ The type of element contained by the collection.
+ More than one element satisfies the condition in .
+ The element if it satisfies the specified condition; otherwise the default element.
+
+
+ Copies the contents of this array to a mutable array.
+ The immutable array to copy into a mutable one.
+ The type of element contained by the collection.
+ The newly instantiated array.
+
+
+ Creates a dictionary based on the contents of this array.
+ The array to create a dictionary from.
+ The key selector.
+ The type of the key.
+ The type of element contained by the collection.
+ The newly initialized dictionary.
+
+
+ Creates a dictionary based on the contents of this array.
+ The array to create a dictionary from.
+ The key selector.
+ The comparer to initialize the dictionary with.
+ The type of the key.
+ The type of element contained by the collection.
+ The newly initialized dictionary.
+
+
+ Creates a dictionary based on the contents of this array.
+ The array to create a dictionary from.
+ The key selector.
+ The element selector.
+ The type of the key.
+ The type of the element.
+ The type of element contained by the collection.
+ The newly initialized dictionary.
+
+
+ Creates a dictionary based on the contents of this array.
+ The array to create a dictionary from.
+ The key selector.
+ The element selector.
+ The comparer to initialize the dictionary with.
+ The type of the key.
+ The type of the element.
+ The type of element contained by the collection.
+ The newly initialized dictionary.
+
+
+ Filters a sequence of values based on a predicate.
+ The array to filter.
+ The condition to use for filtering the array content.
+ The type of element contained by the collection.
+ Returns that contains elements that meet the condition.
+
+
+ An unsafe class that provides a set of methods to access the underlying data representations of immutable collections.
+
+
+ Gets the underlying array for an input value.
+ The input value to get the underlying array from.
+ The type of elements in the input value.
+ The underlying array for , if present.
+
+
+ Gets an value wrapping the input array.
+ The input array to wrap in the returned value.
+ The type of elements in the input array.
+ An value wrapping .
+
+
+
\ No newline at end of file
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Diagnostics.DiagnosticSource.dll b/SalesPacking_MES_API_Project/bin/Debug/System.Diagnostics.DiagnosticSource.dll
new file mode 100644
index 0000000..354f5f5
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/System.Diagnostics.DiagnosticSource.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Diagnostics.DiagnosticSource.xml b/SalesPacking_MES_API_Project/bin/Debug/System.Diagnostics.DiagnosticSource.xml
new file mode 100644
index 0000000..d94e6d2
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/System.Diagnostics.DiagnosticSource.xml
@@ -0,0 +1,1886 @@
+
+
+
+ System.Diagnostics.DiagnosticSource
+
+
+
+ Represents an operation with context to be used for logging.
+
+
+ Occurs when the value changes.
+
+
+ Initializes a new instance of the class.
+ The name of the operation.
+
+
+ Updates the to have a new baggage item with the specified key and value.
+ The baggage key.
+ The baggage value.
+
+ for convenient chaining.
+
+
+ Adds the specified activity event to the events list.
+ The activity event to add.
+
+ for convenient chaining.
+
+
+ Updates the activity to have a tag with an additional and .
+ The tag key name.
+ The tag value mapped to the input key.
+
+ for convenient chaining.
+
+
+ Updates the to have a new tag with the provided and .
+ The tag key.
+ The tag value.
+
+ for convenient chaining.
+
+
+ Stops the activity if it is already started and notifies any event listeners. Nothing will happen otherwise.
+
+
+ When overriden by a derived type, this method releases any allocated resources.
+
+ if the method is being called from the finalizer; if calling from user code.
+
+
+ Enumerates the objects attached to this Activity object.
+
+ .
+
+
+ Enumerates the objects attached to this Activity object.
+
+ .
+
+
+ Enumerates the tags attached to this Activity object.
+
+ .
+
+
+ Returns the value of a key-value pair added to the activity with .
+ The baggage key.
+ The value of the key-value-pair item if it exists, or if it does not exist.
+
+
+ Returns the object mapped to the specified property name.
+ The name associated to the object.
+ The object mapped to the property name, if one is found; otherwise, .
+
+
+ Returns the value of the Activity tag mapped to the input key/>.
+ Returns if that key does not exist.
+ The tag key string.
+ The tag value mapped to the input key.
+
+
+ Add or update the Activity baggage with the input key and value.
+ If the input value is - if the collection has any baggage with the same key, then this baggage will get removed from the collection.
+ - otherwise, nothing will happen and the collection will not change.
+ If the input value is not - if the collection has any baggage with the same key, then the value mapped to this key will get updated with the new input value.
+ - otherwise, the key and value will get added as a new baggage to the collection.
+ Baggage item will be updated/removed only if it was originaly added to the current activity. Items inherited from the parents will not be changed/removed, new item would be added to current activity baggage instead.
+ The baggage key name
+ The baggage value mapped to the input key
+
+ for convenient chaining.
+
+
+ Attaches any custom object to this activity. If the specified was previously associated with another object, the property will be updated to be associated with the new instead. It is recommended to use a unique property name to avoid conflicts with anyone using the same value.
+ The name to associate the value with.
+ The object to attach and map to the property name.
+
+
+ Updates the to set its as the difference between and the specified stop time.
+ The UTC stop time.
+
+ for convenient chaining.
+
+
+ Sets the ID format on this before it is started.
+ One of the enumeration values that specifies the format of the property.
+
+ for convenient chaining.
+
+
+ Sets the parent ID using the W3C convention of a TraceId and a SpanId.
+ The parent activity's TraceId.
+ The parent activity's SpanId.
+ One of the enumeration values that specifies flags defined by the W3C standard that are associated with an activity.
+
+ for convenient chaining.
+
+
+ Updates this to indicate that the with an ID of caused this .
+ The ID of the parent operation.
+
+ for convenient chaining.
+
+
+ Sets the start time of this .
+ The start time in UTC.
+
+ for convenient chaining.
+
+
+ Sets the status code and description on the current activity object.
+ The status code
+ The error status description
+
+ for convenient chaining.
+
+
+ Adds or update the activity tag with the input key and value.
+ The tag key name.
+ The tag value mapped to the input key.
+
+ for convenient chaining.
+
+
+ Starts the activity.
+
+ for convenient chaining.
+
+
+ Stops the activity.
+
+
+ Gets or sets the flags (defined by the W3C ID specification) associated with the activity.
+ the flags associated with the activity.
+
+
+ Gets a collection of key/value pairs that represents information that is passed to children of this .
+ Information that's passed to children of this .
+
+
+ Gets the context of the activity. Context becomes valid only if the activity has been started.
+ The context of the activity, if the activity has been started; otherwise, returns the default context.
+
+
+ Gets or sets the current operation () for the current thread. This flows across async calls.
+ The current operation for the current thread.
+
+
+ Gets or sets the default ID format for the .
+
+
+ Gets or sets the display name of the activity.
+ A string that represents the activity display name.
+
+
+ Gets the duration of the operation.
+ The delta between and the end time if the has ended ( or was called), or if the has not ended and was not called.
+
+
+ Gets the list of all the activity events attached to this activity.
+ An enumeration of activity events attached to this activity. If the activity has no events, returns an empty enumeration.
+
+
+ Gets or sets a value that detrmines if the is always used to define the default ID format.
+
+ to always use the ; otherwise, .
+
+
+ Gets a value that indicates whether the parent context was created from remote propagation.
+
+
+ Gets an identifier that is specific to a particular request.
+ The activity ID.
+
+
+ Gets the format for the .
+ The format for the .
+
+
+ Gets or sets a value that indicates whether this activity should be populated with all the propagation information, as well as all the other properties, such as links, tags, and events.
+
+ if the activity should be populated; otherwise.
+
+
+ Gets a value that indicates whether this object is stopped or not.
+
+
+ Gets the relationship between the activity, its parents, and its children in a trace.
+ One of the enumeration values that indicate relationship between the activity, its parents, and its children in a trace.
+
+
+ Gets the list of all the activity links attached to this activity.
+ An enumeration of activity links attached to this activity. If the activity has no links, returns an empty enumeration.
+
+
+ Gets the operation name.
+ The name of the operation.
+
+
+ Gets the parent that created this activity.
+ The parent of this , if it is from the same process, or if this instance has no parent (it is a root activity) or if the parent is from outside the process.
+
+
+ Gets the ID of this activity's parent.
+ The parent ID, if one exists, or if it does not.
+
+
+ Gets the parent's .
+ The parent's .
+
+
+ Gets a value that indicates whether the W3CIdFlags.Recorded flag is set.
+
+ if the W3CIdFlags.Recorded flag is set; otherwise, .
+
+
+ Gets the root ID of this .
+ The root ID, or if the current instance has either a or an .
+
+
+ Gets the activity source associated with this activity.
+
+
+ Gets the SPAN part of the .
+ The ID for the SPAN part of , if the has the W3C format; otherwise, a zero .
+
+
+ Gets the time when the operation started.
+ The UTC time that the operation started.
+
+
+ Gets status code of the current activity object.
+
+
+ Gets the status description of the current activity object.
+
+
+ Gets the list of tags that represent information to log along with the activity. This information is not passed on to the children of this activity.
+ A key-value pair enumeration of tags and objects.
+
+
+ Gets a collection of key/value pairs that represent information that will be logged along with the to the logging system.
+ Information that will be logged along with the to the logging system.
+
+
+ Gets the TraceId part of the .
+ The ID for the TraceId part of the , if the ID has the W3C format; otherwise, a zero TraceId.
+
+
+ When starting an Activity which does not have a parent context, the Trace Id will automatically be generated using random numbers.
+ TraceIdGenerator can be used to override the runtime's default Trace Id generation algorithm.
+
+
+ Gets or sets the W3C header.
+ The W3C header.
+
+
+ Enumerates the data stored on an object.
+ Type being enumerated.
+
+
+ Returns an enumerator that iterates through the data stored on an Activity object.
+
+ .
+
+
+ Advances the enumerator to the next element of the data.
+
+ if the enumerator was successfully advanced to the next element; if the enumerator has passed the end of the collection.
+
+
+ Gets the element at the current position of the enumerator.
+
+
+ Provides data for the event.
+
+
+ Gets the object after the event.
+
+
+ Gets the object before the event.
+
+
+ A representation that conforms to the W3C TraceContext specification. It contains two identifiers: a TraceId and a SpanId, along with a set of common TraceFlags and system-specific TraceState values.
+
+
+ Construct a new activity context instance using the specified arguments.
+ A trace identifier.
+ A span identifier.
+ Contain details about the trace.
+ Carries system-specific configuration data.
+ Indicates if the context is propagated from a remote parent.
+
+
+ Indicates whether the current object is equal to another object of the same type.
+ The object to compare to this instance.
+
+ if the current object is equal to the parameter; otherwise, .
+
+
+ Determines whether this instance and a specified object have the same value.
+ The object to compare to this instance.
+
+ if the current object is equal to the parameter; otherwise, .
+
+
+ Provides a hash function for the current that's suitable for hashing algorithms and data structures, such as hash tables.
+ A hash code for the current .
+
+
+ Determines whether two specified values are equal.
+ The first value to compare.
+ The second value to compare.
+
+ if and are equal; otherwise, .
+
+
+ Determines whether two specified values are not equal.
+ The first value to compare.
+ The second value to compare.
+
+ if and are not equal; otherwise, .
+
+
+ Parses a W3C trace context headers to an object.
+ The W3C trace parent header.
+ The trace state.
+ The trace parent is invalid.
+ The object created from the parsing operation.
+
+
+ Tries to parse the W3C trace context headers to the object.
+ The W3C trace parent header.
+ The W3C trace state.
+
+ to propagate the context from the remote parent; otherwise, .
+ When this method returns, contains the object created from the parsing operation.
+
+ if the operation succeeds; otherwise.
+
+
+ Tries to parse the W3C trace context headers to an object.
+ The W3C trace parent header.
+ The W3C trace state.
+ When this method returns , the object created from the parsing operation.
+
+ if the parsing was successful; otherwise.
+
+
+ Indicates if the activity context was propagated from a remote parent.
+
+ if it was propagated from a remote parent; otherwise.
+
+
+ The Id of the request as known by the caller.
+ The Span Id in the context.
+
+
+ The flags defined by the W3C standard along with the ID for the activity.
+ The context tracing flags.
+
+
+ The trace identifier.
+ The tracing identifier in the context.
+
+
+ Holds the W3C 'tracestate' header.
+ A string representing the W3C 'tracestate' header.
+
+
+ Encapsulates all the information that is sent to the activity listener, to make decisions about the creation of the activity instance, as well as its state.
+
+The possible generic type parameters are or .
+ The type of the property. Should be either or .
+
+
+ Gets the activity kind which the activity will be created with.
+ One of the enumeration values that represent an activity kind.
+
+
+ Gets the enumeration of activity links that the activity will be created with.
+ An enumeration of activity links.
+
+
+ Gets the name to use as OperationName of the activity that will get created.
+ A string representing the activity name.
+
+
+ Gets the parent context or parent Id that the activity will get created with.
+ The parent of the activity, represented either as a or as an .
+
+
+ Gets the collection that is used to add more tags during the sampling process. The added tags are also added to the created Activity if it is decided that it should be created by the callbacks.
+ The Activity tags collection.
+
+
+ Gets the activity source that creates the activity.
+ An activity source object.
+
+
+ Gets the tags that the activity will be created with.
+ A key-value pair enumeration of tags associated with the activity.
+
+
+ Gets the trace Id to use in the Activity object if it is decided that it should be created by callbacks.
+ The trace Id.
+
+
+ Gets or initializes the trace state to use when creating the Activity.
+
+
+ Represents an event containing a name and a timestamp, as well as an optional list of tags.
+
+
+ Initializes a new activity event instance using the specified name and the current time as the event timestamp.
+ The event name.
+
+
+ Initializes a new activity event instance using the specified name, timestamp and tags.
+ The event name.
+ The event timestamp. Timestamp must only be used for the events that happened in the past, not at the moment of this call.
+ The event tags.
+
+
+ Enumerate the tags attached to this object.
+
+ .
+
+
+ Gets the activity event name.
+ A string representing the activity event name.
+
+
+ Gets the collection of tags associated with the event.
+ A key-value pair enumeration containing the tags associated with the event.
+
+
+ Gets the activity event timestamp.
+ A datetime offset representing the activity event timestamp.
+
+
+ Specifies the format of the property.
+
+
+ The hierarchical format.
+
+
+ An unknown format.
+
+
+ The W3C format.
+
+
+ Describes the relationship between the activity, its parents and its children in a trace.
+
+
+ Outgoing request to the external component.
+
+
+ Output received from an external component.
+
+
+ Internal operation within an application, as opposed to operations with remote parents or children. This is the default value.
+
+
+ Output provided to external components.
+
+
+ Requests incoming from external component.
+
+
+ Activities may be linked to zero or more activity context instances that are causally related.
+
+Activity links can point to activity contexts inside a single trace or across different traces.
+
+Activity links can be used to represent batched operations where an activity was initiated by multiple initiating activities, each representing a single incoming item being processed in the batch.
+
+
+ Constructs a new activity link, which can be linked to an activity.
+ The trace activity context.
+ The key-value pair list of tags associated to the activity context.
+
+
+ Enumerate the tags attached to this object.
+
+ .
+
+
+ Indicates whether the current activity link is equal to another activity link.
+ The activity link to compare.
+
+ if the current activity link is equal to ; otherwise, .
+
+
+ Indicates whether the current activity link is equal to another object.
+ The object to compare.
+
+ if the current activity link is equal to ; otherwise, .
+
+
+ Provides a hash function for the current that's suitable for hashing algorithms and data structures, such as hash tables.
+ A hash code for the current .
+
+
+ Determines whether two specified values are equal.
+ The first value to compare.
+ The second value to compare.
+
+ if and are equal; otherwise, .
+
+
+ Determines whether two specified values are not equal.
+ The first value to compare.
+ The second value to compare.
+
+ if and are not equal; otherwise, .
+
+
+ Retrieves the activity context inside this activity link.
+
+
+ Retrieves the key-value pair enumeration of tags attached to the activity context.
+ An enumeration of tags attached to the activity context.
+
+
+ Allows listening to the start and stop activity events and gives the opportunity to decide creating an activity for sampling scenarios.
+
+
+ Construct a new activity listener object to start listeneing to the activity events.
+
+
+ Unregisters this activity listener object from listening to activity events.
+
+
+ Gets or sets the callback used to listen to the activity start event.
+ An activity callback instance used to listen to the activity start event.
+
+
+ Gets or sets the callback used to listen to the activity stop event.
+ An activity callback instance used to listen to the activity stop event.
+
+
+ Gets or sets the callback that is used to decide if creating objects with a specific data state is allowed.
+ A sample activity instance.
+
+
+ Gets or sets the callback that is used to decide if creating objects with a specific data state is allowed.
+ A sample activity instance.
+
+
+ Gets or sets the callback that allows deciding if activity object events that were created using the activity source object should be listened or not.
+
+ to listen events; otherwise.
+
+
+ Enumeration values used by to indicate the amount of data to collect for the related . Requesting more data causes a greater performance overhead.
+
+
+ The activity object should be populated with all the propagation information and also all other properties such as Links, Tags, and Events. Using this value causes to return .
+
+
+ The activity object should be populated the same as the case. Additionally, Activity.Recorded is set to . For activities using the W3C trace ids, this sets a flag bit in the ID that will be propagated downstream requesting that the trace is recorded everywhere.
+
+
+ The activity object does not need to be created.
+
+
+ The activity object needs to be created. It will have a Name, a Source, an Id and Baggage. Other properties are unnecessary and will be ignored by this listener.
+
+
+ Provides APIs to create and start objects and to register objects to listen to the events.
+
+
+ Constructs an activity source object with the specified .
+ The name of the activity source object.
+ The version of the component publishing the tracing info.
+
+
+ Adds a listener to the activity starting and stopping events.
+ The activity listener object to use for listening to the activity events.
+
+
+ Creates a new object if there is any listener to the Activity, returns otherwise.
+ The operation name of the Activity
+ The
+ The created object or if there is no any event listener.
+
+
+ Creates a new object if there is any listener to the Activity, returns otherwise.
+ If the Activity object is created, it will not automatically start. Callers will need to call to start it.
+ The operation name of the Activity.
+ The
+ The parent object to initialize the created Activity object with.
+ The optional tags list to initialize the created Activity object with.
+ The optional list to initialize the created Activity object with.
+ The default Id format to use.
+ The created object or if there is no any listener.
+
+
+ Creates a new object if there is any listener to the Activity, returns otherwise.
+ The operation name of the Activity.
+ The
+ The parent Id to initialize the created Activity object with.
+ The optional tags list to initialize the created Activity object with.
+ The optional list to initialize the created Activity object with.
+ The default Id format to use.
+ The created object or if there is no any listener.
+
+
+ Disposes the activity source object, removes the current instance from the global list, and empties the listeners list.
+
+
+ Checks if there are any listeners for this activity source.
+
+ if there is a listener registered for this activity source; otherwise, .
+
+
+ Creates and starts a new object if there is any listener to the Activity events, returns otherwise.
+ The
+ The parent object to initialize the created Activity object with.
+ The optional tags list to initialize the created Activity object with.
+ The optional list to initialize the created Activity object with.
+ The optional start timestamp to set on the created Activity object.
+ The operation name of the Activity.
+ The created object or if there is no any listener.
+
+
+ Creates a new activity if there are active listeners for it, using the specified name and activity kind.
+ The operation name of the activity.
+ The activity kind.
+ The created activity object, if it had active listeners, or if it has no event listeners.
+
+
+ Creates a new activity if there are active listeners for it, using the specified name, activity kind, parent activity context, tags, optional activity link and optional start time.
+ The operation name of the activity.
+ The activity kind.
+ The parent object to initialize the created activity object with.
+ The optional tags list to initialize the created activity object with.
+ The optional list to initialize the created activity object with.
+ The optional start timestamp to set on the created activity object.
+ The created activity object, if it had active listeners, or if it has no event listeners.
+
+
+ Creates a new activity if there are active listeners for it, using the specified name, activity kind, parent Id, tags, optional activity links and optional start time.
+ The operation name of the activity.
+ The activity kind.
+ The parent Id to initialize the created activity object with.
+ The optional tags list to initialize the created activity object with.
+ The optional list to initialize the created activity object with.
+ The optional start timestamp to set on the created activity object.
+ The created activity object, if it had active listeners, or if it has no event listeners.
+
+
+ Returns the activity source name.
+ A string that represents the activity source name.
+
+
+ Returns the activity source version.
+ A string that represents the activity source version.
+
+
+ Represents a formatted based on a W3C standard.
+
+
+ Copies the 8 bytes of the current to a specified span.
+ The span to which the 8 bytes of the SpanID are to be copied.
+
+
+ Creates a new value from a read-only span of eight bytes.
+ A read-only span of eight bytes.
+
+ does not contain eight bytes.
+ The new span ID.
+
+
+ Creates a new value from a read-only span of 16 hexadecimal characters.
+ A span that contains 16 hexadecimal characters.
+
+ does not contain 16 hexadecimal characters.
+
+-or-
+
+The characters in are not all lower-case hexadecimal characters or all zeros.
+ The new span ID.
+
+
+ Creates a new value from a read-only span of UTF8-encoded bytes.
+ A read-only span of UTF8-encoded bytes.
+ The new span ID.
+
+
+ Creates a new based on a random number (that is very likely to be unique).
+ The new span ID.
+
+
+ Determines whether this instance and the specified instance have the same value.
+ The instance to compare.
+
+ if has the same hex value as the current instance; otherwise, .
+
+
+ the current instance and a specified object, which also must be an instance, have the same value.
+ The object to compare.
+
+ if is an instance of and has the same hex value as the current instance; otherwise, .
+
+
+ Returns the hash code of the SpanId.
+ The hash code of the SpanId.
+
+
+ Determines whether two specified instances have the same value.
+ The first instance to compare.
+ The second instance to compare.
+
+ if the SpanId of is the same as the SpanId of ; otherwise, .
+
+
+ Determine whether two specified instances have unequal values.
+ The first instance to compare.
+ The second instance to compare.
+
+ if the SpanId of is different from the SpanId of ; otherwise, .
+
+
+ Returns a 16-character hexadecimal string that represents this span ID.
+ The 16-character hexadecimal string representation of this span ID.
+
+
+ Returns a 16-character hexadecimal string that represents this span ID.
+ The 16-character hexadecimal string representation of this span ID.
+
+
+ Define the status code of the Activity which indicate the status of the instrumented operation.
+
+
+ Status code indicating an error is encountered during the operation.
+
+
+ Status code indicating the operation has been validated and completed successfully.
+
+
+ Unset status code is the default value indicating the status code is not initialized.
+
+
+ ActivityTagsCollection is a collection class used to store tracing tags.
+
+This collection will be used with classes like and .
+
+This collection behaves as follows:
+- The collection items will be ordered according to how they are added.
+- Don't allow duplication of items with the same key.
+- When using the indexer to store an item in the collection:
+ - If the item has a key that previously existed in the collection and the value is , the collection item matching the key will be removed from the collection.
+ - If the item has a key that previously existed in the collection and the value is not , the new item value will replace the old value stored in the collection.
+ - Otherwise, the item will be added to the collection.
+- Add method will add a new item to the collection if an item doesn't already exist with the same key. Otherwise, it will throw an exception.
+
+
+ Create a new instance of the collection.
+
+
+ Create a new instance of the collection and store the input list items in the collection.
+ Initial list to store in the collection.
+
+
+ Adds an item to the collection.
+ Key and value pair of the tag to add to the collection.
+
+ already exists in the list.
+
+ is .
+
+
+ Adds a tag with the provided key and value to the collection. This collection doesn't allow adding two tags with the same key.
+ The tag key.
+ The tag value.
+
+
+ Removes all items from the collection.
+
+
+ Determines whether the contains a specific value.
+ The object to locate in the .
+
+ if is found in the ; otherwise, .
+
+
+ Determines whether the collection contains an element with the specified key.
+ The key to locate in the .
+
+ if the collection contains tag with that key. otherwise.
+
+
+ Copies the elements of the collection to an array, starting at a particular array index.
+ The array that is the destination of the elements copied from collection.
+ The zero-based index in array at which copying begins.
+
+
+ Returns an enumerator that iterates through the collection.
+ An enumerator for the .
+
+
+ Removes the first occurrence of a specific item from the collection.
+ The tag key value pair to remove.
+
+ if item was successfully removed from the collection; otherwise, . This method also returns if item is not found in the original collection.
+
+
+ Removes the tag with the specified key from the collection.
+ The tag key.
+
+ if the item existed and removed. otherwise.
+
+
+ Returns an enumerator that iterates through the collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Returns an enumerator that iterates through the collection.
+ An object that can be used to iterate through the collection.
+
+
+ Gets the value associated with the specified key.
+ The tag key.
+ The tag value.
+ When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.
+
+
+ Gets the number of elements contained in the collection.
+ The number of elements contained in the .
+
+
+ Gets a value indicating whether the collection is read-only. This always returns .
+ Always returns .
+
+
+ Gets or sets a specified collection item.
+
+ When setting a value to this indexer property, the following behavior is observed:
+- If the key previously existed in the collection and the value is , the collection item matching the key will get removed from the collection.
+- If the key previously existed in the collection and the value is not , the value will replace the old value stored in the collection.
+- Otherwise, a new item will get added to the collection.
+ The key of the value to get or set.
+ The object mapped to the key.
+
+
+ Get the list of the keys of all stored tags.
+ An containing the keys of the object that implements .
+
+
+ Get the list of the values of all stored tags.
+ An containing the values in the object that implements .
+
+
+ Enumerates the elements of an .
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+ Advances the enumerator to the next element of the collection.
+
+ if the enumerator was successfully advanced to the next element; if the enumerator has passed the end of the collection.
+
+
+ Sets the enumerator to its initial position, which is before the first element in the collection.
+
+
+ Gets the element in the collection at the current position of the enumerator.
+ The element in the collection at the current position of the enumerator.
+
+
+ Gets the element in the collection at the current position of the enumerator.
+ The element in the collection at the current position of the enumerator.
+
+
+ Specifies flags defined by the W3C standard that are associated with an activity.
+
+
+ The activity has not been marked.
+
+
+ The activity (or more likely its parents) has been marked as useful to record.
+
+
+ Represents a whose format is based on a W3C standard.
+
+
+ Copies the 16 bytes of the current to a specified span.
+ The span to which the 16 bytes of the trace ID are to be copied.
+
+
+ Creates a new value from a read-only span of 16 bytes.
+ A read-only span of 16 bytes.
+
+ does not contain eight bytes.
+ The new trace ID.
+
+
+ Creates a new value from a read-only span of 32 hexadecimal characters.
+ A span that contains 32 hexadecimal characters.
+
+ does not contain 16 hexadecimal characters.
+
+-or-
+
+The characters in are not all lower-case hexadecimal characters or all zeros.
+ The new trace ID.
+
+
+ Creates a new value from a read-only span of UTF8-encoded bytes.
+ A read-only span of UTF8-encoded bytes.
+ The new trace ID.
+
+
+ Creates a new based on a random number (that is very likely to be unique).
+ The new .
+
+
+ Determines whether the current instance and a specified are equal.
+ The instance to compare.
+
+ if has the same hex value as the current instance; otherwise, .
+
+
+ Determines whether this instance and a specified object, which must also be an instance, have the same value.
+ The object to compare.
+
+ if is an instance of and has the same hex value as the current instance; otherwise, .
+
+
+ Returns the hash code of the TraceId.
+ The hash code of the TraceId.
+
+
+ Determines whether two specified instances have the same value.
+ The first instance to compare.
+ The second instance to compare.
+
+ if the TraceId of is the same as the TraceId of ; otherwise, .
+
+
+ Determines whether two specified instances have the same value.
+ The first instance to compare.
+ The second instance to compare.
+
+ if the TraceId of is different from the TraceId of ; otherwise, .
+
+
+ Returns a 32-character hexadecimal string that represents this span ID.
+ The 32-character hexadecimal string representation of this trace ID.
+
+
+ Returns a 32-character hexadecimal string that represents this trace ID.
+ The 32-character hexadecimal string representation of this trace ID.
+
+
+ Provides an implementation of the abstract class that represents a named place to which a source sends its information (events).
+
+
+ Creates a new .
+ The name of this .
+
+
+ Disposes the NotificationListeners.
+
+
+ Determines whether there are any registered subscribers.
+
+ if there are any registered subscribers, otherwise.
+
+
+ Checks whether the is enabled.
+ The name of the event to check.
+
+ if notifications are enabled; otherwise, .
+
+
+ Checks if any subscriber to the diagnostic events is interested in receiving events with this name. Subscribers indicate their interest using a delegate provided in .
+ The name of the event to check.
+ The object that represents a context.
+ The object that represents a context.
+
+ if it is enabled, otherwise.
+
+
+ Invokes the OnActivityExport method of all the subscribers.
+ The activity affected by an external event.
+ An object that represents the outgoing request.
+
+
+ Invokes the OnActivityImport method of all the subscribers.
+ The activity affected by an external event.
+ An object that represents the incoming request.
+
+
+ Adds a subscriber.
+ A subscriber.
+ A reference to an interface that allows the listener to stop receiving notifications before the has finished sending them.
+
+
+ Adds a subscriber, and optionally filters events based on their name and up to two context objects.
+ A subscriber.
+ A delegate that filters events based on their name and up to two context objects (which can be ), or to if an event filter is not desirable.
+ A reference to an interface that allows the listener to stop receiving notifications before the has finished sending them.
+
+
+ Adds a subscriber, optionally filters events based on their name and up to two context objects, and specifies methods to call when providers import or export activites from outside the process.
+ A subscriber.
+ A delegate that filters events based on their name and up to two context objects (which can be ), or if an event filter is not desirable.
+ An action delegate that receives the activity affected by an external event and an object that represents the incoming request.
+ An action delegate that receives the activity affected by an external event and an object that represents the outgoing request.
+ A reference to an interface that allows the listener to stop receiving notifications before the has finished sending them.
+
+
+ Adds a subscriber, and optionally filters events based on their name.
+ A subscriber.
+ A delegate that filters events based on their name (). The delegate should return if the event is enabled.
+ A reference to an interface that allows the listener to stop receiving notifications before the has finished sending them.
+
+
+ Returns a string with the name of this DiagnosticListener.
+ The name of this DiagnosticListener.
+
+
+ Logs a notification.
+ The name of the event to log.
+ An object that represents the payload for the event.
+
+
+ Gets the collection of listeners for this .
+
+
+ Gets the name of this .
+ The name of the .
+
+
+ An abstract class that allows code to be instrumented for production-time logging of rich data payloads for consumption within the process that was instrumented.
+
+
+ Initializes an instance of the class.
+
+
+ Verifies if the notification event is enabled.
+ The name of the event being written.
+
+ if the notification event is enabled, otherwise.
+
+
+ Verifies it the notification event is enabled.
+ The name of the event being written.
+ An object that represents the additional context for IsEnabled. Consumers should expect to receive which may indicate that producer called pure IsEnabled(string) to check if consumer wants to get notifications for such events at all. Based on that, producer may call IsEnabled(string, object, object) again with non- context.
+ Optional. An object that represents the additional context for IsEnabled. by default. Consumers should expect to receive which may indicate that producer called pure IsEnabled(string) or producer passed all necessary context in .
+
+ if the notification event is enabled, otherwise.
+
+
+ Transfers state from an activity to some event or operation, such as an outgoing HTTP request, that will occur outside the process.
+ The activity affected by an external event.
+ An object that represents the outgoing request.
+
+
+ Transfers state to an activity from some event or operation, such as an incoming request, that occurred outside the process.
+ The activity affected by an external event.
+ A payload that represents the incoming request.
+
+
+ Starts an and writes a start event.
+ The to be started.
+ An object that represent the value being passed as a payload for the event.
+ The started activity for convenient chaining.
+
+
+
+
+
+
+
+ Stops the given , maintains the global activity, and notifies consumers that the was stopped.
+ The activity to be stopped.
+ An object that represents the value passed as a payload for the event.
+
+
+
+
+
+
+
+ Provides a generic way of logging complex payloads.
+ The name of the event being written.
+ An object that represents the value being passed as a payload for the event. This is often an anonymous type which contains several sub-values.
+
+
+
+
+
+
+
+ An implementation of determines if and how distributed context information is encoded and decoded as it traverses the network.
+ The encoding can be transported over any network protocol that supports string key-value pairs. For example, when using HTTP, each key-value pair is an HTTP header.
+ injects values into and extracts values from carriers as string key-value pairs.
+
+
+ Initializes an instance of the class. This constructor is protected and only meant to be called from parent classes.
+
+
+ Returns the default propagator object that will be initialized with.
+ An instance of the class.
+
+
+ Returns a propagator that does not transmit any distributed context information in outbound network messages.
+ An instance of the class.
+
+
+ Returns a propagator that attempts to act transparently, emitting the same data on outbound network requests that was received on the inbound request.
+ When encoding the outbound message, this propagator uses information from the request's root Activity, ignoring any intermediate Activities that may have been created while processing the request.
+ An instance of the class.
+
+
+ Extracts the baggage key-value pair list from an incoming request represented by the carrier. For example, from the headers of an HTTP request.
+ The medium from which values will be read.
+ The callback method to invoke to get the propagation baggage list from the carrier.
+ Returns the extracted key-value pair list from the carrier.
+
+
+ Extracts the trace ID and trace state from an incoming request represented by the carrier. For example, from the headers of an HTTP request.
+ The medium from which values will be read.
+ The callback method to invoke to get the propagation trace ID and state from the carrier.
+ When this method returns, contains the trace ID extracted from the carrier.
+ When this method returns, contains the trace state extracted from the carrier.
+
+
+ Injects the trace values stored in the object into a carrier. For example, into the headers of an HTTP request.
+ The Activity object has the distributed context to inject to the carrier.
+ The medium in which the distributed context will be stored.
+ The callback method to invoke to set a named key-value pair on the carrier.
+
+
+ Get or set the process-wide propagator object to use as the current selected propagator.
+ The currently selected process-wide propagator object.
+
+
+ Gets the set of field names this propagator is likely to read or write.
+ The list of fields that will be used by the DistributedContextPropagator
.
+
+
+ Represents the callback method that's used in the extract methods of propagators. The callback is invoked to look up the value of a named field.
+ The medium used by propagators to read values from.
+ The propagation field name.
+ When this method returns, contains the value that corresponds to . The value is non- if there is only one value for the input field name.
+ When this method returns, contains a collection of values that correspond to . The value is non- if there is more than one value for the input field name.
+
+
+ Represents the callback method that's used in propagators' inject methods. This callback is invoked to set the value of a named field.
+ Propagators may invoke it multiple times in order to set multiple fields.
+ The medium used by propagators to write values to.
+ The propagation field name.
+ The value corresponding to .
+
+
+ Represents an instrument that supports adding non-negative values. For example, you might call counter.Add(1) each time a request is processed to track the total number of requests. Most metric viewers display counters using a rate (requests/sec), by default, but can also display a cumulative total.
+ The type that the counter represents.
+
+
+ Records the increment value of the measurement.
+ The increment measurement.
+
+
+ Records the increment value of the measurement.
+ The increment measurement.
+ A key-value pair tag associated with the measurement.
+
+
+ Records the increment value of the measurement.
+ The increment measurement.
+ A first key-value pair tag associated with the measurement.
+ A second key-value pair tag associated with the measurement.
+
+
+ Records the increment value of the measurement.
+ The increment measurement.
+ A first key-value pair tag associated with the measurement.
+ A second key-value pair tag associated with the measurement.
+ A third key-value pair tag associated with the measurement.
+
+
+ Records the increment value of the measurement.
+ The increment measurement.
+ A list of key-value pair tags associated with the measurement.
+
+
+ Adds the increment value of the measurement.
+ The measurement value.
+ The tags associated with the measurement.
+
+
+ Records the increment value of the measurement.
+ The increment measurement.
+ A span of key-value pair tags associated with the measurement.
+
+
+ Represents a metrics instrument that can be used to report arbitrary values that are likely to be statistically meaningful, for example, the request duration. Call to create a Histogram object.
+ The type that the histogram represents.
+
+
+ Records a measurement value.
+ The measurement value.
+
+
+ Records a measurement value.
+ The measurement value.
+ A key-value pair tag associated with the measurement.
+
+
+ Records a measurement value.
+ The measurement value.
+ A first key-value pair tag associated with the measurement.
+ A second key-value pair tag associated with the measurement.
+
+
+ Records a measurement value.
+ The measurement value.
+ A first key-value pair tag associated with the measurement.
+ A second key-value pair tag associated with the measurement.
+ A third key-value pair tag associated with the measurement.
+
+
+ Records a measurement value.
+ The measurement value.
+ A list of key-value pair tags associated with the measurement.
+
+
+ Records a measurement value.
+ The measurement value.
+ The tags associated with the measurement.
+
+
+ Records a measurement value.
+ The measurement value.
+ A span of key-value pair tags associated with the measurement.
+
+
+
+
+
+
+ Base class of all metrics instrument classes
+
+
+ Protected constructor to initialize the common instrument properties like the meter, name, description, and unit.
+ The meter that created the instrument.
+ The instrument name. Cannot be .
+ Optional instrument unit of measurements.
+ Optional instrument description.
+
+
+
+
+
+
+
+
+
+ Activates the instrument to start recording measurements and to allow listeners to start listening to such measurements.
+
+
+ Gets the instrument description.
+
+
+ Gets a value that indicates if there are any listeners for this instrument.
+
+
+ Gets a value that indicates whether the instrument is an observable instrument.
+
+
+ Gets the Meter that created the instrument.
+
+
+ Gets the instrument name.
+
+
+
+ Gets the instrument unit of measurements.
+
+
+ The base class for all non-observable instruments.
+ The type that the instrument represents.
+
+
+ Create the metrics instrument using the properties meter, name, description, and unit.
+ The meter that created the instrument.
+ The instrument name. Cannot be .
+ Optional instrument unit of measurements.
+ Optional instrument description.
+
+
+
+
+
+
+
+
+
+ Records a measurement by notifying all objects that are listening to this instrument.
+ The measurement value.
+
+
+ Records a measurement by notifying all objects that are listening to this instrument.
+ The measurement value.
+ A key-value pair tag associated with the measurement.
+
+
+ Records a measurement by notifying all objects that are listening to this instrument.
+ The measurement value.
+ A first key-value pair tag associated with the measurement.
+ A second key-value pair tag associated with the measurement.
+
+
+ Records a measurement by notifying all objects that are listening to this instrument.
+ The measurement value.
+ A first key-value pair tag associated with the measurement.
+ A second key-value pair tag associated with the measurement.
+ A third key-value pair tag associated with the measurement.
+
+
+ Records a measurement by notifying all objects that are listening to this instrument.
+ The measurement value.
+ The tags associated with the measurement.
+
+
+ Records a measurement by notifying all objects that are listening to this instrument.
+ The measurement value.
+ A span of key-value pair tags associated with the measurement.
+
+
+ Stores one observed metrics value and its associated tags. This type is used by an Observable instrument's Observe() method when reporting current measurements.
+ The type that the measurement represents.
+
+
+ Initializes a new instance of using the specified value.
+ The measurement value.
+
+
+ Initializes a new instance of using the specified value and list of tags.
+ The measurement value.
+ The list of tags associated with the measurement.
+
+
+ Initializes a new instance of using the specified value and list of tags.
+ The measurement value.
+ The list of tags associated with the measurement.
+
+
+ Initializes a new instance of using the specified value and list of tags.
+ The measurement value.
+ The list of tags associated with the measurement.
+
+
+ Gets the measurement tags list.
+
+
+ Gets the measurement value.
+
+
+ A delegate to represent the Meterlistener callbacks that are used when recording measurements.
+ The instrument that sent the measurement.
+ The measurement value.
+ A span of key-value pair tags associated with the measurement.
+ The state object originally passed to method.
+ The type that the measurement represents.
+
+
+ Meter is the class responsible for creating and tracking the Instruments.
+
+
+
+
+
+ Initializes a new instance of using the specified meter name.
+ The Meter name.
+
+
+ Initializes a new instance of using the specified meter name and version.
+ The Meter name.
+ The optional Meter version.
+
+
+
+
+
+
+
+
+ Create a metrics Counter object.
+ The instrument name. Cannot be .
+ Optional instrument unit of measurements.
+ Optional instrument description.
+ The numerical type of the measurement.
+ A new counter.
+
+
+
+
+
+
+
+
+
+ Creates a Histogram, which is an instrument that can be used to report arbitrary values that are likely to be statistically meaningful. It is intended for statistics such as histograms, summaries, and percentiles.
+ The instrument name. Cannot be .
+ Optional instrument unit of measurements.
+ Optional instrument description.
+ The numerical type of the measurement.
+ A new histogram.
+
+
+
+
+
+
+
+
+
+ Creates an ObservableCounter, which is an instrument that reports monotonically increasing values when the instrument is being observed.
+ The instrument name. Cannot be .
+ The callback to call to get the measurements when ObservableCounter{T}.Observe()
is called by .
+ Optional instrument unit of measurements.
+ Optional instrument description.
+ The numerical type of the measurement..
+ A new observable counter.
+
+
+
+
+
+
+
+
+
+
+ Creates an ObservableCounter, which is an instrument that reports monotonically increasing values when the instrument is being observed.
+ The instrument name. Cannot be .
+ The callback to call to get the measurements when ObservableCounter{T}.Observe()
is called by .
+ Optional instrument unit of measurements.
+ Optional instrument description.
+ The numerical type of the measurement.
+ A new observable counter.
+
+
+
+
+
+
+
+
+
+
+ Creates an ObservableCounter, which is an instrument that reports monotonically increasing values when the instrument is being observed.
+ The instrument name. Cannot be .
+ The callback to call to get the measurements when ObservableCounter{T}.Observe()
is called by
+ Optional instrument unit of measurements.
+ Optional instrument description.
+ The numerical type of the measurement.
+ A new observable counter.
+
+
+
+
+
+
+
+
+
+
+ Creates an ObservableGauge, which is an asynchronous instrument that reports non-additive values when the instrument is being observed.
+ The instrument name. Cannot be .
+ The callback to call to get the measurements when ObservableCounter{T}.Observe()
is called by .
+ Optional instrument unit of measurements.
+ Optional instrument description.
+ The numerical type of the measurement.
+ A new observable gauge.
+
+
+
+
+
+
+
+
+
+
+ Creates an ObservableGauge, which is an asynchronous instrument that reports non-additive values when the instrument is being observed.
+ The instrument name. Cannot be .
+ The callback to call to get the measurements when ObservableCounter{T}.Observe()
is called by .
+ Optional instrument unit of measurements.
+ Optional instrument description.
+ The numerical type of the measurement.
+ A new observable gauge.
+
+
+
+
+
+
+
+
+
+
+ Creates an ObservableGauge, which is an asynchronous instrument that reports non-additive values when the instrument is being observed.
+ The instrument name. Cannot be .
+ The callback to call to get the measurements when ObservableCounter{T}.Observe()
is called by .
+ Optional instrument unit of measurements.
+ Optional instrument description.
+ The numerical type of the measurement.
+ A new observable gauge.
+
+
+
+
+
+
+
+
+
+
+ Creates an ObservableUpDownCounter object. ObservableUpDownCounter is an Instrument that reports increasing or decreasing values when the instrument is being observed.
+ The instrument name. Cannot be .
+ The callback to call to get the measurements when the is called by .
+ Optional instrument unit of measurements.
+ Optional instrument description.
+ The numerical type of the measurement.
+ A new observable up down counter.
+
+
+
+
+
+
+
+
+
+
+ Creates an ObservableUpDownCounter object. ObservableUpDownCounter is an Instrument that reports increasing or decreasing values when the instrument is being observed.
+ The instrument name. Cannot be .
+ The callback to call to get the measurements when the is called by .
+ Optional instrument unit of measurements.
+ Optional instrument description.
+ The numerical type of the measurement.
+ A new observable up down counter.
+
+
+
+
+
+
+
+
+
+
+ Creates an ObservableUpDownCounter object. ObservableUpDownCounter is an Instrument that reports increasing or decreasing values when the instrument is being observed.
+ The instrument name. Cannot be .
+ The callback to call to get the measurements when the is called by
+ Optional instrument unit of measurements.
+ Optional instrument description.
+ The numerical type of the measurement.
+ A new observable up down counter.
+
+
+
+
+
+
+
+
+
+
+ Create a metrics UpDownCounter object.
+ The instrument name. Cannot be .
+ Optional instrument unit of measurements.
+ Optional instrument description.
+ The numerical type of the measurement.
+ A new up down counter.
+
+
+
+
+
+
+
+
+
+ Dispose the Meter which will disable all instruments created by this meter.
+
+
+
+
+
+ Gets the Meter name.
+ The Meter name
+
+
+
+
+ Gets the Meter version.
+ The Meter version.
+
+
+
+
+
+
+
+
+
+ The MeterListener is class used to listen to the metrics instrument measurements recording.
+
+
+ Initializes a new instance of the class.
+
+
+ Stops listening to a specific instrument measurement recording.
+ The instrument to stop listening to.
+ The state object originally passed to method.
+
+
+ Disposes the listeners which will stop it from listening to any instrument.
+
+
+ Starts listening to a specific instrument measurement recording.
+ The instrument to listen to.
+ A state object that will be passed back to the callback getting measurements events.
+
+
+ Calls all Observable instruments that the listener is listening to, and calls with every collected measurement.
+
+
+ Sets a callback for a specific numeric type to get the measurement recording notification from all instruments which enabled listening and was created with the same specified numeric type.
+ If a measurement of type T is recorded and a callback of type T is registered, that callback will be used.
+ The callback which can be used to get measurement recording of numeric type T.
+ The type of the numeric measurement.
+
+
+ Enables the listener to start listening to instruments measurement recording.
+
+
+ Gets or sets the callback to get notified when an instrument is published.
+ The callback to get notified when an instrument is published.
+
+
+ Gets or sets the callback to get notified when the measurement is stopped on some instrument.
+ This can happen when the Meter or the Listener is disposed or calling on the listener.
+ The callback to get notified when the measurement is stopped on some instrument.
+
+
+
+
+
+
+
+
+
+
+ Represents a metrics-observable instrument that reports monotonically increasing values when the instrument is being observed, for example, CPU time (for different processes, threads, user mode, or kernel mode). Call to create the observable counter object.
+ The type that the observable counter represents.
+
+
+ Represents an observable instrument that reports non-additive values when the instrument is being observed, for example, the current room temperature. Call to create the observable counter object.
+
+
+
+ ObservableInstrument{T} is the base class from which all metrics observable instruments will inherit.
+ The type that the observable instrument represents.
+
+
+ Initializes a new instance of the class using the specified meter, name, description, and unit.
+ All classes that extend ObservableInstrument{T} must call this constructor when constructing objects of the extended class.
+ The meter that created the instrument.
+ The instrument name. cannot be .
+ Optional instrument unit of measurements.
+ Optional instrument description.
+
+
+
+
+
+
+
+
+
+ Fetches the current measurements being tracked by this instrument. All classes extending ObservableInstrument{T} need to implement this method.
+ The current measurements tracked by this instrument.
+
+
+ Gets a value that indicates if the instrument is an observable instrument.
+
+ if the instrument is metrics-observable; otherwise.
+
+
+ A metrics-observable instrument that reports increasing or decreasing values when the instrument is being observed.
+Use this instrument to monitor the process heap size or the approximate number of items in a lock-free circular buffer, for example.
+To create an ObservableUpDownCounter object, use the methods.
+ The type that the counter represents.
+
+
+ An instrument that supports reporting positive or negative metric values.
+ UpDownCounter may be used in scenarios like reporting the change in active requests or queue size.
+ The type that the UpDownCounter represents.
+
+
+ Records the delta value of the measurement. The delta can be positive, negative, or zero.
+ The amount to be added, which can be positive, negative, or zero.
+
+
+ Records the delta value of the measurement. The delta can be positive, negative, or zero.
+ The amount to be added, which can be positive, negative, or zero.
+ A key-value pair tag associated with the measurement.
+
+
+ Records the delta value of the measurement. The delta can be positive, negative, or zero.
+ The amount to be added, which can be positive, negative, or zero.
+ A first key-value pair tag associated with the measurement.
+ A second key-value pair tag associated with the measurement.
+
+
+ Records the delta value of the measurement. The delta can be positive, negative, or zero.
+ The amount to be added, which can be positive, negative, or zero.
+ A first key-value pair tag associated with the measurement.
+ A second key-value pair tag associated with the measurement.
+ A third key-value pair tag associated with the measurement.
+
+
+ Records the delta value of the measurement. The delta can be positive, negative, or zero.
+ The amount to be added, which can be positive, negative, or zero.
+ A list of key-value pair tags associated with the measurement.
+
+
+ Records the delta value of the measurement. The delta can be positive, negative, or zero.
+ The amount to be added, which can be positive, negative, or zero.
+ A of tags associated with the measurement.
+
+
+ Records the delta value of the measurement. The delta can be positive, negative, or zero.
+ The amount to be added, which can be positive, negative, or zero.
+ A span of key-value pair tags associated with the measurement.
+
+
+ A delegate that defines the signature of the callbacks used in the sampling process.
+ The Activity creation options used by callbacks to decide creating the Activity object or not.
+ The type of the requested parent to create the Activity object with. Should be either a string or an instance.
+ An object containing the sampling results, which indicate the amount of data to collect for the related .
+
+
+ Represents a list of tags that can be accessed by index. Provides methods to search, sort, and manipulate lists.
+
+
+ Initializes a new instance of using the specified .
+ A span of tags to initialize the list with.
+
+
+ Adds a tag to the list.
+ The key-value pair of the tag to add to the list.
+
+
+ Adds a tag with the specified and to the list.
+ The tag key.
+ The tag value.
+
+
+ Removes all elements from the .
+
+
+ Determines whether a tag is in the .
+ The tag to locate in the .
+
+ if item is found in the ; otherwise, .
+
+
+ Copies the entire to a compatible one-dimensional array, starting at the specified index of the target array.
+ The one-dimensional Array that is the destination of the elements copied from . The Array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+ is .
+
+ is less than 0 or greater than or equal to the length.
+
+
+ Copies the contents of this into a destination span.
+ The destination object.
+
+ The number of elements in the source is greater than the number of elements that the destination span.
+
+
+ Returns an enumerator that iterates through the .
+ An enumerator that iterates through the .
+
+
+ Searches for the specified tag and returns the zero-based index of the first occurrence within the entire .
+ The tag to locate in the .
+ The zero-based index of the first ocurrence of in the tag list.
+
+
+ Inserts an element into the at the specified index.
+ The zero-based index at which the item should be inserted.
+ The tag to insert.
+
+ is less than 0 or is greater than .
+
+
+ Removes the first occurrence of a specific object from the .
+ The tag to remove from the .
+
+ if is successfully removed; otherwise, . This method also returns if was not found in the .
+
+
+ Removes the element at the specified index of the .
+ The zero-based index of the element to remove.
+
+ index is less than 0 or is greater than .
+
+
+ Returns an enumerator that iterates through the .
+ An enumerator that iterates through the .
+
+
+ Gets the number of tags contained in the .
+ The number of elements contained in the .
+
+
+ Gets a value indicating whether the is read-only. This property will always return .
+
+ Always returns .
+
+
+ Gets or sets the tags at the specified index.
+ The item index.
+
+ is not a valid index in the .
+ The element at the specified index.
+
+
+ An enumerator for traversing a tag list collection.
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+ Advances the enumerator to the next element of the collection.
+
+ if the enumerator was successfully advanced to the next element; if the enumerator has passed the end of the collection.
+
+
+ Sets the enumerator to its initial position, which is before the first element in the collection.
+
+
+ Gets the element in the collection at the current position of the enumerator.
+ The element in the collection at the current position of the enumerator.
+
+
+ Gets the element in the collection at the current position of the enumerator.
+ The element in the collection at the current position of the enumerator.
+
+
+
\ No newline at end of file
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Memory.dll b/SalesPacking_MES_API_Project/bin/Debug/System.Memory.dll
new file mode 100644
index 0000000..4617199
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/System.Memory.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Memory.xml b/SalesPacking_MES_API_Project/bin/Debug/System.Memory.xml
new file mode 100644
index 0000000..4d12fd7
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/System.Memory.xml
@@ -0,0 +1,355 @@
+
+
+ System.Memory
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Numerics.Vectors.dll b/SalesPacking_MES_API_Project/bin/Debug/System.Numerics.Vectors.dll
new file mode 100644
index 0000000..0865972
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/System.Numerics.Vectors.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Numerics.Vectors.xml b/SalesPacking_MES_API_Project/bin/Debug/System.Numerics.Vectors.xml
new file mode 100644
index 0000000..da34d39
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/System.Numerics.Vectors.xml
@@ -0,0 +1,2621 @@
+
+
+ System.Numerics.Vectors
+
+
+
+ Represents a 3x2 matrix.
+
+
+ Creates a 3x2 matrix from the specified components.
+ The value to assign to the first element in the first row.
+ The value to assign to the second element in the first row.
+ The value to assign to the first element in the second row.
+ The value to assign to the second element in the second row.
+ The value to assign to the first element in the third row.
+ The value to assign to the second element in the third row.
+
+
+ Adds each element in one matrix with its corresponding element in a second matrix.
+ The first matrix.
+ The second matrix.
+ The matrix that contains the summed values of value1 and value2.
+
+
+ Creates a rotation matrix using the given rotation in radians.
+ The amount of rotation, in radians.
+ The rotation matrix.
+
+
+ Creates a rotation matrix using the specified rotation in radians and a center point.
+ The amount of rotation, in radians.
+ The center point.
+ The rotation matrix.
+
+
+ Creates a scaling matrix from the specified X and Y components.
+ The value to scale by on the X axis.
+ The value to scale by on the Y axis.
+ The scaling matrix.
+
+
+ Creates a scaling matrix that scales uniformly with the specified scale with an offset from the specified center.
+ The uniform scale to use.
+ The center offset.
+ The scaling matrix.
+
+
+ Creates a scaling matrix that is offset by a given center point.
+ The value to scale by on the X axis.
+ The value to scale by on the Y axis.
+ The center point.
+ The scaling matrix.
+
+
+ Creates a scaling matrix that scales uniformly with the given scale.
+ The uniform scale to use.
+ The scaling matrix.
+
+
+ Creates a scaling matrix from the specified vector scale.
+ The scale to use.
+ The scaling matrix.
+
+
+ Creates a scaling matrix from the specified vector scale with an offset from the specified center point.
+ The scale to use.
+ The center offset.
+ The scaling matrix.
+
+
+ Creates a skew matrix from the specified angles in radians.
+ The X angle, in radians.
+ The Y angle, in radians.
+ The skew matrix.
+
+
+ Creates a skew matrix from the specified angles in radians and a center point.
+ The X angle, in radians.
+ The Y angle, in radians.
+ The center point.
+ The skew matrix.
+
+
+ Creates a translation matrix from the specified 2-dimensional vector.
+ The translation position.
+ The translation matrix.
+
+
+ Creates a translation matrix from the specified X and Y components.
+ The X position.
+ The Y position.
+ The translation matrix.
+
+
+ Returns a value that indicates whether this instance and another 3x2 matrix are equal.
+ The other matrix.
+ true if the two matrices are equal; otherwise, false.
+
+
+ Returns a value that indicates whether this instance and a specified object are equal.
+ The object to compare with the current instance.
+ true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false.
+
+
+ Calculates the determinant for this matrix.
+ The determinant.
+
+
+ Returns the hash code for this instance.
+ The hash code.
+
+
+ Gets the multiplicative identity matrix.
+ The multiplicative identify matrix.
+
+
+ Inverts the specified matrix. The return value indicates whether the operation succeeded.
+ The matrix to invert.
+ When this method returns, contains the inverted matrix if the operation succeeded.
+ true if matrix was converted successfully; otherwise, false.
+
+
+ Indicates whether the current matrix is the identity matrix.
+ true if the current matrix is the identity matrix; otherwise, false.
+
+
+ Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.
+ The first matrix.
+ The second matrix.
+ The relative weighting of matrix2.
+ The interpolated matrix.
+
+
+ The first element of the first row.
+
+
+
+ The second element of the first row.
+
+
+
+ The first element of the second row.
+
+
+
+ The second element of the second row.
+
+
+
+ The first element of the third row.
+
+
+
+ The second element of the third row.
+
+
+
+ Returns the matrix that results from multiplying two matrices together.
+ The first matrix.
+ The second matrix.
+ The product matrix.
+
+
+ Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.
+ The matrix to scale.
+ The scaling value to use.
+ The scaled matrix.
+
+
+ Negates the specified matrix by multiplying all its values by -1.
+ The matrix to negate.
+ The negated matrix.
+
+
+ Adds each element in one matrix with its corresponding element in a second matrix.
+ The first matrix.
+ The second matrix.
+ The matrix that contains the summed values.
+
+
+ Returns a value that indicates whether the specified matrices are equal.
+ The first matrix to compare.
+ The second matrix to compare.
+ true if value1 and value2 are equal; otherwise, false.
+
+
+ Returns a value that indicates whether the specified matrices are not equal.
+ The first matrix to compare.
+ The second matrix to compare.
+ true if value1 and value2 are not equal; otherwise, false.
+
+
+ Returns the matrix that results from multiplying two matrices together.
+ The first matrix.
+ The second matrix.
+ The product matrix.
+
+
+ Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.
+ The matrix to scale.
+ The scaling value to use.
+ The scaled matrix.
+
+
+ Subtracts each element in a second matrix from its corresponding element in a first matrix.
+ The first matrix.
+ The second matrix.
+ The matrix containing the values that result from subtracting each element in value2 from its corresponding element in value1.
+
+
+ Negates the specified matrix by multiplying all its values by -1.
+ The matrix to negate.
+ The negated matrix.
+
+
+ Subtracts each element in a second matrix from its corresponding element in a first matrix.
+ The first matrix.
+ The second matrix.
+ The matrix containing the values that result from subtracting each element in value2 from its corresponding element in value1.
+
+
+ Returns a string that represents this matrix.
+ The string representation of this matrix.
+
+
+ Gets or sets the translation component of this matrix.
+ The translation component of the current instance.
+
+
+ Represents a 4x4 matrix.
+
+
+ Creates a object from a specified object.
+ A 3x2 matrix.
+
+
+ Creates a 4x4 matrix from the specified components.
+ The value to assign to the first element in the first row.
+ The value to assign to the second element in the first row.
+ The value to assign to the third element in the first row.
+ The value to assign to the fourth element in the first row.
+ The value to assign to the first element in the second row.
+ The value to assign to the second element in the second row.
+ The value to assign to the third element in the second row.
+ The value to assign to the third element in the second row.
+ The value to assign to the first element in the third row.
+ The value to assign to the second element in the third row.
+ The value to assign to the third element in the third row.
+ The value to assign to the fourth element in the third row.
+ The value to assign to the first element in the fourth row.
+ The value to assign to the second element in the fourth row.
+ The value to assign to the third element in the fourth row.
+ The value to assign to the fourth element in the fourth row.
+
+
+ Adds each element in one matrix with its corresponding element in a second matrix.
+ The first matrix.
+ The second matrix.
+ The matrix that contains the summed values of value1 and value2.
+
+
+ Creates a spherical billboard that rotates around a specified object position.
+ The position of the object that the billboard will rotate around.
+ The position of the camera.
+ The up vector of the camera.
+ The forward vector of the camera.
+ The created billboard.
+
+
+ Creates a cylindrical billboard that rotates around a specified axis.
+ The position of the object that the billboard will rotate around.
+ The position of the camera.
+ The axis to rotate the billboard around.
+ The forward vector of the camera.
+ The forward vector of the object.
+ The billboard matrix.
+
+
+ Creates a matrix that rotates around an arbitrary vector.
+ The axis to rotate around.
+ The angle to rotate around axis, in radians.
+ The rotation matrix.
+
+
+ Creates a rotation matrix from the specified Quaternion rotation value.
+ The source Quaternion.
+ The rotation matrix.
+
+
+ Creates a rotation matrix from the specified yaw, pitch, and roll.
+ The angle of rotation, in radians, around the Y axis.
+ The angle of rotation, in radians, around the X axis.
+ The angle of rotation, in radians, around the Z axis.
+ The rotation matrix.
+
+
+ Creates a view matrix.
+ The position of the camera.
+ The target towards which the camera is pointing.
+ The direction that is "up" from the camera's point of view.
+ The view matrix.
+
+
+ Creates an orthographic perspective matrix from the given view volume dimensions.
+ The width of the view volume.
+ The height of the view volume.
+ The minimum Z-value of the view volume.
+ The maximum Z-value of the view volume.
+ The orthographic projection matrix.
+
+
+ Creates a customized orthographic projection matrix.
+ The minimum X-value of the view volume.
+ The maximum X-value of the view volume.
+ The minimum Y-value of the view volume.
+ The maximum Y-value of the view volume.
+ The minimum Z-value of the view volume.
+ The maximum Z-value of the view volume.
+ The orthographic projection matrix.
+
+
+ Creates a perspective projection matrix from the given view volume dimensions.
+ The width of the view volume at the near view plane.
+ The height of the view volume at the near view plane.
+ The distance to the near view plane.
+ The distance to the far view plane.
+ The perspective projection matrix.
+ nearPlaneDistance is less than or equal to zero.
+ -or-
+ farPlaneDistance is less than or equal to zero.
+ -or-
+ nearPlaneDistance is greater than or equal to farPlaneDistance.
+
+
+ Creates a perspective projection matrix based on a field of view, aspect ratio, and near and far view plane distances.
+ The field of view in the y direction, in radians.
+ The aspect ratio, defined as view space width divided by height.
+ The distance to the near view plane.
+ The distance to the far view plane.
+ The perspective projection matrix.
+ fieldOfView is less than or equal to zero.
+ -or-
+ fieldOfView is greater than or equal to .
+ nearPlaneDistance is less than or equal to zero.
+ -or-
+ farPlaneDistance is less than or equal to zero.
+ -or-
+ nearPlaneDistance is greater than or equal to farPlaneDistance.
+
+
+ Creates a customized perspective projection matrix.
+ The minimum x-value of the view volume at the near view plane.
+ The maximum x-value of the view volume at the near view plane.
+ The minimum y-value of the view volume at the near view plane.
+ The maximum y-value of the view volume at the near view plane.
+ The distance to the near view plane.
+ The distance to the far view plane.
+ The perspective projection matrix.
+ nearPlaneDistance is less than or equal to zero.
+ -or-
+ farPlaneDistance is less than or equal to zero.
+ -or-
+ nearPlaneDistance is greater than or equal to farPlaneDistance.
+
+
+ Creates a matrix that reflects the coordinate system about a specified plane.
+ The plane about which to create a reflection.
+ A new matrix expressing the reflection.
+
+
+ Creates a matrix for rotating points around the X axis.
+ The amount, in radians, by which to rotate around the X axis.
+ The rotation matrix.
+
+
+ Creates a matrix for rotating points around the X axis from a center point.
+ The amount, in radians, by which to rotate around the X axis.
+ The center point.
+ The rotation matrix.
+
+
+ The amount, in radians, by which to rotate around the Y axis from a center point.
+ The amount, in radians, by which to rotate around the Y-axis.
+ The center point.
+ The rotation matrix.
+
+
+ Creates a matrix for rotating points around the Y axis.
+ The amount, in radians, by which to rotate around the Y-axis.
+ The rotation matrix.
+
+
+ Creates a matrix for rotating points around the Z axis.
+ The amount, in radians, by which to rotate around the Z-axis.
+ The rotation matrix.
+
+
+ Creates a matrix for rotating points around the Z axis from a center point.
+ The amount, in radians, by which to rotate around the Z-axis.
+ The center point.
+ The rotation matrix.
+
+
+ Creates a scaling matrix from the specified vector scale.
+ The scale to use.
+ The scaling matrix.
+
+
+ Creates a uniform scaling matrix that scale equally on each axis.
+ The uniform scaling factor.
+ The scaling matrix.
+
+
+ Creates a scaling matrix with a center point.
+ The vector that contains the amount to scale on each axis.
+ The center point.
+ The scaling matrix.
+
+
+ Creates a uniform scaling matrix that scales equally on each axis with a center point.
+ The uniform scaling factor.
+ The center point.
+ The scaling matrix.
+
+
+ Creates a scaling matrix from the specified X, Y, and Z components.
+ The value to scale by on the X axis.
+ The value to scale by on the Y axis.
+ The value to scale by on the Z axis.
+ The scaling matrix.
+
+
+ Creates a scaling matrix that is offset by a given center point.
+ The value to scale by on the X axis.
+ The value to scale by on the Y axis.
+ The value to scale by on the Z axis.
+ The center point.
+ The scaling matrix.
+
+
+ Creates a matrix that flattens geometry into a specified plane as if casting a shadow from a specified light source.
+ The direction from which the light that will cast the shadow is coming.
+ The plane onto which the new matrix should flatten geometry so as to cast a shadow.
+ A new matrix that can be used to flatten geometry onto the specified plane from the specified direction.
+
+
+ Creates a translation matrix from the specified 3-dimensional vector.
+ The amount to translate in each axis.
+ The translation matrix.
+
+
+ Creates a translation matrix from the specified X, Y, and Z components.
+ The amount to translate on the X axis.
+ The amount to translate on the Y axis.
+ The amount to translate on the Z axis.
+ The translation matrix.
+
+
+ Creates a world matrix with the specified parameters.
+ The position of the object.
+ The forward direction of the object.
+ The upward direction of the object. Its value is usually [0, 1, 0].
+ The world matrix.
+
+
+ Attempts to extract the scale, translation, and rotation components from the given scale, rotation, or translation matrix. The return value indicates whether the operation succeeded.
+ The source matrix.
+ When this method returns, contains the scaling component of the transformation matrix if the operation succeeded.
+ When this method returns, contains the rotation component of the transformation matrix if the operation succeeded.
+ When the method returns, contains the translation component of the transformation matrix if the operation succeeded.
+ true if matrix was decomposed successfully; otherwise, false.
+
+
+ Returns a value that indicates whether this instance and another 4x4 matrix are equal.
+ The other matrix.
+ true if the two matrices are equal; otherwise, false.
+
+
+ Returns a value that indicates whether this instance and a specified object are equal.
+ The object to compare with the current instance.
+ true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false.
+
+
+ Calculates the determinant of the current 4x4 matrix.
+ The determinant.
+
+
+ Returns the hash code for this instance.
+ The hash code.
+
+
+ Gets the multiplicative identity matrix.
+ Gets the multiplicative identity matrix.
+
+
+ Inverts the specified matrix. The return value indicates whether the operation succeeded.
+ The matrix to invert.
+ When this method returns, contains the inverted matrix if the operation succeeded.
+ true if matrix was converted successfully; otherwise, false.
+
+
+ Indicates whether the current matrix is the identity matrix.
+ true if the current matrix is the identity matrix; otherwise, false.
+
+
+ Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.
+ The first matrix.
+ The second matrix.
+ The relative weighting of matrix2.
+ The interpolated matrix.
+
+
+ The first element of the first row.
+
+
+
+ The second element of the first row.
+
+
+
+ The third element of the first row.
+
+
+
+ The fourth element of the first row.
+
+
+
+ The first element of the second row.
+
+
+
+ The second element of the second row.
+
+
+
+ The third element of the second row.
+
+
+
+ The fourth element of the second row.
+
+
+
+ The first element of the third row.
+
+
+
+ The second element of the third row.
+
+
+
+ The third element of the third row.
+
+
+
+ The fourth element of the third row.
+
+
+
+ The first element of the fourth row.
+
+
+
+ The second element of the fourth row.
+
+
+
+ The third element of the fourth row.
+
+
+
+ The fourth element of the fourth row.
+
+
+
+ Returns the matrix that results from multiplying two matrices together.
+ The first matrix.
+ The second matrix.
+ The product matrix.
+
+
+ Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.
+ The matrix to scale.
+ The scaling value to use.
+ The scaled matrix.
+
+
+ Negates the specified matrix by multiplying all its values by -1.
+ The matrix to negate.
+ The negated matrix.
+
+
+ Adds each element in one matrix with its corresponding element in a second matrix.
+ The first matrix.
+ The second matrix.
+ The matrix that contains the summed values.
+
+
+ Returns a value that indicates whether the specified matrices are equal.
+ The first matrix to compare.
+ The second matrix to care
+ true if value1 and value2 are equal; otherwise, false.
+
+
+ Returns a value that indicates whether the specified matrices are not equal.
+ The first matrix to compare.
+ The second matrix to compare.
+ true if value1 and value2 are not equal; otherwise, false.
+
+
+ Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.
+ The matrix to scale.
+ The scaling value to use.
+ The scaled matrix.
+
+
+ Returns the matrix that results from multiplying two matrices together.
+ The first matrix.
+ The second matrix.
+ The product matrix.
+
+
+ Subtracts each element in a second matrix from its corresponding element in a first matrix.
+ The first matrix.
+ The second matrix.
+ The matrix containing the values that result from subtracting each element in value2 from its corresponding element in value1.
+
+
+ Negates the specified matrix by multiplying all its values by -1.
+ The matrix to negate.
+ The negated matrix.
+
+
+ Subtracts each element in a second matrix from its corresponding element in a first matrix.
+ The first matrix.
+ The second matrix.
+ The matrix containing the values that result from subtracting each element in value2 from its corresponding element in value1.
+
+
+ Returns a string that represents this matrix.
+ The string representation of this matrix.
+
+
+ Transforms the specified matrix by applying the specified Quaternion rotation.
+ The matrix to transform.
+ The rotation t apply.
+ The transformed matrix.
+
+
+ Gets or sets the translation component of this matrix.
+ The translation component of the current instance.
+
+
+ Transposes the rows and columns of a matrix.
+ The matrix to transpose.
+ The transposed matrix.
+
+
+ Represents a three-dimensional plane.
+
+
+ Creates a object from a specified four-dimensional vector.
+ A vector whose first three elements describe the normal vector, and whose defines the distance along that normal from the origin.
+
+
+ Creates a object from a specified normal and the distance along the normal from the origin.
+ The plane's normal vector.
+ The plane's distance from the origin along its normal vector.
+
+
+ Creates a object from the X, Y, and Z components of its normal, and its distance from the origin on that normal.
+ The X component of the normal.
+ The Y component of the normal.
+ The Z component of the normal.
+ The distance of the plane along its normal from the origin.
+
+
+ Creates a object that contains three specified points.
+ The first point defining the plane.
+ The second point defining the plane.
+ The third point defining the plane.
+ The plane containing the three points.
+
+
+ The distance of the plane along its normal from the origin.
+
+
+
+ Calculates the dot product of a plane and a 4-dimensional vector.
+ The plane.
+ The four-dimensional vector.
+ The dot product.
+
+
+ Returns the dot product of a specified three-dimensional vector and the normal vector of this plane plus the distance () value of the plane.
+ The plane.
+ The 3-dimensional vector.
+ The dot product.
+
+
+ Returns the dot product of a specified three-dimensional vector and the vector of this plane.
+ The plane.
+ The three-dimensional vector.
+ The dot product.
+
+
+ Returns a value that indicates whether this instance and a specified object are equal.
+ The object to compare with the current instance.
+ true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false.
+
+
+ Returns a value that indicates whether this instance and another plane object are equal.
+ The other plane.
+ true if the two planes are equal; otherwise, false.
+
+
+ Returns the hash code for this instance.
+ The hash code.
+
+
+ The normal vector of the plane.
+
+
+
+ Creates a new object whose normal vector is the source plane's normal vector normalized.
+ The source plane.
+ The normalized plane.
+
+
+ Returns a value that indicates whether two planes are equal.
+ The first plane to compare.
+ The second plane to compare.
+ true if value1 and value2 are equal; otherwise, false.
+
+
+ Returns a value that indicates whether two planes are not equal.
+ The first plane to compare.
+ The second plane to compare.
+ true if value1 and value2 are not equal; otherwise, false.
+
+
+ Returns the string representation of this plane object.
+ A string that represents this object.
+
+
+ Transforms a normalized plane by a 4x4 matrix.
+ The normalized plane to transform.
+ The transformation matrix to apply to plane.
+ The transformed plane.
+
+
+ Transforms a normalized plane by a Quaternion rotation.
+ The normalized plane to transform.
+ The Quaternion rotation to apply to the plane.
+ A new plane that results from applying the Quaternion rotation.
+
+
+ Represents a vector that is used to encode three-dimensional physical rotations.
+
+
+ Creates a quaternion from the specified vector and rotation parts.
+ The vector part of the quaternion.
+ The rotation part of the quaternion.
+
+
+ Constructs a quaternion from the specified components.
+ The value to assign to the X component of the quaternion.
+ The value to assign to the Y component of the quaternion.
+ The value to assign to the Z component of the quaternion.
+ The value to assign to the W component of the quaternion.
+
+
+ Adds each element in one quaternion with its corresponding element in a second quaternion.
+ The first quaternion.
+ The second quaternion.
+ The quaternion that contains the summed values of value1 and value2.
+
+
+ Concatenates two quaternions.
+ The first quaternion rotation in the series.
+ The second quaternion rotation in the series.
+ A new quaternion representing the concatenation of the value1 rotation followed by the value2 rotation.
+
+
+ Returns the conjugate of a specified quaternion.
+ The quaternion.
+ A new quaternion that is the conjugate of value.
+
+
+ Creates a quaternion from a vector and an angle to rotate about the vector.
+ The vector to rotate around.
+ The angle, in radians, to rotate around the vector.
+ The newly created quaternion.
+
+
+ Creates a quaternion from the specified rotation matrix.
+ The rotation matrix.
+ The newly created quaternion.
+
+
+ Creates a new quaternion from the given yaw, pitch, and roll.
+ The yaw angle, in radians, around the Y axis.
+ The pitch angle, in radians, around the X axis.
+ The roll angle, in radians, around the Z axis.
+ The resulting quaternion.
+
+
+ Divides one quaternion by a second quaternion.
+ The dividend.
+ The divisor.
+ The quaternion that results from dividing value1 by value2.
+
+
+ Calculates the dot product of two quaternions.
+ The first quaternion.
+ The second quaternion.
+ The dot product.
+
+
+ Returns a value that indicates whether this instance and another quaternion are equal.
+ The other quaternion.
+ true if the two quaternions are equal; otherwise, false.
+
+
+ Returns a value that indicates whether this instance and a specified object are equal.
+ The object to compare with the current instance.
+ true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false.
+
+
+ Returns the hash code for this instance.
+ The hash code.
+
+
+ Gets a quaternion that represents no rotation.
+ A quaternion whose values are (0, 0, 0, 1).
+
+
+ Returns the inverse of a quaternion.
+ The quaternion.
+ The inverted quaternion.
+
+
+ Gets a value that indicates whether the current instance is the identity quaternion.
+ true if the current instance is the identity quaternion; otherwise, false.
+
+
+ Calculates the length of the quaternion.
+ The computed length of the quaternion.
+
+
+ Calculates the squared length of the quaternion.
+ The length squared of the quaternion.
+
+
+ Performs a linear interpolation between two quaternions based on a value that specifies the weighting of the second quaternion.
+ The first quaternion.
+ The second quaternion.
+ The relative weight of quaternion2 in the interpolation.
+ The interpolated quaternion.
+
+
+ Returns the quaternion that results from multiplying two quaternions together.
+ The first quaternion.
+ The second quaternion.
+ The product quaternion.
+
+
+ Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.
+ The source quaternion.
+ The scalar value.
+ The scaled quaternion.
+
+
+ Reverses the sign of each component of the quaternion.
+ The quaternion to negate.
+ The negated quaternion.
+
+
+ Divides each component of a specified by its length.
+ The quaternion to normalize.
+ The normalized quaternion.
+
+
+ Adds each element in one quaternion with its corresponding element in a second quaternion.
+ The first quaternion.
+ The second quaternion.
+ The quaternion that contains the summed values of value1 and value2.
+
+
+ Divides one quaternion by a second quaternion.
+ The dividend.
+ The divisor.
+ The quaternion that results from dividing value1 by value2.
+
+
+ Returns a value that indicates whether two quaternions are equal.
+ The first quaternion to compare.
+ The second quaternion to compare.
+ true if the two quaternions are equal; otherwise, false.
+
+
+ Returns a value that indicates whether two quaternions are not equal.
+ The first quaternion to compare.
+ The second quaternion to compare.
+ true if value1 and value2 are not equal; otherwise, false.
+
+
+ Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.
+ The source quaternion.
+ The scalar value.
+ The scaled quaternion.
+
+
+ Returns the quaternion that results from multiplying two quaternions together.
+ The first quaternion.
+ The second quaternion.
+ The product quaternion.
+
+
+ Subtracts each element in a second quaternion from its corresponding element in a first quaternion.
+ The first quaternion.
+ The second quaternion.
+ The quaternion containing the values that result from subtracting each element in value2 from its corresponding element in value1.
+
+
+ Reverses the sign of each component of the quaternion.
+ The quaternion to negate.
+ The negated quaternion.
+
+
+ Interpolates between two quaternions, using spherical linear interpolation.
+ The first quaternion.
+ The second quaternion.
+ The relative weight of the second quaternion in the interpolation.
+ The interpolated quaternion.
+
+
+ Subtracts each element in a second quaternion from its corresponding element in a first quaternion.
+ The first quaternion.
+ The second quaternion.
+ The quaternion containing the values that result from subtracting each element in value2 from its corresponding element in value1.
+
+
+ Returns a string that represents this quaternion.
+ The string representation of this quaternion.
+
+
+ The rotation component of the quaternion.
+
+
+
+ The X value of the vector component of the quaternion.
+
+
+
+ The Y value of the vector component of the quaternion.
+
+
+
+ The Z value of the vector component of the quaternion.
+
+
+
+ Represents a single vector of a specified numeric type that is suitable for low-level optimization of parallel algorithms.
+ The vector type. T can be any primitive numeric type.
+
+
+ Creates a vector whose components are of a specified type.
+ The numeric type that defines the type of the components in the vector.
+
+
+ Creates a vector from a specified array.
+ A numeric array.
+ values is null.
+
+
+ Creates a vector from a specified array starting at a specified index position.
+ A numeric array.
+ The starting index position from which to create the vector.
+ values is null.
+ index is less than zero.
+ -or-
+ The length of values minus index is less than .
+
+
+ Copies the vector instance to a specified destination array.
+ The array to receive a copy of the vector values.
+ destination is null.
+ The number of elements in the current vector is greater than the number of elements available in the destination array.
+
+
+ Copies the vector instance to a specified destination array starting at a specified index position.
+ The array to receive a copy of the vector values.
+ The starting index in destination at which to begin the copy operation.
+ destination is null.
+ The number of elements in the current instance is greater than the number of elements available from startIndex to the end of the destination array.
+ index is less than zero or greater than the last index in destination.
+
+
+ Returns the number of elements stored in the vector.
+ The number of elements stored in the vector.
+ Access to the property getter via reflection is not supported.
+
+
+ Returns a value that indicates whether this instance is equal to a specified vector.
+ The vector to compare with this instance.
+ true if the current instance and other are equal; otherwise, false.
+
+
+ Returns a value that indicates whether this instance is equal to a specified object.
+ The object to compare with this instance.
+ true if the current instance and obj are equal; otherwise, false. The method returns false if obj is null, or if obj is a vector of a different type than the current instance.
+
+
+ Returns the hash code for this instance.
+ The hash code.
+
+
+ Gets the element at a specified index.
+ The index of the element to return.
+ The element at index index.
+ index is less than zero.
+ -or-
+ index is greater than or equal to .
+
+
+ Returns a vector containing all ones.
+ A vector containing all ones.
+
+
+ Adds two vectors together.
+ The first vector to add.
+ The second vector to add.
+ The summed vector.
+
+
+ Returns a new vector by performing a bitwise And operation on each of the elements in two vectors.
+ The first vector.
+ The second vector.
+ The vector that results from the bitwise And of left and right.
+
+
+ Returns a new vector by performing a bitwise Or operation on each of the elements in two vectors.
+ The first vector.
+ The second vector.
+ The vector that results from the bitwise Or of the elements in left and right.
+
+
+ Divides the first vector by the second.
+ The first vector.
+ The second vector.
+ The vector that results from dividing left by right.
+
+
+ Returns a value that indicates whether each pair of elements in two specified vectors are equal.
+ The first vector to compare.
+ The second vector to compare.
+ true if left and right are equal; otherwise, false.
+
+
+ Returns a new vector by performing a bitwise XOr operation on each of the elements in two vectors.
+ The first vector.
+ The second vector.
+ The vector that results from the bitwise XOr of the elements in left and right.
+
+
+ Reinterprets the bits of the specified vector into a vector of type .
+ The vector to reinterpret.
+ The reinterpreted vector.
+
+
+ Reinterprets the bits of the specified vector into a vector of type .
+ The vector to reinterpret.
+ The reinterpreted vector.
+
+
+ Reinterprets the bits of the specified vector into a vector of type .
+ The vector to reinterpret.
+ The reinterpreted vector.
+
+
+ Reinterprets the bits of the specified vector into a vector of type .
+ The vector to reinterpret.
+ The reinterpreted vector.
+
+
+ Reinterprets the bits of the specified vector into a vector of type .
+ The vector to reinterpret.
+ The reinterpreted vector.
+
+
+ Reinterprets the bits of the specified vector into a vector of type .
+ The vector to reinterpret.
+ The reinterpreted vector.
+
+
+ Reinterprets the bits of the specified vector into a vector of type .
+ The vector to reinterpret.
+ The reinterpreted vector.
+
+
+ Reinterprets the bits of the specified vector into a vector of type .
+ The vector to reinterpret.
+ The reinterpreted vector.
+
+
+ Reinterprets the bits of the specified vector into a vector of type .
+ The vector to reinterpret.
+ The reinterpreted vector.
+
+
+ Reinterprets the bits of the specified vector into a vector of type .
+ The vector to reinterpret.
+ The reinterpreted vector.
+
+
+ Returns a value that indicates whether any single pair of elements in the specified vectors is equal.
+ The first vector to compare.
+ The second vector to compare.
+ true if any element pairs in left and right are equal. false if no element pairs are equal.
+
+
+ Multiplies two vectors together.
+ The first vector.
+ The second vector.
+ The product vector.
+
+
+ Multiplies a vector by a specified scalar value.
+ The source vector.
+ A scalar value.
+ The scaled vector.
+
+
+ Multiplies a vector by the given scalar.
+ The scalar value.
+ The source vector.
+ The scaled vector.
+
+
+ Returns a new vector whose elements are obtained by taking the one's complement of a specified vector's elements.
+ The source vector.
+ The one's complement vector.
+
+
+ Subtracts the second vector from the first.
+ The first vector.
+ The second vector.
+ The vector that results from subtracting right from left.
+
+
+ Negates a given vector.
+ The vector to negate.
+ The negated vector.
+
+
+ Returns the string representation of this vector using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.
+ A or that defines the format of individual elements.
+ A format provider that supplies culture-specific formatting information.
+ The string representation of the current instance.
+
+
+ Returns the string representation of this vector using default formatting.
+ The string representation of this vector.
+
+
+ Returns the string representation of this vector using the specified format string to format individual elements.
+ A or that defines the format of individual elements.
+ The string representation of the current instance.
+
+
+ Returns a vector containing all zeroes.
+ A vector containing all zeroes.
+
+
+ Provides a collection of static convenience methods for creating, manipulating, combining, and converting generic vectors.
+
+
+ Returns a new vector whose elements are the absolute values of the given vector's elements.
+ The source vector.
+ The vector type. T can be any primitive numeric type.
+ The absolute value vector.
+
+
+ Returns a new vector whose values are the sum of each pair of elements from two given vectors.
+ The first vector.
+ The second vector.
+ The vector type. T can be any primitive numeric type.
+ The summed vector.
+
+
+ Returns a new vector by performing a bitwise And Not operation on each pair of corresponding elements in two vectors.
+ The first vector.
+ The second vector.
+ The vector type. T can be any primitive numeric type.
+ The resulting vector.
+
+
+ Reinterprets the bits of a specified vector into those of a vector of unsigned bytes.
+ The source vector.
+ The vector type. T can be any primitive numeric type.
+ The reinterpreted vector.
+
+
+ Reinterprets the bits of a specified vector into those of a double-precision floating-point vector.
+ The source vector.
+ The vector type. T can be any primitive numeric type.
+ The reinterpreted vector.
+
+
+ Reinterprets the bits of a specified vector into those of a vector of 16-bit integers.
+ The source vector.
+ The vector type. T can be any primitive numeric type.
+ The reinterpreted vector.
+
+
+ Reinterprets the bits of a specified vector into those of a vector of integers.
+ The source vector.
+ The vector type. T can be any primitive numeric type.
+ The reinterpreted vector.
+
+
+ Reinterprets the bits of a specified vector into those of a vector of long integers.
+ The source vector.
+ The vector type. T can be any primitive numeric type.
+ The reinterpreted vector.
+
+
+ Reinterprets the bits of a specified vector into those of a vector of signed bytes.
+ The source vector.
+ The vector type. T can be any primitive numeric type.
+ The reinterpreted vector.
+
+
+ Reinterprets the bits of a specified vector into those of a single-precision floating-point vector.
+ The source vector.
+ The vector type. T can be any primitive numeric type.
+ The reinterpreted vector.
+
+
+ Reinterprets the bits of a specified vector into those of a vector of unsigned 16-bit integers.
+ The source vector.
+ The vector type. T can be any primitive numeric type.
+ The reinterpreted vector.
+
+
+ Reinterprets the bits of a specified vector into those of a vector of unsigned integers.
+ The source vector.
+ The vector type. T can be any primitive numeric type.
+ The reinterpreted vector.
+
+
+ Reinterprets the bits of a specified vector into those of a vector of unsigned long integers.
+ The source vector.
+ The vector type. T can be any primitive numeric type.
+ The reinterpreted vector.
+
+
+ Returns a new vector by performing a bitwise And operation on each pair of elements in two vectors.
+ The first vector.
+ The second vector.
+ The vector type. T can be any primitive numeric type.
+ The resulting vector.
+
+
+ Returns a new vector by performing a bitwise Or operation on each pair of elements in two vectors.
+ The first vector.
+ The second vector.
+ The vector type. T can be any primitive numeric type.
+ The resulting vector.
+
+
+ Creates a new single-precision vector with elements selected between two specified single-precision source vectors based on an integral mask vector.
+ The integral mask vector used to drive selection.
+ The first source vector.
+ The second source vector.
+ The new vector with elements selected based on the mask.
+
+
+ Creates a new double-precision vector with elements selected between two specified double-precision source vectors based on an integral mask vector.
+ The integral mask vector used to drive selection.
+ The first source vector.
+ The second source vector.
+ The new vector with elements selected based on the mask.
+
+
+ Creates a new vector of a specified type with elements selected between two specified source vectors of the same type based on an integral mask vector.
+ The integral mask vector used to drive selection.
+ The first source vector.
+ The second source vector.
+ The vector type. T can be any primitive numeric type.
+ The new vector with elements selected based on the mask.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Returns a new vector whose values are the result of dividing the first vector's elements by the corresponding elements in the second vector.
+ The first vector.
+ The second vector.
+ The vector type. T can be any primitive numeric type.
+ The divided vector.
+
+
+ Returns the dot product of two vectors.
+ The first vector.
+ The second vector.
+ The vector type. T can be any primitive numeric type.
+ The dot product.
+
+
+ Returns a new integral vector whose elements signal whether the elements in two specified double-precision vectors are equal.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting integral vector.
+
+
+ Returns a new integral vector whose elements signal whether the elements in two specified integral vectors are equal.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting integral vector.
+
+
+ Returns a new vector whose elements signal whether the elements in two specified long integer vectors are equal.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting long integer vector.
+
+
+ Returns a new integral vector whose elements signal whether the elements in two specified single-precision vectors are equal.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting integral vector.
+
+
+ Returns a new vector of a specified type whose elements signal whether the elements in two specified vectors of the same type are equal.
+ The first vector to compare.
+ The second vector to compare.
+ The vector type. T can be any primitive numeric type.
+ The resulting vector.
+
+
+ Returns a value that indicates whether each pair of elements in the given vectors is equal.
+ The first vector to compare.
+ The second vector to compare.
+ The vector type. T can be any primitive numeric type.
+ true if all elements in left and right are equal; otherwise, false.
+
+
+ Returns a value that indicates whether any single pair of elements in the given vectors is equal.
+ The first vector to compare.
+ The second vector to compare.
+ The vector type. T can be any primitive numeric type.
+ true if any element pair in left and right is equal; otherwise, false.
+
+
+ Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are greater than their corresponding elements in a second double-precision floating-point vector.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting integral vector.
+
+
+ Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than their corresponding elements in a second integral vector.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting integral vector.
+
+
+ Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than their corresponding elements in a second long integer vector.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting long integer vector.
+
+
+ Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are greater than their corresponding elements in a second single-precision floating-point vector.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting integral vector.
+
+
+ Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than their corresponding elements in the second vector of the same time.
+ The first vector to compare.
+ The second vector to compare.
+ The vector type. T can be any primitive numeric type.
+ The resulting vector.
+
+
+ Returns a value that indicates whether all elements in the first vector are greater than the corresponding elements in the second vector.
+ The first vector to compare.
+ The second vector to compare.
+ The vector type. T can be any primitive numeric type.
+ true if all elements in left are greater than the corresponding elements in right; otherwise, false.
+
+
+ Returns a value that indicates whether any element in the first vector is greater than the corresponding element in the second vector.
+ The first vector to compare.
+ The second vector to compare.
+ The vector type. T can be any primitive numeric type.
+ true if any element in left is greater than the corresponding element in right; otherwise, false.
+
+
+ Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the single-precision floating-point second vector.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting integral vector.
+
+
+ Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than or equal to their corresponding elements in the second long integer vector.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting long integer vector.
+
+
+ Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than or equal to their corresponding elements in the second integral vector.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting integral vector.
+
+
+ Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the second double-precision floating-point vector.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting integral vector.
+
+
+ Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than or equal to their corresponding elements in the second vector of the same type.
+ The first vector to compare.
+ The second vector to compare.
+ The vector type. T can be any primitive numeric type.
+ The resulting vector.
+
+
+ Returns a value that indicates whether all elements in the first vector are greater than or equal to all the corresponding elements in the second vector.
+ The first vector to compare.
+ The second vector to compare.
+ The vector type. T can be any primitive numeric type.
+ true if all elements in left are greater than or equal to the corresponding elements in right; otherwise, false.
+
+
+ Returns a value that indicates whether any element in the first vector is greater than or equal to the corresponding element in the second vector.
+ The first vector to compare.
+ The second vector to compare.
+ The vector type. T can be any primitive numeric type.
+ true if any element in left is greater than or equal to the corresponding element in right; otherwise, false.
+
+
+ Gets a value that indicates whether vector operations are subject to hardware acceleration through JIT intrinsic support.
+ true if vector operations are subject to hardware acceleration; otherwise, false.
+
+
+ Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than their corresponding elements in a second double-precision floating-point vector.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting integral vector.
+
+
+ Returns a new integral vector whose elements signal whether the elements in one integral vector are less than their corresponding elements in a second integral vector.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting integral vector
+
+
+ Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less than their corresponding elements in a second long integer vector.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting long integer vector.
+
+
+ Returns a new integral vector whose elements signal whether the elements in one single-precision vector are less than their corresponding elements in a second single-precision vector.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting integral vector.
+
+
+ Returns a new vector of a specified type whose elements signal whether the elements in one vector are less than their corresponding elements in the second vector.
+ The first vector to compare.
+ The second vector to compare.
+ The vector type. T can be any primitive numeric type.
+ The resulting vector.
+
+
+ Returns a value that indicates whether all of the elements in the first vector are less than their corresponding elements in the second vector.
+ The first vector to compare.
+ The second vector to compare.
+ The vector type. T can be any primitive numeric type.
+ true if all of the elements in left are less than the corresponding elements in right; otherwise, false.
+
+
+ Returns a value that indicates whether any element in the first vector is less than the corresponding element in the second vector.
+ The first vector to compare.
+ The second vector to compare.
+ The vector type. T can be any primitive numeric type.
+ true if any element in left is less than the corresponding element in right; otherwise, false.
+
+
+ Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than or equal to their corresponding elements in a second double-precision floating-point vector.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting integral vector.
+
+
+ Returns a new integral vector whose elements signal whether the elements in one integral vector are less than or equal to their corresponding elements in a second integral vector.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting integral vector.
+
+
+ Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less or equal to their corresponding elements in a second long integer vector.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting long integer vector.
+
+
+ Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are less than or equal to their corresponding elements in a second single-precision floating-point vector.
+ The first vector to compare.
+ The second vector to compare.
+ The resulting integral vector.
+
+
+ Returns a new vector whose elements signal whether the elements in one vector are less than or equal to their corresponding elements in the second vector.
+ The first vector to compare.
+ The second vector to compare.
+ The vector type. T can be any primitive numeric type.
+ The resulting vector.
+
+
+ Returns a value that indicates whether all elements in the first vector are less than or equal to their corresponding elements in the second vector.
+ The first vector to compare.
+ The second vector to compare.
+ The vector type. T can be any primitive numeric type.
+ true if all of the elements in left are less than or equal to the corresponding elements in right; otherwise, false.
+
+
+ Returns a value that indicates whether any element in the first vector is less than or equal to the corresponding element in the second vector.
+ The first vector to compare.
+ The second vector to compare.
+ The vector type. T can be any primitive numeric type.
+ true if any element in left is less than or equal to the corresponding element in right; otherwise, false.
+
+
+ Returns a new vector whose elements are the maximum of each pair of elements in the two given vectors.
+ The first vector to compare.
+ The second vector to compare.
+ The vector type. T can be any primitive numeric type.
+ The maximum vector.
+
+
+ Returns a new vector whose elements are the minimum of each pair of elements in the two given vectors.
+ The first vector to compare.
+ The second vector to compare.
+ The vector type. T can be any primitive numeric type.
+ The minimum vector.
+
+
+ Returns a new vector whose values are a scalar value multiplied by each of the values of a specified vector.
+ The scalar value.
+ The vector.
+ The vector type. T can be any primitive numeric type.
+ The scaled vector.
+
+
+ Returns a new vector whose values are the product of each pair of elements in two specified vectors.
+ The first vector.
+ The second vector.
+ The vector type. T can be any primitive numeric type.
+ The product vector.
+
+
+ Returns a new vector whose values are the values of a specified vector each multiplied by a scalar value.
+ The vector.
+ The scalar value.
+ The vector type. T can be any primitive numeric type.
+ The scaled vector.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Returns a new vector whose elements are the negation of the corresponding element in the specified vector.
+ The source vector.
+ The vector type. T can be any primitive numeric type.
+ The negated vector.
+
+
+ Returns a new vector whose elements are obtained by taking the one's complement of a specified vector's elements.
+ The source vector.
+ The vector type. T can be any primitive numeric type.
+ The resulting vector.
+
+
+ Returns a new vector whose elements are the square roots of a specified vector's elements.
+ The source vector.
+ The vector type. T can be any primitive numeric type.
+ The square root vector.
+
+
+ Returns a new vector whose values are the difference between the elements in the second vector and their corresponding elements in the first vector.
+ The first vector.
+ The second vector.
+ The vector type. T can be any primitive numeric type.
+ The difference vector.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Returns a new vector by performing a bitwise exclusive Or (XOr) operation on each pair of elements in two vectors.
+ The first vector.
+ The second vector.
+ The vector type. T can be any primitive numeric type.
+ The resulting vector.
+
+
+ Represents a vector with two single-precision floating-point values.
+
+
+ Creates a new object whose two elements have the same value.
+ The value to assign to both elements.
+
+
+ Creates a vector whose elements have the specified values.
+ The value to assign to the field.
+ The value to assign to the field.
+
+
+ Returns a vector whose elements are the absolute values of each of the specified vector's elements.
+ A vector.
+ The absolute value vector.
+
+
+ Adds two vectors together.
+ The first vector to add.
+ The second vector to add.
+ The summed vector.
+
+
+ Restricts a vector between a minimum and a maximum value.
+ The vector to restrict.
+ The minimum value.
+ The maximum value.
+ The restricted vector.
+
+
+ Copies the elements of the vector to a specified array.
+ The destination array.
+ array is null.
+ The number of elements in the current instance is greater than in the array.
+ array is multidimensional.
+
+
+ Copies the elements of the vector to a specified array starting at a specified index position.
+ The destination array.
+ The index at which to copy the first element of the vector.
+ array is null.
+ The number of elements in the current instance is greater than in the array.
+ index is less than zero.
+ -or-
+ index is greater than or equal to the array length.
+ array is multidimensional.
+
+
+ Computes the Euclidean distance between the two given points.
+ The first point.
+ The second point.
+ The distance.
+
+
+ Returns the Euclidean distance squared between two specified points.
+ The first point.
+ The second point.
+ The distance squared.
+
+
+ Divides the first vector by the second.
+ The first vector.
+ The second vector.
+ The vector resulting from the division.
+
+
+ Divides the specified vector by a specified scalar value.
+ The vector.
+ The scalar value.
+ The vector that results from the division.
+
+
+ Returns the dot product of two vectors.
+ The first vector.
+ The second vector.
+ The dot product.
+
+
+ Returns a value that indicates whether this instance and a specified object are equal.
+ The object to compare with the current instance.
+ true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false.
+
+
+ Returns a value that indicates whether this instance and another vector are equal.
+ The other vector.
+ true if the two vectors are equal; otherwise, false.
+
+
+ Returns the hash code for this instance.
+ The hash code.
+
+
+ Returns the length of the vector.
+ The vector's length.
+
+
+ Returns the length of the vector squared.
+ The vector's length squared.
+
+
+ Performs a linear interpolation between two vectors based on the given weighting.
+ The first vector.
+ The second vector.
+ A value between 0 and 1 that indicates the weight of value2.
+ The interpolated vector.
+
+
+ Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.
+ The first vector.
+ The second vector.
+ The maximized vector.
+
+
+ Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.
+ The first vector.
+ The second vector.
+ The minimized vector.
+
+
+ Multiplies two vectors together.
+ The first vector.
+ The second vector.
+ The product vector.
+
+
+ Multiplies a vector by a specified scalar.
+ The vector to multiply.
+ The scalar value.
+ The scaled vector.
+
+
+ Multiplies a scalar value by a specified vector.
+ The scaled value.
+ The vector.
+ The scaled vector.
+
+
+ Negates a specified vector.
+ The vector to negate.
+ The negated vector.
+
+
+ Returns a vector with the same direction as the specified vector, but with a length of one.
+ The vector to normalize.
+ The normalized vector.
+
+
+ Gets a vector whose 2 elements are equal to one.
+ A vector whose two elements are equal to one (that is, it returns the vector (1,1).
+
+
+ Adds two vectors together.
+ The first vector to add.
+ The second vector to add.
+ The summed vector.
+
+
+ Divides the first vector by the second.
+ The first vector.
+ The second vector.
+ The vector that results from dividing left by right.
+
+
+ Divides the specified vector by a specified scalar value.
+ The vector.
+ The scalar value.
+ The result of the division.
+
+
+ Returns a value that indicates whether each pair of elements in two specified vectors is equal.
+ The first vector to compare.
+ The second vector to compare.
+ true if left and right are equal; otherwise, false.
+
+
+ Returns a value that indicates whether two specified vectors are not equal.
+ The first vector to compare.
+ The second vector to compare.
+ true if left and right are not equal; otherwise, false.
+
+
+ Multiplies two vectors together.
+ The first vector.
+ The second vector.
+ The product vector.
+
+
+ Multiples the specified vector by the specified scalar value.
+ The vector.
+ The scalar value.
+ The scaled vector.
+
+
+ Multiples the scalar value by the specified vector.
+ The vector.
+ The scalar value.
+ The scaled vector.
+
+
+ Subtracts the second vector from the first.
+ The first vector.
+ The second vector.
+ The vector that results from subtracting right from left.
+
+
+ Negates the specified vector.
+ The vector to negate.
+ The negated vector.
+
+
+ Returns the reflection of a vector off a surface that has the specified normal.
+ The source vector.
+ The normal of the surface being reflected off.
+ The reflected vector.
+
+
+ Returns a vector whose elements are the square root of each of a specified vector's elements.
+ A vector.
+ The square root vector.
+
+
+ Subtracts the second vector from the first.
+ The first vector.
+ The second vector.
+ The difference vector.
+
+
+ Returns the string representation of the current instance using default formatting.
+ The string representation of the current instance.
+
+
+ Returns the string representation of the current instance using the specified format string to format individual elements.
+ A or that defines the format of individual elements.
+ The string representation of the current instance.
+
+
+ Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.
+ A or that defines the format of individual elements.
+ A format provider that supplies culture-specific formatting information.
+ The string representation of the current instance.
+
+
+ Transforms a vector by a specified 3x2 matrix.
+ The vector to transform.
+ The transformation matrix.
+ The transformed vector.
+
+
+ Transforms a vector by a specified 4x4 matrix.
+ The vector to transform.
+ The transformation matrix.
+ The transformed vector.
+
+
+ Transforms a vector by the specified Quaternion rotation value.
+ The vector to rotate.
+ The rotation to apply.
+ The transformed vector.
+
+
+ Transforms a vector normal by the given 3x2 matrix.
+ The source vector.
+ The matrix.
+ The transformed vector.
+
+
+ Transforms a vector normal by the given 4x4 matrix.
+ The source vector.
+ The matrix.
+ The transformed vector.
+
+
+ Gets the vector (1,0).
+ The vector (1,0).
+
+
+ Gets the vector (0,1).
+ The vector (0,1).
+
+
+ The X component of the vector.
+
+
+
+ The Y component of the vector.
+
+
+
+ Returns a vector whose 2 elements are equal to zero.
+ A vector whose two elements are equal to zero (that is, it returns the vector (0,0).
+
+
+ Represents a vector with three single-precision floating-point values.
+
+
+ Creates a new object whose three elements have the same value.
+ The value to assign to all three elements.
+
+
+ Creates a new object from the specified object and the specified value.
+ The vector with two elements.
+ The additional value to assign to the field.
+
+
+ Creates a vector whose elements have the specified values.
+ The value to assign to the field.
+ The value to assign to the field.
+ The value to assign to the field.
+
+
+ Returns a vector whose elements are the absolute values of each of the specified vector's elements.
+ A vector.
+ The absolute value vector.
+
+
+ Adds two vectors together.
+ The first vector to add.
+ The second vector to add.
+ The summed vector.
+
+
+ Restricts a vector between a minimum and a maximum value.
+ The vector to restrict.
+ The minimum value.
+ The maximum value.
+ The restricted vector.
+
+
+ Copies the elements of the vector to a specified array.
+ The destination array.
+ array is null.
+ The number of elements in the current instance is greater than in the array.
+ array is multidimensional.
+
+
+ Copies the elements of the vector to a specified array starting at a specified index position.
+ The destination array.
+ The index at which to copy the first element of the vector.
+ array is null.
+ The number of elements in the current instance is greater than in the array.
+ index is less than zero.
+ -or-
+ index is greater than or equal to the array length.
+ array is multidimensional.
+
+
+ Computes the cross product of two vectors.
+ The first vector.
+ The second vector.
+ The cross product.
+
+
+ Computes the Euclidean distance between the two given points.
+ The first point.
+ The second point.
+ The distance.
+
+
+ Returns the Euclidean distance squared between two specified points.
+ The first point.
+ The second point.
+ The distance squared.
+
+
+ Divides the specified vector by a specified scalar value.
+ The vector.
+ The scalar value.
+ The vector that results from the division.
+
+
+ Divides the first vector by the second.
+ The first vector.
+ The second vector.
+ The vector resulting from the division.
+
+
+ Returns the dot product of two vectors.
+ The first vector.
+ The second vector.
+ The dot product.
+
+
+ Returns a value that indicates whether this instance and another vector are equal.
+ The other vector.
+ true if the two vectors are equal; otherwise, false.
+
+
+ Returns a value that indicates whether this instance and a specified object are equal.
+ The object to compare with the current instance.
+ true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false.
+
+
+ Returns the hash code for this instance.
+ The hash code.
+
+
+ Returns the length of this vector object.
+ The vector's length.
+
+
+ Returns the length of the vector squared.
+ The vector's length squared.
+
+
+ Performs a linear interpolation between two vectors based on the given weighting.
+ The first vector.
+ The second vector.
+ A value between 0 and 1 that indicates the weight of value2.
+ The interpolated vector.
+
+
+ Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.
+ The first vector.
+ The second vector.
+ The maximized vector.
+
+
+ Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.
+ The first vector.
+ The second vector.
+ The minimized vector.
+
+
+ Multiplies a scalar value by a specified vector.
+ The scaled value.
+ The vector.
+ The scaled vector.
+
+
+ Multiplies two vectors together.
+ The first vector.
+ The second vector.
+ The product vector.
+
+
+ Multiplies a vector by a specified scalar.
+ The vector to multiply.
+ The scalar value.
+ The scaled vector.
+
+
+ Negates a specified vector.
+ The vector to negate.
+ The negated vector.
+
+
+ Returns a vector with the same direction as the specified vector, but with a length of one.
+ The vector to normalize.
+ The normalized vector.
+
+
+ Gets a vector whose 3 elements are equal to one.
+ A vector whose three elements are equal to one (that is, it returns the vector (1,1,1).
+
+
+ Adds two vectors together.
+ The first vector to add.
+ The second vector to add.
+ The summed vector.
+
+
+ Divides the first vector by the second.
+ The first vector.
+ The second vector.
+ The vector that results from dividing left by right.
+
+
+ Divides the specified vector by a specified scalar value.
+ The vector.
+ The scalar value.
+ The result of the division.
+
+
+ Returns a value that indicates whether each pair of elements in two specified vectors is equal.
+ The first vector to compare.
+ The second vector to compare.
+ true if left and right are equal; otherwise, false.
+
+
+ Returns a value that indicates whether two specified vectors are not equal.
+ The first vector to compare.
+ The second vector to compare.
+ true if left and right are not equal; otherwise, false.
+
+
+ Multiplies two vectors together.
+ The first vector.
+ The second vector.
+ The product vector.
+
+
+ Multiples the specified vector by the specified scalar value.
+ The vector.
+ The scalar value.
+ The scaled vector.
+
+
+ Multiples the scalar value by the specified vector.
+ The vector.
+ The scalar value.
+ The scaled vector.
+
+
+ Subtracts the second vector from the first.
+ The first vector.
+ The second vector.
+ The vector that results from subtracting right from left.
+
+
+ Negates the specified vector.
+ The vector to negate.
+ The negated vector.
+
+
+ Returns the reflection of a vector off a surface that has the specified normal.
+ The source vector.
+ The normal of the surface being reflected off.
+ The reflected vector.
+
+
+ Returns a vector whose elements are the square root of each of a specified vector's elements.
+ A vector.
+ The square root vector.
+
+
+ Subtracts the second vector from the first.
+ The first vector.
+ The second vector.
+ The difference vector.
+
+
+ Returns the string representation of the current instance using default formatting.
+ The string representation of the current instance.
+
+
+ Returns the string representation of the current instance using the specified format string to format individual elements.
+ A or that defines the format of individual elements.
+ The string representation of the current instance.
+
+
+ Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.
+ A or that defines the format of individual elements.
+ A format provider that supplies culture-specific formatting information.
+ The string representation of the current instance.
+
+
+ Transforms a vector by a specified 4x4 matrix.
+ The vector to transform.
+ The transformation matrix.
+ The transformed vector.
+
+
+ Transforms a vector by the specified Quaternion rotation value.
+ The vector to rotate.
+ The rotation to apply.
+ The transformed vector.
+
+
+ Transforms a vector normal by the given 4x4 matrix.
+ The source vector.
+ The matrix.
+ The transformed vector.
+
+
+ Gets the vector (1,0,0).
+ The vector (1,0,0).
+
+
+ Gets the vector (0,1,0).
+ The vector (0,1,0)..
+
+
+ Gets the vector (0,0,1).
+ The vector (0,0,1).
+
+
+ The X component of the vector.
+
+
+
+ The Y component of the vector.
+
+
+
+ The Z component of the vector.
+
+
+
+ Gets a vector whose 3 elements are equal to zero.
+ A vector whose three elements are equal to zero (that is, it returns the vector (0,0,0).
+
+
+ Represents a vector with four single-precision floating-point values.
+
+
+ Creates a new object whose four elements have the same value.
+ The value to assign to all four elements.
+
+
+ Constructs a new object from the specified object and a W component.
+ The vector to use for the X, Y, and Z components.
+ The W component.
+
+
+ Creates a new object from the specified object and a Z and a W component.
+ The vector to use for the X and Y components.
+ The Z component.
+ The W component.
+
+
+ Creates a vector whose elements have the specified values.
+ The value to assign to the field.
+ The value to assign to the field.
+ The value to assign to the field.
+ The value to assign to the field.
+
+
+ Returns a vector whose elements are the absolute values of each of the specified vector's elements.
+ A vector.
+ The absolute value vector.
+
+
+ Adds two vectors together.
+ The first vector to add.
+ The second vector to add.
+ The summed vector.
+
+
+ Restricts a vector between a minimum and a maximum value.
+ The vector to restrict.
+ The minimum value.
+ The maximum value.
+ The restricted vector.
+
+
+ Copies the elements of the vector to a specified array.
+ The destination array.
+ array is null.
+ The number of elements in the current instance is greater than in the array.
+ array is multidimensional.
+
+
+ Copies the elements of the vector to a specified array starting at a specified index position.
+ The destination array.
+ The index at which to copy the first element of the vector.
+ array is null.
+ The number of elements in the current instance is greater than in the array.
+ index is less than zero.
+ -or-
+ index is greater than or equal to the array length.
+ array is multidimensional.
+
+
+ Computes the Euclidean distance between the two given points.
+ The first point.
+ The second point.
+ The distance.
+
+
+ Returns the Euclidean distance squared between two specified points.
+ The first point.
+ The second point.
+ The distance squared.
+
+
+ Divides the first vector by the second.
+ The first vector.
+ The second vector.
+ The vector resulting from the division.
+
+
+ Divides the specified vector by a specified scalar value.
+ The vector.
+ The scalar value.
+ The vector that results from the division.
+
+
+ Returns the dot product of two vectors.
+ The first vector.
+ The second vector.
+ The dot product.
+
+
+ Returns a value that indicates whether this instance and another vector are equal.
+ The other vector.
+ true if the two vectors are equal; otherwise, false.
+
+
+ Returns a value that indicates whether this instance and a specified object are equal.
+ The object to compare with the current instance.
+ true if the current instance and obj are equal; otherwise, false. If obj is null, the method returns false.
+
+
+ Returns the hash code for this instance.
+ The hash code.
+
+
+ Returns the length of this vector object.
+ The vector's length.
+
+
+ Returns the length of the vector squared.
+ The vector's length squared.
+
+
+ Performs a linear interpolation between two vectors based on the given weighting.
+ The first vector.
+ The second vector.
+ A value between 0 and 1 that indicates the weight of value2.
+ The interpolated vector.
+
+
+ Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.
+ The first vector.
+ The second vector.
+ The maximized vector.
+
+
+ Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.
+ The first vector.
+ The second vector.
+ The minimized vector.
+
+
+ Multiplies two vectors together.
+ The first vector.
+ The second vector.
+ The product vector.
+
+
+ Multiplies a vector by a specified scalar.
+ The vector to multiply.
+ The scalar value.
+ The scaled vector.
+
+
+ Multiplies a scalar value by a specified vector.
+ The scaled value.
+ The vector.
+ The scaled vector.
+
+
+ Negates a specified vector.
+ The vector to negate.
+ The negated vector.
+
+
+ Returns a vector with the same direction as the specified vector, but with a length of one.
+ The vector to normalize.
+ The normalized vector.
+
+
+ Gets a vector whose 4 elements are equal to one.
+ Returns .
+
+
+ Adds two vectors together.
+ The first vector to add.
+ The second vector to add.
+ The summed vector.
+
+
+ Divides the first vector by the second.
+ The first vector.
+ The second vector.
+ The vector that results from dividing left by right.
+
+
+ Divides the specified vector by a specified scalar value.
+ The vector.
+ The scalar value.
+ The result of the division.
+
+
+ Returns a value that indicates whether each pair of elements in two specified vectors is equal.
+ The first vector to compare.
+ The second vector to compare.
+ true if left and right are equal; otherwise, false.
+
+
+ Returns a value that indicates whether two specified vectors are not equal.
+ The first vector to compare.
+ The second vector to compare.
+ true if left and right are not equal; otherwise, false.
+
+
+ Multiplies two vectors together.
+ The first vector.
+ The second vector.
+ The product vector.
+
+
+ Multiples the specified vector by the specified scalar value.
+ The vector.
+ The scalar value.
+ The scaled vector.
+
+
+ Multiples the scalar value by the specified vector.
+ The vector.
+ The scalar value.
+ The scaled vector.
+
+
+ Subtracts the second vector from the first.
+ The first vector.
+ The second vector.
+ The vector that results from subtracting right from left.
+
+
+ Negates the specified vector.
+ The vector to negate.
+ The negated vector.
+
+
+ Returns a vector whose elements are the square root of each of a specified vector's elements.
+ A vector.
+ The square root vector.
+
+
+ Subtracts the second vector from the first.
+ The first vector.
+ The second vector.
+ The difference vector.
+
+
+ Returns the string representation of the current instance using default formatting.
+ The string representation of the current instance.
+
+
+ Returns the string representation of the current instance using the specified format string to format individual elements.
+ A or that defines the format of individual elements.
+ The string representation of the current instance.
+
+
+ Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.
+ A or that defines the format of individual elements.
+ A format provider that supplies culture-specific formatting information.
+ The string representation of the current instance.
+
+
+ Transforms a four-dimensional vector by the specified Quaternion rotation value.
+ The vector to rotate.
+ The rotation to apply.
+ The transformed vector.
+
+
+ Transforms a four-dimensional vector by a specified 4x4 matrix.
+ The vector to transform.
+ The transformation matrix.
+ The transformed vector.
+
+
+ Transforms a three-dimensional vector by the specified Quaternion rotation value.
+ The vector to rotate.
+ The rotation to apply.
+ The transformed vector.
+
+
+ Transforms a two-dimensional vector by a specified 4x4 matrix.
+ The vector to transform.
+ The transformation matrix.
+ The transformed vector.
+
+
+ Transforms a two-dimensional vector by the specified Quaternion rotation value.
+ The vector to rotate.
+ The rotation to apply.
+ The transformed vector.
+
+
+ Transforms a three-dimensional vector by a specified 4x4 matrix.
+ The vector to transform.
+ The transformation matrix.
+ The transformed vector.
+
+
+ Gets the vector (0,0,0,1).
+ The vector (0,0,0,1).
+
+
+ Gets the vector (1,0,0,0).
+ The vector (1,0,0,0).
+
+
+ Gets the vector (0,1,0,0).
+ The vector (0,1,0,0)..
+
+
+ Gets a vector whose 4 elements are equal to zero.
+ The vector (0,0,1,0).
+
+
+ The W component of the vector.
+
+
+
+ The X component of the vector.
+
+
+
+ The Y component of the vector.
+
+
+
+ The Z component of the vector.
+
+
+
+ Gets a vector whose 4 elements are equal to zero.
+ A vector whose four elements are equal to zero (that is, it returns the vector (0,0,0,0).
+
+
+
\ No newline at end of file
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Runtime.CompilerServices.Unsafe.dll b/SalesPacking_MES_API_Project/bin/Debug/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..c5ba4e4
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Runtime.CompilerServices.Unsafe.xml b/SalesPacking_MES_API_Project/bin/Debug/System.Runtime.CompilerServices.Unsafe.xml
new file mode 100644
index 0000000..9d79492
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/System.Runtime.CompilerServices.Unsafe.xml
@@ -0,0 +1,291 @@
+
+
+
+ System.Runtime.CompilerServices.Unsafe
+
+
+
+ Contains generic, low-level functionality for manipulating pointers.
+
+
+ Adds an element offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of offset to pointer.
+
+
+ Adds an element offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of offset to pointer.
+
+
+ Adds an element offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of offset to pointer.
+
+
+ Adds an element offset to the given void pointer.
+ The void pointer to add the offset to.
+ The offset to add.
+ The type of void pointer.
+ A new void pointer that reflects the addition of offset to the specified pointer.
+
+
+ Adds a byte offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of byte offset to pointer.
+
+
+ Adds a byte offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of byte offset to pointer.
+
+
+ Determines whether the specified references point to the same location.
+ The first reference to compare.
+ The second reference to compare.
+ The type of reference.
+
+ if and point to the same location; otherwise, .
+
+
+ Casts the given object to the specified type.
+ The object to cast.
+ The type which the object will be cast to.
+ The original object, casted to the given type.
+
+
+ Reinterprets the given reference as a reference to a value of type .
+ The reference to reinterpret.
+ The type of reference to reinterpret.
+ The desired type of the reference.
+ A reference to a value of type .
+
+
+ Returns a pointer to the given by-ref parameter.
+ The object whose pointer is obtained.
+ The type of object.
+ A pointer to the given value.
+
+
+ Reinterprets the given read-only reference as a reference.
+ The read-only reference to reinterpret.
+ The type of reference.
+ A reference to a value of type .
+
+
+ Reinterprets the given location as a reference to a value of type .
+ The location of the value to reference.
+ The type of the interpreted location.
+ A reference to a value of type .
+
+
+ Determines the byte offset from origin to target from the given references.
+ The reference to origin.
+ The reference to target.
+ The type of reference.
+ Byte offset from origin to target i.e. - .
+
+
+ Copies a value of type to the given location.
+ The location to copy to.
+ A pointer to the value to copy.
+ The type of value to copy.
+
+
+ Copies a value of type to the given location.
+ The location to copy to.
+ A reference to the value to copy.
+ The type of value to copy.
+
+
+ Copies bytes from the source address to the destination address.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Initializes a block of memory at the given location with a given initial value.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Returns a value that indicates whether a specified reference is greater than another specified reference.
+ The first value to compare.
+ The second value to compare.
+ The type of the reference.
+
+ if is greater than ; otherwise, .
+
+
+ Returns a value that indicates whether a specified reference is less than another specified reference.
+ The first value to compare.
+ The second value to compare.
+ The type of the reference.
+
+ if is less than ; otherwise, .
+
+
+ Determines if a given reference to a value of type is a null reference.
+ The reference to check.
+ The type of the reference.
+
+ if is a null reference; otherwise, .
+
+
+ Returns a reference to a value of type that is a null reference.
+ The type of the reference.
+ A reference to a value of type that is a null reference.
+
+
+ Reads a value of type from the given location.
+ The location to read from.
+ The type to read.
+ An object of type read from the given location.
+
+
+ Reads a value of type from the given location without assuming architecture dependent alignment of the addresses.
+ The location to read from.
+ The type to read.
+ An object of type read from the given location.
+
+
+ Reads a value of type from the given location without assuming architecture dependent alignment of the addresses.
+ The location to read from.
+ The type to read.
+ An object of type read from the given location.
+
+
+ Returns the size of an object of the given type parameter.
+ The type of object whose size is retrieved.
+ The size of an object of type .
+
+
+ Bypasses definite assignment rules for a given value.
+ The uninitialized object.
+ The type of the uninitialized object.
+
+
+ Subtracts an element offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subtraction of offset from pointer.
+
+
+ Subtracts an element offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subtraction of offset from pointer.
+
+
+ Subtracts an element offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subraction of offset from pointer.
+
+
+ Subtracts an element offset from the given void pointer.
+ The void pointer to subtract the offset from.
+ The offset to subtract.
+ The type of the void pointer.
+ A new void pointer that reflects the subtraction of offset from the specified pointer.
+
+
+ Subtracts a byte offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subtraction of byte offset from pointer.
+
+
+ Subtracts a byte offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subraction of byte offset from pointer.
+
+
+ Returns a to a boxed value.
+ The value to unbox.
+ The type to be unboxed.
+
+ is , and is a non-nullable value type.
+
+ is not a boxed value type.
+
+-or-
+
+ is not a boxed .
+
+ cannot be found.
+ A to the boxed value .
+
+
+ Writes a value of type to the given location.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type to the given location without assuming architecture dependent alignment of the addresses.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type to the given location without assuming architecture dependent alignment of the addresses.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+
\ No newline at end of file
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Text.Encodings.Web.dll b/SalesPacking_MES_API_Project/bin/Debug/System.Text.Encodings.Web.dll
new file mode 100644
index 0000000..3d16c7e
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/System.Text.Encodings.Web.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Text.Encodings.Web.xml b/SalesPacking_MES_API_Project/bin/Debug/System.Text.Encodings.Web.xml
new file mode 100644
index 0000000..ecf7979
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/System.Text.Encodings.Web.xml
@@ -0,0 +1,939 @@
+
+
+
+ System.Text.Encodings.Web
+
+
+
+ Represents an HTML character encoding.
+
+
+ Initializes a new instance of the class.
+
+
+ Creates a new instance of the HtmlEncoder class with the specified settings.
+ Settings that control how the instance encodes, primarily which characters to encode.
+
+ is .
+ A new instance of the class.
+
+
+ Creates a new instance of the HtmlEncoder class that specifies characters the encoder is allowed to not encode.
+ The set of characters that the encoder is allowed to not encode.
+
+ is .
+ A new instance of the class.
+
+
+ Gets a built-in instance of the class.
+ A built-in instance of the class.
+
+
+ Represents a JavaScript character encoding.
+
+
+ Initializes a new instance of the class.
+
+
+ Creates a new instance of JavaScriptEncoder class with the specified settings.
+ Settings that control how the instance encodes, primarily which characters to encode.
+
+ is .
+ A new instance of the class.
+
+
+ Creates a new instance of the JavaScriptEncoder class that specifies characters the encoder is allowed to not encode.
+ The set of characters that the encoder is allowed to not encode.
+
+ is .
+ A new instance of the class.
+
+
+ Gets a built-in instance of the class.
+ A built-in instance of the class.
+
+
+ Gets a built-in JavaScript encoder instance that is less strict about what is encoded.
+ A JavaScript encoder instance.
+
+
+ The base class of web encoders.
+
+
+ Initializes a new instance of the class.
+
+
+ Encodes characters from an array and writes them to a object.
+ The stream to which to write the encoded text.
+ The array of characters to encode.
+ The array index of the first character to encode.
+ The number of characters in the array to encode.
+
+ is .
+ The method failed. The encoder does not implement correctly.
+
+ is .
+
+ is out of range.
+
+ is out of range.
+
+
+ Encodes the specified string to a object.
+ The stream to which to write the encoded text.
+ The string to encode.
+
+
+ Encodes a substring and writes it to a object.
+ The stream to which to write the encoded text.
+ The string whose substring is to be encoded.
+ The index where the substring starts.
+ The number of characters in the substring.
+
+ is .
+ The method failed. The encoder does not implement correctly.
+
+ is .
+
+ is out of range.
+
+ is out of range.
+
+
+ Encodes the supplied characters.
+ A source buffer containing the characters to encode.
+ The destination buffer to which the encoded form of will be written.
+ The number of characters consumed from the buffer.
+ The number of characters written to the buffer.
+
+ to indicate there is no further source data that needs to be encoded; otherwise, .
+ An enumeration value that describes the result of the encoding operation.
+
+
+ Encodes the supplied string and returns the encoded text as a new string.
+ The string to encode.
+
+ is .
+ The method failed. The encoder does not implement correctly.
+ The encoded string.
+
+
+ Encodes the supplied UTF-8 text.
+ A source buffer containing the UTF-8 text to encode.
+ The destination buffer to which the encoded form of will be written.
+ The number of bytes consumed from the buffer.
+ The number of bytes written to the buffer.
+
+ to indicate there is no further source data that needs to be encoded; otherwise, .
+ A status code that describes the result of the encoding operation.
+
+
+ Finds the index of the first character to encode.
+ The text buffer to search.
+ The number of characters in .
+ The index of the first character to encode.
+
+
+ Finds the first element in a UTF-8 text input buffer that would be escaped by the current encoder instance.
+ The UTF-8 text input buffer to search.
+ The index of the first element in that would be escaped by the current encoder instance, or -1 if no data in requires escaping.
+
+
+ Encodes a Unicode scalar value and writes it to a buffer.
+ A Unicode scalar value.
+ A pointer to the buffer to which to write the encoded text.
+ The length of the destination in characters.
+ When the method returns, indicates the number of characters written to the .
+
+ if is too small to fit the encoded text; otherwise, returns .
+
+
+ Determines if a given Unicode scalar value will be encoded.
+ A Unicode scalar value.
+
+ if the value will be encoded by this encoder; otherwise, returns .
+
+
+ Gets the maximum number of characters that this encoder can generate for each input code point.
+ The maximum number of characters.
+
+
+ Represents a filter that allows only certain Unicode code points.
+
+
+ Instantiates an empty filter (allows no code points through by default).
+
+
+ Instantiates a filter by cloning the allowed list of another object.
+ The other object to be cloned.
+
+
+ Instantiates a filter where only the character ranges specified by are allowed by the filter.
+ The allowed character ranges.
+
+ is .
+
+
+ Allows the character specified by through the filter.
+ The allowed character.
+
+
+ Allows all characters specified by through the filter.
+ The allowed characters.
+
+ is .
+
+
+ Allows all code points specified by .
+ The allowed code points.
+
+ is .
+
+
+ Allows all characters specified by through the filter.
+ The range of characters to be allowed.
+
+ is .
+
+
+ Allows all characters specified by through the filter.
+ The ranges of characters to be allowed.
+
+ is .
+
+
+ Resets this object by disallowing all characters.
+
+
+ Disallows the character through the filter.
+ The disallowed character.
+
+
+ Disallows all characters specified by through the filter.
+ The disallowed characters.
+
+ is .
+
+
+ Disallows all characters specified by through the filter.
+ The range of characters to be disallowed.
+
+ is .
+
+
+ Disallows all characters specified by through the filter.
+ The ranges of characters to be disallowed.
+
+ is .
+
+
+ Gets an enumerator of all allowed code points.
+ The enumerator of allowed code points.
+
+
+ Represents a URL character encoding.
+
+
+ Initializes a new instance of the class.
+
+
+ Creates a new instance of UrlEncoder class with the specified settings.
+ Settings that control how the instance encodes, primarily which characters to encode.
+
+ is .
+ A new instance of the class.
+
+
+ Creates a new instance of the UrlEncoder class that specifies characters the encoder is allowed to not encode.
+ The set of characters that the encoder is allowed to not encode.
+
+ is .
+ A new instance of the class.
+
+
+ Gets a built-in instance of the class.
+ A built-in instance of the class.
+
+
+ Represents a contiguous range of Unicode code points.
+
+
+ Creates a new that includes a specified number of characters starting at a specified Unicode code point.
+ The first code point in the range.
+ The number of code points in the range.
+
+ is less than zero or greater than 0xFFFF.
+
+-or-
+
+ is less than zero.
+
+-or-
+
+ plus is greater than 0xFFFF.
+
+
+ Creates a new instance from a span of characters.
+ The first character in the range.
+ The last character in the range.
+
+ precedes .
+ A range that includes all characters between and .
+
+
+ Gets the first code point in the range represented by this instance.
+ The first code point in the range.
+
+
+ Gets the number of code points in the range represented by this instance.
+ The number of code points in the range.
+
+
+ Provides static properties that return predefined instances that correspond to blocks from the Unicode specification.
+
+
+ Gets a range that consists of the entire Basic Multilingual Plane (BMP), from U+0000 to U+FFFF).
+ A range that consists of the entire BMP.
+
+
+ Gets the Alphabetic Presentation Forms Unicode block (U+FB00-U+FB4F).
+ The Alphabetic Presentation Forms Unicode block (U+FB00-U+FB4F).
+
+
+ Gets the Arabic Unicode block (U+0600-U+06FF).
+ The Arabic Unicode block (U+0600-U+06FF).
+
+
+ Gets the Arabic Extended-A Unicode block (U+08A0-U+08FF).
+ The Arabic Extended-A Unicode block (U+08A0-U+08FF).
+
+
+ A corresponding to the 'Arabic Extended-B' Unicode block (U+0870..U+089F).
+
+
+ Gets the Arabic Presentation Forms-A Unicode block (U+FB50-U+FDFF).
+ The Arabic Presentation Forms-A Unicode block (U+FB50-U+FDFF).
+
+
+ Gets the Arabic Presentation Forms-B Unicode block (U+FE70-U+FEFF).
+ The Arabic Presentation Forms-B Unicode block (U+FE70-U+FEFF).
+
+
+ Gets the Arabic Supplement Unicode block (U+0750-U+077F).
+ The Arabic Supplement Unicode block (U+0750-U+077F).
+
+
+ Gets the Armenian Unicode block (U+0530-U+058F).
+ The Armenian Unicode block (U+0530-U+058F).
+
+
+ Gets the Arrows Unicode block (U+2190-U+21FF).
+ The Arrows Unicode block (U+2190-U+21FF).
+
+
+ Gets the Balinese Unicode block (U+1B00-U+1B7F).
+ The Balinese Unicode block (U+1B00-U+1B7F).
+
+
+ Gets the Bamum Unicode block (U+A6A0-U+A6FF).
+ The Bamum Unicode block (U+A6A0-U+A6FF).
+
+
+ Gets the Basic Latin Unicode block (U+0021-U+007F).
+ The Basic Latin Unicode block (U+0021-U+007F).
+
+
+ Gets the Batak Unicode block (U+1BC0-U+1BFF).
+ The Batak Unicode block (U+1BC0-U+1BFF).
+
+
+ Gets the Bengali Unicode block (U+0980-U+09FF).
+ The Bengali Unicode block (U+0980-U+09FF).
+
+
+ Gets the Block Elements Unicode block (U+2580-U+259F).
+ The Block Elements Unicode block (U+2580-U+259F).
+
+
+ Gets the Bopomofo Unicode block (U+3100-U+312F).
+ The Bopomofo Unicode block (U+3105-U+312F).
+
+
+ Gets the Bopomofo Extended Unicode block (U+31A0-U+31BF).
+ The Bopomofo Extended Unicode block (U+31A0-U+31BF).
+
+
+ Gets the Box Drawing Unicode block (U+2500-U+257F).
+ The Box Drawing Unicode block (U+2500-U+257F).
+
+
+ Gets the Braille Patterns Unicode block (U+2800-U+28FF).
+ The Braille Patterns Unicode block (U+2800-U+28FF).
+
+
+ Gets the Buginese Unicode block (U+1A00-U+1A1F).
+ The Buginese Unicode block (U+1A00-U+1A1F).
+
+
+ Gets the Buhid Unicode block (U+1740-U+175F).
+ The Buhid Unicode block (U+1740-U+175F).
+
+
+ Gets the Cham Unicode block (U+AA00-U+AA5F).
+ The Cham Unicode block (U+AA00-U+AA5F).
+
+
+ Gets the Cherokee Unicode block (U+13A0-U+13FF).
+ The Cherokee Unicode block (U+13A0-U+13FF).
+
+
+ Gets the Cherokee Supplement Unicode block (U+AB70-U+ABBF).
+ The Cherokee Supplement Unicode block (U+AB70-U+ABBF).
+
+
+ Gets the CJK Compatibility Unicode block (U+3300-U+33FF).
+ The CJK Compatibility Unicode block (U+3300-U+33FF).
+
+
+ Gets the CJK Compatibility Forms Unicode block (U+FE30-U+FE4F).
+ The CJK Compatibility Forms Unicode block (U+FE30-U+FE4F).
+
+
+ Gets the CJK Compatibility Ideographs Unicode block (U+F900-U+FAD9).
+ The CJK Compatibility Ideographs Unicode block (U+F900-U+FAD9).
+
+
+ Gets the CJK Radicals Supplement Unicode block (U+2E80-U+2EFF).
+ The CJK Radicals Supplement Unicode block (U+2E80-U+2EFF).
+
+
+ Gets the CJK Strokes Unicode block (U+31C0-U+31EF).
+ The CJK Strokes Unicode block (U+31C0-U+31EF).
+
+
+ Gets the CJK Symbols and Punctuation Unicode block (U+3000-U+303F).
+ The CJK Symbols and Punctuation Unicode block (U+3000-U+303F).
+
+
+ Gets the CJK Unified Ideographs Unicode block (U+4E00-U+9FCC).
+ The CJK Unified Ideographs Unicode block (U+4E00-U+9FCC).
+
+
+ Gets the CJK Unitied Ideographs Extension A Unicode block (U+3400-U+4DB5).
+ The CJK Unitied Ideographs Extension A Unicode block (U+3400-U+4DB5).
+
+
+ Gets the Combining Diacritical Marks Unicode block (U+0300-U+036F).
+ The Combining Diacritical Marks Unicode block (U+0300-U+036F).
+
+
+ Gets the Combining Diacritical Marks Extended Unicode block (U+1AB0-U+1AFF).
+ The Combining Diacritical Marks Extended Unicode block (U+1AB0-U+1AFF).
+
+
+ Gets the Combining Diacritical Marks for Symbols Unicode block (U+20D0-U+20FF).
+ The Combining Diacritical Marks for Symbols Unicode block (U+20D0-U+20FF).
+
+
+ Gets the Combining Diacritical Marks Supplement Unicode block (U+1DC0-U+1DFF).
+ The Combining Diacritical Marks Supplement Unicode block (U+1DC0-U+1DFF).
+
+
+ Gets the Combining Half Marks Unicode block (U+FE20-U+FE2F).
+ The Combining Half Marks Unicode block (U+FE20-U+FE2F).
+
+
+ Gets the Common Indic Number Forms Unicode block (U+A830-U+A83F).
+ The Common Indic Number Forms Unicode block (U+A830-U+A83F).
+
+
+ Gets the Control Pictures Unicode block (U+2400-U+243F).
+ The Control Pictures Unicode block (U+2400-U+243F).
+
+
+ Gets the Coptic Unicode block (U+2C80-U+2CFF).
+ The Coptic Unicode block (U+2C80-U+2CFF).
+
+
+ Gets the Currency Symbols Unicode block (U+20A0-U+20CF).
+ The Currency Symbols Unicode block (U+20A0-U+20CF).
+
+
+ Gets the Cyrillic Unicode block (U+0400-U+04FF).
+ The Cyrillic Unicode block (U+0400-U+04FF).
+
+
+ Gets the Cyrillic Extended-A Unicode block (U+2DE0-U+2DFF).
+ The Cyrillic Extended-A Unicode block (U+2DE0-U+2DFF).
+
+
+ Gets the Cyrillic Extended-B Unicode block (U+A640-U+A69F).
+ The Cyrillic Extended-B Unicode block (U+A640-U+A69F).
+
+
+ A corresponding to the 'Cyrillic Extended-C' Unicode block (U+1C80..U+1C8F).
+
+
+ Gets the Cyrillic Supplement Unicode block (U+0500-U+052F).
+ The Cyrillic Supplement Unicode block (U+0500-U+052F).
+
+
+ Gets the Devangari Unicode block (U+0900-U+097F).
+ The Devangari Unicode block (U+0900-U+097F).
+
+
+ Gets the Devanagari Extended Unicode block (U+A8E0-U+A8FF).
+ The Devanagari Extended Unicode block (U+A8E0-U+A8FF).
+
+
+ Gets the Dingbats Unicode block (U+2700-U+27BF).
+ The Dingbats Unicode block (U+2700-U+27BF).
+
+
+ Gets the Enclosed Alphanumerics Unicode block (U+2460-U+24FF).
+ The Enclosed Alphanumerics Unicode block (U+2460-U+24FF).
+
+
+ Gets the Enclosed CJK Letters and Months Unicode block (U+3200-U+32FF).
+ The Enclosed CJK Letters and Months Unicode block (U+3200-U+32FF).
+
+
+ Gets the Ethiopic Unicode block (U+1200-U+137C).
+ The Ethiopic Unicode block (U+1200-U+137C).
+
+
+ Gets the Ethipic Extended Unicode block (U+2D80-U+2DDF).
+ The Ethipic Extended Unicode block (U+2D80-U+2DDF).
+
+
+ Gets the Ethiopic Extended-A Unicode block (U+AB00-U+AB2F).
+ The Ethiopic Extended-A Unicode block (U+AB00-U+AB2F).
+
+
+ Gets the Ethiopic Supplement Unicode block (U+1380-U+1399).
+ The Ethiopic Supplement Unicode block (U+1380-U+1399).
+
+
+ Gets the General Punctuation Unicode block (U+2000-U+206F).
+ The General Punctuation Unicode block (U+2000-U+206F).
+
+
+ Gets the Geometric Shapes Unicode block (U+25A0-U+25FF).
+ The Geometric Shapes Unicode block (U+25A0-U+25FF).
+
+
+ Gets the Georgian Unicode block (U+10A0-U+10FF).
+ The Georgian Unicode block (U+10A0-U+10FF).
+
+
+ A corresponding to the 'Georgian Extended' Unicode block (U+1C90..U+1CBF).
+
+
+ Gets the Georgian Supplement Unicode block (U+2D00-U+2D2F).
+ The Georgian Supplement Unicode block (U+2D00-U+2D2F).
+
+
+ Gets the Glagolitic Unicode block (U+2C00-U+2C5F).
+ The Glagolitic Unicode block (U+2C00-U+2C5F).
+
+
+ Gets the Greek and Coptic Unicode block (U+0370-U+03FF).
+ The Greek and Coptic Unicode block (U+0370-U+03FF).
+
+
+ Gets the Greek Extended Unicode block (U+1F00-U+1FFF).
+ The Greek Extended Unicode block (U+1F00-U+1FFF).
+
+
+ Gets the Gujarti Unicode block (U+0A81-U+0AFF).
+ The Gujarti Unicode block (U+0A81-U+0AFF).
+
+
+ Gets the Gurmukhi Unicode block (U+0A01-U+0A7F).
+ The Gurmukhi Unicode block (U+0A01-U+0A7F).
+
+
+ Gets the Halfwidth and Fullwidth Forms Unicode block (U+FF00-U+FFEE).
+ The Halfwidth and Fullwidth Forms Unicode block (U+FF00-U+FFEE).
+
+
+ Gets the Hangul Compatibility Jamo Unicode block (U+3131-U+318F).
+ The Hangul Compatibility Jamo Unicode block (U+3131-U+318F).
+
+
+ Gets the Hangul Jamo Unicode block (U+1100-U+11FF).
+ The Hangul Jamo Unicode block (U+1100-U+11FF).
+
+
+ Gets the Hangul Jamo Extended-A Unicode block (U+A960-U+A9F).
+ The Hangul Jamo Extended-A Unicode block (U+A960-U+A97F).
+
+
+ Gets the Hangul Jamo Extended-B Unicode block (U+D7B0-U+D7FF).
+ The Hangul Jamo Extended-B Unicode block (U+D7B0-U+D7FF).
+
+
+ Gets the Hangul Syllables Unicode block (U+AC00-U+D7AF).
+ The Hangul Syllables Unicode block (U+AC00-U+D7AF).
+
+
+ Gets the Hanunoo Unicode block (U+1720-U+173F).
+ The Hanunoo Unicode block (U+1720-U+173F).
+
+
+ Gets the Hebrew Unicode block (U+0590-U+05FF).
+ The Hebrew Unicode block (U+0590-U+05FF).
+
+
+ Gets the Hiragana Unicode block (U+3040-U+309F).
+ The Hiragana Unicode block (U+3040-U+309F).
+
+
+ Gets the Ideographic Description Characters Unicode block (U+2FF0-U+2FFF).
+ The Ideographic Description Characters Unicode block (U+2FF0-U+2FFF).
+
+
+ Gets the IPA Extensions Unicode block (U+0250-U+02AF).
+ The IPA Extensions Unicode block (U+0250-U+02AF).
+
+
+ Gets the Javanese Unicode block (U+A980-U+A9DF).
+ The Javanese Unicode block (U+A980-U+A9DF).
+
+
+ Gets the Kanbun Unicode block (U+3190-U+319F).
+ The Kanbun Unicode block (U+3190-U+319F).
+
+
+ Gets the Kangxi Radicals Supplement Unicode block (U+2F00-U+2FDF).
+ The Kangxi Radicals Supplement Unicode block (U+2F00-U+2FDF).
+
+
+ Gets the Kannada Unicode block (U+0C81-U+0CFF).
+ The Kannada Unicode block (U+0C81-U+0CFF).
+
+
+ Gets the Katakana Unicode block (U+30A0-U+30FF).
+ The Katakana Unicode block (U+30A0-U+30FF).
+
+
+ Gets the Katakana Phonetic Extensions Unicode block (U+31F0-U+31FF).
+ The Katakana Phonetic Extensions Unicode block (U+31F0-U+31FF).
+
+
+ Gets the Kayah Li Unicode block (U+A900-U+A92F).
+ The Kayah Li Unicode block (U+A900-U+A92F).
+
+
+ Gets the Khmer Unicode block (U+1780-U+17FF).
+ The Khmer Unicode block (U+1780-U+17FF).
+
+
+ Gets the Khmer Symbols Unicode block (U+19E0-U+19FF).
+ The Khmer Symbols Unicode block (U+19E0-U+19FF).
+
+
+ Gets the Lao Unicode block (U+0E80-U+0EDF).
+ The Lao Unicode block (U+0E80-U+0EDF).
+
+
+ Gets the Latin-1 Supplement Unicode block (U+00A1-U+00FF).
+ The Latin-1 Supplement Unicode block (U+00A1-U+00FF).
+
+
+ Gets the Latin Extended-A Unicode block (U+0100-U+017F).
+ The Latin Extended-A Unicode block (U+0100-U+017F).
+
+
+ Gets the Latin Extended Additional Unicode block (U+1E00-U+1EFF).
+ The Latin Extended Additional Unicode block (U+1E00-U+1EFF).
+
+
+ Gets the Latin Extended-B Unicode block (U+0180-U+024F).
+ The Latin Extended-B Unicode block (U+0180-U+024F).
+
+
+ Gets the Latin Extended-C Unicode block (U+2C60-U+2C7F).
+ The Latin Extended-C Unicode block (U+2C60-U+2C7F).
+
+
+ Gets the Latin Extended-D Unicode block (U+A720-U+A7FF).
+ The Latin Extended-D Unicode block (U+A720-U+A7FF).
+
+
+ Gets the Latin Extended-E Unicode block (U+AB30-U+AB6F).
+ The Latin Extended-E Unicode block (U+AB30-U+AB6F).
+
+
+ Gets the Lepcha Unicode block (U+1C00-U+1C4F).
+ The Lepcha Unicode block (U+1C00-U+1C4F).
+
+
+ Gets the Letterlike Symbols Unicode block (U+2100-U+214F).
+ The Letterlike Symbols Unicode block (U+2100-U+214F).
+
+
+ Gets the Limbu Unicode block (U+1900-U+194F).
+ The Limbu Unicode block (U+1900-U+194F).
+
+
+ Gets the Lisu Unicode block (U+A4D0-U+A4FF).
+ The Lisu Unicode block (U+A4D0-U+A4FF).
+
+
+ Gets the Malayalam Unicode block (U+0D00-U+0D7F).
+ The Malayalam Unicode block (U+0D00-U+0D7F).
+
+
+ Gets the Mandaic Unicode block (U+0840-U+085F).
+ The Mandaic Unicode block (U+0840-U+085F).
+
+
+ Gets the Mathematical Operators Unicode block (U+2200-U+22FF).
+ The Mathematical Operators Unicode block (U+2200-U+22FF).
+
+
+ Gets the Meetei Mayek Unicode block (U+ABC0-U+ABFF).
+ The Meetei Mayek Unicode block (U+ABC0-U+ABFF).
+
+
+ Gets the Meetei Mayek Extensions Unicode block (U+AAE0-U+AAFF).
+ The Meetei Mayek Extensions Unicode block (U+AAE0-U+AAFF).
+
+
+ Gets the Miscellaneous Mathematical Symbols-A Unicode block (U+27C0-U+27EF).
+ The Miscellaneous Mathematical Symbols-A Unicode block (U+27C0-U+27EF).
+
+
+ Gets the Miscellaneous Mathematical Symbols-B Unicode block (U+2980-U+29FF).
+ The Miscellaneous Mathematical Symbols-B Unicode block (U+2980-U+29FF).
+
+
+ Gets the Miscellaneous Symbols Unicode block (U+2600-U+26FF).
+ The Miscellaneous Symbols Unicode block (U+2600-U+26FF).
+
+
+ Gets the Miscellaneous Symbols and Arrows Unicode block (U+2B00-U+2BFF).
+ The Miscellaneous Symbols and Arrows Unicode block (U+2B00-U+2BFF).
+
+
+ Gets the Miscellaneous Technical Unicode block (U+2300-U+23FF).
+ The Miscellaneous Technical Unicode block (U+2300-U+23FF).
+
+
+ Gets the Modifier Tone Letters Unicode block (U+A700-U+A71F).
+ The Modifier Tone Letters Unicode block (U+A700-U+A71F).
+
+
+ Gets the Mongolian Unicode block (U+1800-U+18AF).
+ The Mongolian Unicode block (U+1800-U+18AF).
+
+
+ Gets the Myanmar Unicode block (U+1000-U+109F).
+ The Myanmar Unicode block (U+1000-U+109F).
+
+
+ Gets the Myanmar Extended-A Unicode block (U+AA60-U+AA7F).
+ The Myanmar Extended-A Unicode block (U+AA60-U+AA7F).
+
+
+ Gets the Myanmar Extended-B Unicode block (U+A9E0-U+A9FF).
+ The Myanmar Extended-B Unicode block (U+A9E0-U+A9FF).
+
+
+ Gets the New Tai Lue Unicode block (U+1980-U+19DF).
+ The New Tai Lue Unicode block (U+1980-U+19DF).
+
+
+ Gets the NKo Unicode block (U+07C0-U+07FF).
+ The NKo Unicode block (U+07C0-U+07FF).
+
+
+ Gets an empty Unicode range.
+ A Unicode range with no elements.
+
+
+ Gets the Number Forms Unicode block (U+2150-U+218F).
+ The Number Forms Unicode block (U+2150-U+218F).
+
+
+ Gets the Ogham Unicode block (U+1680-U+169F).
+ The Ogham Unicode block (U+1680-U+169F).
+
+
+ Gets the Ol Chiki Unicode block (U+1C50-U+1C7F).
+ The Ol Chiki Unicode block (U+1C50-U+1C7F).
+
+
+ Gets the Optical Character Recognition Unicode block (U+2440-U+245F).
+ The Optical Character Recognition Unicode block (U+2440-U+245F).
+
+
+ Gets the Oriya Unicode block (U+0B00-U+0B7F).
+ The Oriya Unicode block (U+0B00-U+0B7F).
+
+
+ Gets the Phags-pa Unicode block (U+A840-U+A87F).
+ The Phags-pa Unicode block (U+A840-U+A87F).
+
+
+ Gets the Phonetic Extensions Unicode block (U+1D00-U+1D7F).
+ The Phonetic Extensions Unicode block (U+1D00-U+1D7F).
+
+
+ Gets the Phonetic Extensions Supplement Unicode block (U+1D80-U+1DBF).
+ The Phonetic Extensions Supplement Unicode block (U+1D80-U+1DBF).
+
+
+ Gets the Rejang Unicode block (U+A930-U+A95F).
+ The Rejang Unicode block (U+A930-U+A95F).
+
+
+ Gets the Runic Unicode block (U+16A0-U+16FF).
+ The Runic Unicode block (U+16A0-U+16FF).
+
+
+ Gets the Samaritan Unicode block (U+0800-U+083F).
+ The Samaritan Unicode block (U+0800-U+083F).
+
+
+ Gets the Saurashtra Unicode block (U+A880-U+A8DF).
+ The Saurashtra Unicode block (U+A880-U+A8DF).
+
+
+ Gets the Sinhala Unicode block (U+0D80-U+0DFF).
+ The Sinhala Unicode block (U+0D80-U+0DFF).
+
+
+ Gets the Small Form Variants Unicode block (U+FE50-U+FE6F).
+ The Small Form Variants Unicode block (U+FE50-U+FE6F).
+
+
+ Gets the Spacing Modifier Letters Unicode block (U+02B0-U+02FF).
+ The Spacing Modifier Letters Unicode block (U+02B0-U+02FF).
+
+
+ Gets the Specials Unicode block (U+FFF0-U+FFFF).
+ The Specials Unicode block (U+FFF0-U+FFFF).
+
+
+ Gets the Sundanese Unicode block (U+1B80-U+1BBF).
+ The Sundanese Unicode block (U+1B80-U+1BBF).
+
+
+ Gets the Sundanese Supplement Unicode block (U+1CC0-U+1CCF).
+ The Sundanese Supplement Unicode block (U+1CC0-U+1CCF).
+
+
+ Gets the Superscripts and Subscripts Unicode block (U+2070-U+209F).
+ The Superscripts and Subscripts Unicode block (U+2070-U+209F).
+
+
+ Gets the Supplemental Arrows-A Unicode block (U+27F0-U+27FF).
+ The Supplemental Arrows-A Unicode block (U+27F0-U+27FF).
+
+
+ Gets the Supplemental Arrows-B Unicode block (U+2900-U+297F).
+ The Supplemental Arrows-B Unicode block (U+2900-U+297F).
+
+
+ Gets the Supplemental Mathematical Operators Unicode block (U+2A00-U+2AFF).
+ The Supplemental Mathematical Operators Unicode block (U+2A00-U+2AFF).
+
+
+ Gets the Supplemental Punctuation Unicode block (U+2E00-U+2E7F).
+ The Supplemental Punctuation Unicode block (U+2E00-U+2E7F).
+
+
+ Gets the Syloti Nagri Unicode block (U+A800-U+A82F).
+ The Syloti Nagri Unicode block (U+A800-U+A82F).
+
+
+ Gets the Syriac Unicode block (U+0700-U+074F).
+ The Syriac Unicode block (U+0700-U+074F).
+
+
+ A corresponding to the 'Syriac Supplement' Unicode block (U+0860..U+086F).
+
+
+ Gets the Tagalog Unicode block (U+1700-U+171F).
+ The Tagalog Unicode block (U+1700-U+171F).
+
+
+ Gets the Tagbanwa Unicode block (U+1760-U+177F).
+ The Tagbanwa Unicode block (U+1760-U+177F).
+
+
+ Gets the Tai Le Unicode block (U+1950-U+197F).
+ The Tai Le Unicode block (U+1950-U+197F).
+
+
+ Gets the Tai Tham Unicode block (U+1A20-U+1AAF).
+ The Tai Tham Unicode block (U+1A20-U+1AAF).
+
+
+ Gets the Tai Viet Unicode block (U+AA80-U+AADF).
+ The Tai Viet Unicode block (U+AA80-U+AADF).
+
+
+ Gets the Tamil Unicode block (U+0B80-U+0BFF).
+ The Tamil Unicode block (U+0B82-U+0BFA).
+
+
+ Gets the Telugu Unicode block (U+0C00-U+0C7F).
+ The Telugu Unicode block (U+0C00-U+0C7F).
+
+
+ Gets the Thaana Unicode block (U+0780-U+07BF).
+ The Thaana Unicode block (U+0780-U+07BF).
+
+
+ Gets the Thai Unicode block (U+0E00-U+0E7F).
+ The Thai Unicode block (U+0E00-U+0E7F).
+
+
+ Gets the Tibetan Unicode block (U+0F00-U+0FFF).
+ The Tibetan Unicode block (U+0F00-U+0FFF).
+
+
+ Gets the Tifinagh Unicode block (U+2D30-U+2D7F).
+ The Tifinagh Unicode block (U+2D30-U+2D7F).
+
+
+ Gets the Unified Canadian Aboriginal Syllabics Unicode block (U+1400-U+167F).
+ The Unified Canadian Aboriginal Syllabics Unicode block (U+1400-U+167F).
+
+
+ Gets the Unified Canadian Aboriginal Syllabics Extended Unicode block (U+18B0-U+18FF).
+ The Unified Canadian Aboriginal Syllabics Extended Unicode block (U+18B0-U+18FF).
+
+
+ Gets the Vai Unicode block (U+A500-U+A63F).
+ The Vai Unicode block (U+A500-U+A63F).
+
+
+ Gets the Variation Selectors Unicode block (U+FE00-U+FE0F).
+ The Variation Selectors Unicode block (U+FE00-U+FE0F).
+
+
+ Gets the Vedic Extensions Unicode block (U+1CD0-U+1CFF).
+ The Vedic Extensions Unicode block (U+1CD0-U+1CFF).
+
+
+ Gets the Vertical Forms Unicode block (U+FE10-U+FE1F).
+ The Vertical Forms Unicode block (U+FE10-U+FE1F).
+
+
+ Gets the Yijing Hexagram Symbols Unicode block (U+4DC0-U+4DFF).
+ The Yijing Hexagram Symbols Unicode block (U+4DC0-U+4DFF).
+
+
+ Gets the Yi Radicals Unicode block (U+A490-U+A4CF).
+ The Yi Radicals Unicode block (U+A490-U+A4CF).
+
+
+ Gets the Yi Syllables Unicode block (U+A000-U+A48F).
+ The Yi Syllables Unicode block (U+A000-U+A48F).
+
+
+
\ No newline at end of file
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Text.Json.dll b/SalesPacking_MES_API_Project/bin/Debug/System.Text.Json.dll
new file mode 100644
index 0000000..7405d75
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/System.Text.Json.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Text.Json.xml b/SalesPacking_MES_API_Project/bin/Debug/System.Text.Json.xml
new file mode 100644
index 0000000..da1a571
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/System.Text.Json.xml
@@ -0,0 +1,5785 @@
+
+
+
+ System.Text.Json
+
+
+
+ Defines how the struct handles comments.
+
+
+ Allows comments within the JSON input and treats them as valid tokens. While reading, the caller can access the comment values.
+
+
+ Doesn't allow comments within the JSON input. Comments are treated as invalid JSON if found, and a is thrown. This is the default value.
+
+
+ Allows comments within the JSON input and ignores them. The behaves as if no comments are present.
+
+
+ Provides a mechanism for examining the structural content of a JSON value without automatically instantiating data values.
+
+
+ Releases the resources used by this instance.
+
+
+ Parses a sequence as UTF-8-encoded text representing a single JSON value into a JsonDocument.
+ The JSON text to parse.
+ Options to control the reader behavior during parsing.
+
+ does not represent a valid single JSON value.
+
+ contains unsupported options.
+ A JsonDocument representation of the JSON value.
+
+
+ Parses a as UTF-8-encoded data representing a single JSON value into a JsonDocument. The stream is read to completion.
+ The JSON data to parse.
+ Options to control the reader behavior during parsing.
+
+ does not represent a valid single JSON value.
+
+ contains unsupported options.
+ A JsonDocument representation of the JSON value.
+
+
+ Parses memory as UTF-8-encoded text representing a single JSON value into a JsonDocument.
+ The JSON text to parse.
+ Options to control the reader behavior during parsing.
+
+ does not represent a valid single JSON value.
+
+ contains unsupported options.
+ A JsonDocument representation of the JSON value.
+
+
+ Parses text representing a single JSON value into a JsonDocument.
+ The JSON text to parse.
+ Options to control the reader behavior during parsing.
+
+ does not represent a valid single JSON value.
+
+ contains unsupported options.
+ A JsonDocument representation of the JSON value.
+
+
+ Parses text representing a single JSON string value into a JsonDocument.
+ The JSON text to parse.
+ Options to control the reader behavior during parsing.
+
+ does not represent a valid single JSON value.
+
+ contains unsupported options.
+ A JsonDocument representation of the JSON value.
+
+
+ Parses a as UTF-8-encoded data representing a single JSON value into a JsonDocument. The stream is read to completion.
+ The JSON data to parse.
+ Options to control the reader behavior during parsing.
+ The token to monitor for cancellation requests.
+
+ does not represent a valid single JSON value.
+
+ contains unsupported options.
+ A task to produce a JsonDocument representation of the JSON value.
+
+
+ Parses one JSON value (including objects or arrays) from the provided reader.
+ The reader to read.
+
+ contains unsupported options.
+
+-or-
+
+The current token does not start or represent a value.
+ A value could not be read from the reader.
+ A JsonDocument representing the value (and nested values) read from the reader.
+
+
+ Attempts to parse one JSON value (including objects or arrays) from the provided reader.
+ The reader to read.
+ When the method returns, contains the parsed document.
+
+ contains unsupported options.
+
+-or-
+
+The current token does not start or represent a value.
+ A value could not be read from the reader.
+
+ if a value was read and parsed into a JsonDocument; if the reader ran out of data while parsing. All other situations result in an exception being thrown.
+
+
+ Writes the document to the provided writer as a JSON value.
+ The writer to which to write the document.
+ The parameter is .
+ The of this would result in invalid JSON.
+ The parent has been disposed.
+
+
+ Gets the root element of this JSON document.
+ A representing the value of the document.
+
+
+ Provides the ability for the user to define custom behavior when parsing JSON to create a .
+
+
+ Gets or sets a value that indicates whether an extra comma at the end of a list of JSON values in an object or array is allowed (and ignored) within the JSON payload being read.
+
+ if an extra comma at the end of a list of JSON values in an object or array is allowed; otherwise, . Default is
+
+
+ Gets or sets a value that determines how the handles comments when reading through the JSON data.
+ The comment handling enum is set to a value that is not supported (or not within the enum range).
+ One of the enumeration values that indicates how comments are handled.
+
+
+ Gets or sets the maximum depth allowed when parsing JSON data, with the default (that is, 0) indicating a maximum depth of 64.
+ The max depth is set to a negative value.
+ The maximum depth allowed when parsing JSON data.
+
+
+ Represents a specific JSON value within a .
+
+
+ Gets a JsonElement that can be safely stored beyond the lifetime of the original .
+ A JsonElement that can be safely stored beyond the lifetime of the original .
+
+
+ Gets an enumerator to enumerate the values in the JSON array represented by this JsonElement.
+ This value's is not .
+ The parent has been disposed.
+ An enumerator to enumerate the values in the JSON array represented by this JsonElement.
+
+
+ Gets an enumerator to enumerate the properties in the JSON object represented by this JsonElement.
+ This value's is not .
+ The parent has been disposed.
+ An enumerator to enumerate the properties in the JSON object represented by this JsonElement.
+
+
+ Gets the number of values contained within the current array value.
+ This value's is not .
+ The parent has been disposed.
+ The number of values contained within the current array value.
+
+
+ Gets the value of the element as a .
+ This value's is neither nor .
+ The parent has been disposed.
+ The value of the element as a .
+
+
+ Gets the current JSON number as a .
+ This value's is not .
+ The value cannot be represented as a .
+ The parent has been disposed.
+ The current JSON number as a .
+
+
+ Gets the value of the element as a byte array.
+ This value's is not .
+ The value is not encoded as Base64 text and hence cannot be decoded to bytes.
+ The parent has been disposed.
+ The value decoded as a byte array.
+
+
+ Gets the value of the element as a .
+ This value's is not .
+ The value cannot be read as a .
+ The parent has been disposed.
+ The value of the element as a .
+
+
+ Gets the value of the element as a .
+ This value's is not .
+ The value cannot be read as a .
+ The parent has been disposed.
+ The value of the element as a .
+
+
+ Gets the current JSON number as a .
+ This value's is not .
+ The value cannot be represented as a .
+ The parent has been disposed.
+ The current JSON number as a .
+
+
+ Gets the current JSON number as a .
+ This value's is not .
+ The value cannot be represented as a .
+ The parent has been disposed.
+ The current JSON number as a .
+
+
+ Gets the value of the element as a .
+ This value's is not .
+ The value cannot be represented as a .
+ The parent has been disposed.
+ The value of the element as a .
+
+
+ Gets the current JSON number as an .
+ This value's is not .
+ The value cannot be represented as an .
+ The parent has been disposed.
+ The current JSON number as an .
+
+
+ Gets the current JSON number as an .
+ This value's is not .
+ The value cannot be represented as an .
+ The parent has been disposed.
+ The current JSON number as an .
+
+
+ Gets the current JSON number as an .
+ This value's is not .
+ The value cannot be represented as a .
+ The parent has been disposed.
+ The current JSON number as an .
+
+
+ Gets a representing the value of a required property identified by .
+ The UTF-8 representation (with no Byte-Order-Mark (BOM)) of the name of the property to return.
+ This value's is not .
+ No property was found with the requested name.
+ The parent has been disposed.
+ A representing the value of the requested property.
+
+
+ Gets a representing the value of a required property identified by .
+ The name of the property whose value is to be returned.
+ This value's is not .
+ No property was found with the requested name.
+ The parent has been disposed.
+ A representing the value of the requested property.
+
+
+ Gets a representing the value of a required property identified by .
+ The name of the property whose value is to be returned.
+ This value's is not .
+ No property was found with the requested name.
+
+ is .
+ The parent has been disposed.
+ A representing the value of the requested property.
+
+
+ Gets a string that represents the original input data backing this value.
+ The parent has been disposed.
+ The original input data backing this value.
+
+
+ Gets the current JSON number as an .
+ This value's is not .
+ The value cannot be represented as an .
+ The parent has been disposed.
+ The current JSON number as an .
+
+
+ Gets the current JSON number as a .
+ This value's is not .
+ The value cannot be represented as a .
+ The parent has been disposed.
+ The current JSON number as a .
+
+
+ Gets the value of the element as a .
+ This value's is neither nor .
+ The parent has been disposed.
+ The value of the element as a .
+
+
+ Gets the current JSON number as a .
+ This value's is not .
+ The value cannot be represented as a .
+ The parent has been disposed.
+ The current JSON number as a .
+
+
+ Gets the current JSON number as a .
+ This value's is not .
+ The value cannot be represented as a .
+ The parent has been disposed.
+ The current JSON number as a .
+
+
+ Gets the current JSON number as a .
+ This value's is not .
+ The value cannot be represented as a .
+ The parent has been disposed.
+ The current JSON number as a .
+
+
+ Parses one JSON value (including objects or arrays) from the provided reader.
+ The reader to read.
+
+ is using unsupported options.
+ The current token does not start or represent a value.
+ A value could not be read from the reader.
+ A JsonElement representing the value (and nested values) read from the reader.
+
+
+ Gets a string representation for the current value appropriate to the value type.
+ The parent has been disposed.
+ A string representation for the current value appropriate to the value type.
+
+
+ Attempts to represent the current JSON number as a .
+ When this method returns, contains the byte equivalent of the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ This value's is not .
+ The parent has been disposed.
+
+ if the number can be represented as a ; otherwise, .
+
+
+ Attempts to represent the current JSON string as a byte array, assuming that it is Base64 encoded.
+ If the method succeeds, contains the decoded binary representation of the Base64 text.
+ This value's is not .
+ The parent has been disposed.
+
+ if the entire token value is encoded as valid Base64 text and can be successfully decoded to bytes; otherwise, .
+
+
+ Attempts to represent the current JSON string as a .
+ When this method returns, contains the date and time value equivalent to the current JSON string if the conversion succeeded, or if the conversion failed.
+ This value's is not .
+ The parent has been disposed.
+
+ if the string can be represented as a ; otherwise, .
+
+
+ Attempts to represent the current JSON string as a .
+ When this method returns, contains the date and time value equivalent to the current JSON string if the conversion succeeded, or if the conversion failed.
+ This value's is not .
+ The parent has been disposed.
+
+ if the string can be represented as a ; otherwise, .
+
+
+ Attempts to represent the current JSON number as a .
+ When this method returns, contains the decimal equivalent of the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ This value's is not .
+ The parent has been disposed.
+
+ if the number can be represented as a ; otherwise, .
+
+
+ Attempts to represent the current JSON number as a .
+ When this method returns, contains a double-precision floating point value equivalent to the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ This value's is not .
+ The parent has been disposed.
+
+ if the number can be represented as a ; otherwise, .
+
+
+ Attempts to represent the current JSON string as a .
+ When this method returns, contains the GUID equivalent to the current JSON string if the conversion succeeded, or if the conversion failed.
+ This value's is not .
+ The parent has been disposed.
+
+ if the string can be represented as a ; otherwise, .
+
+
+ Attempts to represent the current JSON number as an .
+ When this method returns, contains the 16-bit integer value equivalent of the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ This value's is not .
+ The parent has been disposed.
+
+ if the number can be represented as an ; otherwise, .
+
+
+ Attempts to represent the current JSON number as an .
+ When this method returns, contains the 32-bit integer value equivalent to the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ This value's is not .
+ The parent has been disposed.
+
+ if the number can be represented as an ; otherwise, .
+
+
+ Attempts to represent the current JSON number as a .
+ When this method returns, contains the 64-bit integer value equivalent to the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ This value's is not .
+ The parent has been disposed.
+
+ if the number can be represented as a ; otherwise, .
+
+
+ Looks for a property named in the current object, returning a value that indicates whether or not such a property exists. When the property exists, the method assigns its value to the argument.
+ The UTF-8 (with no Byte-Order-Mark (BOM)) representation of the name of the property to return.
+ Receives the value of the located property.
+ This value's is not .
+ The parent has been disposed.
+
+ if the property was found; otherwise, .
+
+
+ Looks for a property named in the current object, returning a value that indicates whether or not such a property exists. When the property exists, the method assigns its value to the argument.
+ The name of the property to find.
+ When this method returns, contains the value of the specified property.
+ This value's is not .
+ The parent has been disposed.
+
+ if the property was found; otherwise, .
+
+
+ Looks for a property named in the current object, returning a value that indicates whether or not such a property exists. When the property exists, its value is assigned to the argument.
+ The name of the property to find.
+ When this method returns, contains the value of the specified property.
+ This value's is not .
+
+ is .
+ The parent has been disposed.
+
+ if the property was found; otherwise, .
+
+
+ Attempts to represent the current JSON number as an .
+ When this method returns, contains the signed byte equivalent of the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ This value's is not .
+ The parent has been disposed.
+
+ if the number can be represented as an ; otherwise, .
+
+
+ Attempts to represent the current JSON number as a .
+ When this method returns, contains the single-precision floating point value equivalent to the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ This value's is not .
+ The parent has been disposed.
+
+ if the number can be represented as a ; otherwise, .
+
+
+ Attempts to represent the current JSON number as a .
+ When this method returns, contains the unsigned 16-bit integer value equivalent of the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ This value's is not .
+ The parent has been disposed.
+
+ if the number can be represented as a ; otherwise, .
+
+
+ Attempts to represent the current JSON number as a .
+ When this method returns, contains unsigned 32-bit integer value equivalent to the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ This value's is not .
+ The parent has been disposed.
+
+ if the number can be represented as a ; otherwise, .
+
+
+ Attempts to represent the current JSON number as a .
+ When this method returns, contains unsigned 64-bit integer value equivalent to the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ This value's is not .
+ The parent has been disposed.
+
+ if the number can be represented as a ; otherwise, .
+
+
+ Attempts to parse one JSON value (including objects or arrays) from the provided reader.
+ The reader to read.
+ Receives the parsed element.
+
+ is using unsupported options.
+ The current token does not start or represent a value.
+ A value could not be read from the reader.
+
+ if a value was read and parsed into a JsonElement; if the reader ran out of data while parsing.
+ All other situations result in an exception being thrown.
+
+
+ Compares the text represented by a UTF8-encoded byte span to the string value of this element.
+ The UTF-8 encoded text to compare against.
+ This value's is not .
+
+ if the string value of this element has the same UTF-8 encoding as
+ ; otherwise, .
+
+
+ Compares a specified read-only character span to the string value of this element.
+ The text to compare against.
+ This value's is not .
+
+ if the string value of this element matches ; otherwise, .
+
+
+ Compares a specified string to the string value of this element.
+ The text to compare against.
+ This value's is not .
+
+ if the string value of this element matches ; otherwise, .
+
+
+ Writes the element to the specified writer as a JSON value.
+ The writer to which to write the element.
+ The parameter is .
+ The of this value is .
+ The parent has been disposed.
+
+
+ Gets the value at the specified index if the current value is an .
+ The item index.
+ This value's is not .
+
+ is not in the range [0, ()).
+ The parent has been disposed.
+ The value at the specified index.
+
+
+ Gets the type of the current JSON value.
+ The parent has been disposed.
+ The type of the current JSON value.
+
+
+ Represents an enumerator for the contents of a JSON array.
+
+
+ Releases the resources used by this instance.
+
+
+ Returns an enumerator that iterates through a collection.
+ An enumerator that can be used to iterate through the array.
+
+
+ Advances the enumerator to the next element of the collection.
+
+ true
if the enumerator was successfully advanced to the next element; false
if the enumerator has passed the end of the collection.
+
+
+ Sets the enumerator to its initial position, which is before the first element in the collection.
+
+
+ Returns an enumerator that iterates through a collection.
+ An enumerator for an array of that can be used to iterate through the collection.
+
+
+ Returns an enumerator that iterates through a collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Gets the element in the collection at the current position of the enumerator.
+ The element in the collection at the current position of the enumerator.
+
+
+ Gets the element in the collection at the current position of the enumerator.
+ The element in the collection at the current position of the enumerator.
+
+
+ Represents an enumerator for the properties of a JSON object.
+
+
+ Releases the resources used by this instance.
+
+
+ Returns an enumerator that iterates the properties of an object.
+ An enumerator that can be used to iterate through the object.
+
+
+ Advances the enumerator to the next element of the collection.
+
+ true
if the enumerator was successfully advanced to the next element; false
if the enumerator has passed the end of the collection.
+
+
+ Sets the enumerator to its initial position, which is before the first element in the collection.
+
+
+ Returns an enumerator that iterates through a collection.
+ An enumerator for objects that can be used to iterate through the collection.
+
+
+ Returns an enumerator that iterates through a collection.
+ An enumerator that can be used to iterate through the collection.
+
+
+ Gets the element in the collection at the current position of the enumerator.
+ The element in the collection at the current position of the enumerator.
+
+
+ Gets the element in the collection at the current position of the enumerator.
+ The element in the collection at the current position of the enumerator.
+
+
+ Provides methods to transform UTF-8 or UTF-16 encoded text into a form that is suitable for JSON.
+
+
+ Encodes a UTF-8 text value as a JSON string.
+ The UTF-8 encoded text to convert to JSON encoded text.
+ The encoder to use when escaping the string, or to use the default encoder.
+
+ is too large.
+
+-or-
+
+ contains invalid UTF-8 bytes.
+ The encoded JSON text.
+
+
+ Encodes a specified text value as a JSON string.
+ The value to convert to JSON encoded text.
+ The encoder to use when escaping the string, or to use the default encoder.
+
+ is too large.
+
+-or-
+
+ contains invalid UTF-16 characters.
+ The encoded JSON text.
+
+
+ Encodes the string text value as a JSON string.
+ The value to convert to JSON encoded text.
+ The encoder to use when escaping the string, or to use the default encoder.
+
+ is .
+
+ is too large.
+
+-or-
+
+ contains invalid UTF-16 characters.
+ The encoded JSON text.
+
+
+ Determines whether this instance and a specified object, which must also be a instance, have the same value.
+ The object to compare to this instance.
+
+ if the current instance and are equal; otherwise, .
+
+
+ Determines whether this instance and another specified instance have the same value.
+ The object to compare to this instance.
+
+ if this instance and have the same value; otherwise, .
+
+
+ Returns the hash code for this .
+ The hash code for this instance.
+
+
+ Converts the value of this instance to a .
+ The underlying UTF-16 encoded string.
+
+
+ Gets the UTF-8 encoded representation of the pre-encoded JSON text.
+ The UTF-8 encoded representation of the pre-encoded JSON text.
+
+
+ Gets the UTF-16 encoded representation of the pre-encoded JSON text as a .
+
+
+ Defines a custom exception object that is thrown when invalid JSON text is encountered, the defined maximum depth is passed, or the JSON text is not compatible with the type of a property on an object.
+
+
+ Initializes a new instance of the class.
+
+
+ Creates a new exception object with serialized data.
+ The serialized object data about the exception being thrown.
+ An object that contains contextual information about the source or destination.
+
+ is .
+
+
+ Initializes a new instance of the class with a specified error message.
+ The context-specific error message.
+
+
+ Initializes a new instance of the class, with a specified error message and a reference to the inner exception that is the cause of this exception.
+ The context-specific error message.
+ The exception that caused the current exception.
+
+
+ Creates a new exception object to relay error information to the user.
+ The context-specific error message.
+ The path where the invalid JSON was encountered.
+ The line number (starting at 0) at which the invalid JSON was encountered when deserializing.
+ The byte count within the current line (starting at 0) where the invalid JSON was encountered.
+
+
+ Creates a new exception object to relay error information to the user that includes a specified inner exception.
+ The context-specific error message.
+ The path where the invalid JSON was encountered.
+ The line number (starting at 0) at which the invalid JSON was encountered when deserializing.
+ The byte count (starting at 0) within the current line where the invalid JSON was encountered.
+ The exception that caused the current exception.
+
+
+ Sets the with information about the exception.
+ The serialized object data about the exception being thrown.
+ An object that contains contextual information about the source or destination.
+
+
+ Gets the zero-based number of bytes read within the current line before the exception.
+ The zero-based number of bytes read within the current line before the exception.
+
+
+ Gets the zero-based number of lines read before the exception.
+ The zero-based number of lines read before the exception.
+
+
+ Gets a message that describes the current exception.
+ The error message that describes the current exception.
+
+
+ Gets The path within the JSON where the exception was encountered.
+ The path within the JSON where the exception was encountered.
+
+
+ Determines the naming policy used to convert a string-based name to another format, such as a camel-casing format.
+
+
+ Initializes a new instance of .
+
+
+ When overridden in a derived class, converts the specified name according to the policy.
+ The name to convert.
+ The converted name.
+
+
+ Gets the naming policy for camel-casing.
+ The naming policy for camel-casing.
+
+
+ Gets the naming policy for lowercase kebab-casing.
+
+
+ Gets the naming policy for uppercase kebab-casing.
+
+
+ Gets the naming policy for lowercase snake-casing.
+
+
+ Gets the naming policy for uppercase snake-casing.
+
+
+ Represents a single property for a JSON object.
+
+
+ Compares the specified UTF-8 encoded text to the name of this property.
+ The UTF-8 encoded text to compare against.
+ This value's is not .
+
+ if the name of this property has the same UTF-8 encoding as ; otherwise, .
+
+
+ Compares the specified text as a character span to the name of this property.
+ The text to compare against.
+ This value's is not .
+
+ if the name of this property matches ; otherwise, .
+
+
+ Compares the specified string to the name of this property.
+ The text to compare against.
+ This value's is not .
+
+ if the name of this property matches ; otherwise .
+
+
+ Provides a string representation of the property for debugging purposes.
+ A string containing the uninterpreted value of the property, beginning at the declaring open-quote and ending at the last character that is part of the value.
+
+
+ Writes the property to the provided writer as a named JSON object property.
+ The writer to which to write the property.
+
+ is .
+
+ is too large to be a JSON object property.
+ The of this JSON property's would result in invalid JSON.
+ The parent has been disposed.
+
+
+ Gets the name of this property.
+ The name of this property.
+
+
+ Gets the value of this property.
+ The value of this property.
+
+
+ Provides the ability for the user to define custom behavior when reading JSON.
+
+
+ Gets or sets a value that defines whether an extra comma at the end of a list of JSON values in an object or array is allowed (and ignored) within the JSON payload being read.
+
+ if an extra comma is allowed; otherwise, .
+
+
+ Gets or sets a value that determines how the handles comments when reading through the JSON data.
+ The property is being set to a value that is not a member of the enumeration.
+ One of the enumeration values that indicates how comments are handled.
+
+
+ Gets or sets the maximum depth allowed when reading JSON, with the default (that is, 0) indicating a maximum depth of 64.
+ The maximum depth is being set to a negative value.
+ The maximum depth allowed when reading JSON.
+
+
+ Defines an opaque type that holds and saves all the relevant state information, which must be provided to the to continue reading after processing incomplete data.
+
+
+ Constructs a new instance.
+ Defines the customized behavior of the that is different from the JSON RFC (for example how to handle comments, or the maximum depth allowed when reading). By default, the follows the JSON RFC strictly (comments within the JSON are invalid) and reads up to a maximum depth of 64.
+ The maximum depth is set to a non-positive value (< 0).
+
+
+ Gets the custom behavior to use when reading JSON data using the struct that may deviate from strict adherence to the JSON specification, which is the default behavior.
+ The custom behavior to use when reading JSON data.
+
+
+ Provides functionality to serialize objects or value types to JSON and to deserialize JSON into objects or value types.
+
+
+ Reads the UTF-8 encoded text representing a single JSON value into an instance specified by the .
+ The Stream will be read to completion.
+ JSON data to parse.
+ Metadata about the type to convert.
+
+ or is .
+ The JSON is invalid,
+ or there is remaining data in the Stream.
+ A representation of the JSON value.
+
+
+ Reads the UTF-8 encoded text representing a single JSON value into a .
+ The Stream will be read to completion.
+ JSON data to parse.
+ The type of the object to convert to and return.
+ Options to control the behavior during reading.
+
+ or is .
+ The JSON is invalid, the is not compatible with the JSON, or there is remaining data in the Stream.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Reads the UTF-8 encoded text representing a single JSON value into a .
+ The Stream will be read to completion.
+ JSON data to parse.
+ The type of the object to convert to and return.
+ A metadata provider for serializable types.
+
+ , , or is .
+ The JSON is invalid, the is not compatible with the JSON, or there is remaining data in the Stream.
+ There is no compatible for or its serializable members.
+ The method on the provided did not return a compatible for .
+ A representation of the JSON value.
+
+
+ Parses the UTF-8 encoded text representing a single JSON value into an instance specified by the .
+ JSON text to parse.
+ Metadata about the type to convert.
+ The JSON is invalid,
+ or there is remaining data in the buffer.
+ A representation of the JSON value.
+
+
+ Parses the UTF-8 encoded text representing a single JSON value into an instance of a specified type.
+ The JSON text to parse.
+ The type of the object to convert to and return.
+ Options to control the behavior during parsing.
+
+ is .
+ The JSON is invalid.
+
+-or-
+
+ is not compatible with the JSON.
+
+-or-
+
+There is remaining data in the span beyond a single JSON value.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Parses the UTF-8 encoded text representing a single JSON value into a .
+ JSON text to parse.
+ The type of the object to convert to and return.
+ A metadata provider for serializable types.
+
+ is .
+ The JSON is invalid, is not compatible with the JSON, or there is remaining data in the Stream.
+ There is no compatible for or its serializable members.
+ The method on the provided did not return a compatible for .
+ A representation of the JSON value.
+
+
+ Parses the text representing a single JSON value into an instance specified by the .
+ JSON text to parse.
+ Metadata about the type to convert.
+
+ is .
+ The JSON is invalid.
+
+-or-
+
+There is remaining data in the string beyond a single JSON value.
+ A representation of the JSON value.
+
+
+ Parses the text representing a single JSON value into an instance of a specified type.
+ The JSON text to parse.
+ The type of the object to convert to and return.
+ Options to control the behavior during parsing.
+
+ is .
+ The JSON is invalid.
+
+-or-
+
+ is not compatible with the JSON.
+
+-or-
+
+There is remaining data in the span beyond a single JSON value.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Parses the text representing a single JSON value into a .
+ JSON text to parse.
+ The type of the object to convert to and return.
+ A metadata provider for serializable types.
+
+ or is .
+
+-or-
+
+ is .
+ The JSON is invalid.
+
+-or-
+
+ is not compatible with the JSON.
+
+-or-
+
+There is remaining data in the string beyond a single JSON value.
+ There is no compatible for or its serializable members.
+ The method of the provided returns for the type to convert.
+ A representation of the JSON value.
+
+
+ Parses the text representing a single JSON value into an instance specified by the .
+ JSON text to parse.
+ Metadata about the type to convert.
+
+ is .
+
+-or-
+
+ is .
+ The JSON is invalid.
+
+-or-
+
+There is remaining data in the string beyond a single JSON value.
+ A representation of the JSON value.
+
+
+ Parses the text representing a single JSON value into an instance of a specified type.
+ The JSON text to parse.
+ The type of the object to convert to and return.
+ Options to control the behavior during parsing.
+
+ or is .
+ The JSON is invalid.
+
+-or-
+
+ is not compatible with the JSON.
+
+-or-
+
+There is remaining data in the string beyond a single JSON value.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Parses the text representing a single JSON value into a .
+ JSON text to parse.
+ The type of the object to convert to and return.
+ A metadata provider for serializable types.
+
+ or is .
+
+-or-
+
+ is .
+ The JSON is invalid.
+
+-or-
+
+ is not compatible with the JSON.
+
+-or-
+
+There is remaining data in the string beyond a single JSON value.
+ There is no compatible for or its serializable members.
+ The method of the provided returns for the type to convert.
+ A representation of the JSON value.
+
+
+ Converts the representing a single JSON value into an instance specified by the .
+ The to convert.
+ Metadata about the type to convert.
+
+ is .
+
+-or-
+
+ is .
+ A representation of the JSON value.
+
+
+ Converts the representing a single JSON value into a .
+ The to convert.
+ The type of the object to convert to and return.
+ Options to control the behavior during parsing.
+
+ or is .
+
+ is not compatible with the JSON.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Converts the representing a single JSON value into a .
+ The to convert.
+ The type of the object to convert to and return.
+ A metadata provider for serializable types.
+
+ is .
+
+-or-
+
+ is .
+
+-or-
+
+ is .
+ The JSON is invalid.
+
+-or-
+
+ is not compatible with the JSON.
+
+-or-
+
+There is remaining data in the string beyond a single JSON value.
+ There is no compatible for or its serializable members.
+ The method of the provided returns for the type to convert.
+ A representation of the JSON value.
+
+
+ Converts the representing a single JSON value into an instance specified by the .
+ The to convert.
+ Metadata about the type to convert.
+
+ is .
+ A representation of the JSON value.
+
+
+ Converts the representing a single JSON value into a .
+ The to convert.
+ The type of the object to convert to and return.
+ Options to control the behavior during parsing.
+
+ is .
+
+ is not compatible with the JSON.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Converts the representing a single JSON value into a .
+ The to convert.
+ The type of the object to convert to and return.
+ A metadata provider for serializable types.
+
+ is .
+
+-or-
+
+ is .
+ The JSON is invalid.
+
+-or-
+
+ is not compatible with the JSON.
+
+-or-
+
+There is remaining data in the string beyond a single JSON value.
+ There is no compatible for or its serializable members.
+ The method of the provided returns for the type to convert.
+ A representation of the JSON value.
+
+
+ Converts the representing a single JSON value into an instance specified by the .
+ The to convert.
+ Metadata about the type to convert.
+
+ is .
+ A representation of the JSON value.
+
+
+ Converts the representing a single JSON value into a .
+ The to convert.
+ The type of the object to convert to and return.
+ Options to control the behavior during parsing.
+
+ is not compatible with the JSON.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Converts the representing a single JSON value into a .
+ The to convert.
+ The type of the object to convert to and return.
+ A metadata provider for serializable types.
+
+ is .
+
+-or-
+
+ is .
+ The JSON is invalid.
+
+-or-
+
+ is not compatible with the JSON.
+
+-or-
+
+There is remaining data in the string beyond a single JSON value.
+ There is no compatible for or its serializable members.
+ The method of the provided returns for the type to convert.
+ A representation of the JSON value.
+
+
+ Reads one JSON value (including objects or arrays) from the provided reader into an instance specified by the .
+ The reader to read.
+ Metadata about the type to convert.
+ The JSON is invalid,
+ is not compatible with the JSON,
+ or a value could not be read from the reader.
+
+ is using unsupported options.
+ A representation of the JSON value.
+
+
+ Reads one JSON value (including objects or arrays) from the provided reader and converts it into an instance of a specified type.
+ The reader to read the JSON from.
+ The type of the object to convert to and return.
+ Options to control the serializer behavior during reading.
+
+ is .
+ The JSON is invalid.
+
+-or-
+
+ is not compatible with the JSON.
+
+-or-
+
+A value could not be read from the reader.
+
+ is using unsupported options.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Reads one JSON value (including objects or arrays) from the provided reader into a .
+ The reader to read.
+ The type of the object to convert to and return.
+ A metadata provider for serializable types.
+
+ or is .
+ The JSON is invalid, is not compatible with the JSON, or a value could not be read from the reader.
+
+ is using unsupported options.
+ There is no compatible for or its serializable members.
+ The method on the provided did not return a compatible for .
+ A representation of the JSON value.
+
+
+ Reads the UTF-8 encoded text representing a single JSON value into a .
+ The Stream will be read to completion.
+ JSON data to parse.
+ Options to control the behavior during reading.
+ The type to deserialize the JSON value into.
+
+ is .
+ The JSON is invalid, is not compatible with the JSON, or there is remaining data in the Stream.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Reads the UTF-8 encoded text representing a single JSON value into a .
+ The Stream will be read to completion.
+ JSON data to parse.
+ Metadata about the type to convert.
+ The type to deserialize the JSON value into.
+
+ or is .
+ The JSON is invalid, is not compatible with the JSON, or there is remaining data in the Stream.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Parses the UTF-8 encoded text representing a single JSON value into an instance of the type specified by a generic type parameter.
+ The JSON text to parse.
+ Options to control the behavior during parsing.
+ The target type of the UTF-8 encoded text.
+ The JSON is invalid.
+
+-or-
+
+ is not compatible with the JSON.
+
+-or-
+
+There is remaining data in the span beyond a single JSON value.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Parses the UTF-8 encoded text representing a single JSON value into a .
+ JSON text to parse.
+ Metadata about the type to convert.
+ The type to deserialize the JSON value into.
+ The JSON is invalid, is not compatible with the JSON, or there is remaining data in the Stream.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Parses the text representing a single JSON value into an instance of the type specified by a generic type parameter.
+ The JSON text to parse.
+ Options to control the behavior during parsing.
+ The type to deserialize the JSON value into.
+ The JSON is invalid.
+
+-or-
+
+ is not compatible with the JSON.
+
+-or-
+
+There is remaining data in the span beyond a single JSON value.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Parses the text representing a single JSON value into a .
+ JSON text to parse.
+ Metadata about the type to convert.
+ The type to deserialize the JSON value into.
+
+ is .
+
+-or-
+
+ is .
+ The JSON is invalid.
+
+-or-
+
+ is not compatible with the JSON.
+
+-or-
+
+There is remaining data in the string beyond a single JSON value.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Parses the text representing a single JSON value into an instance of the type specified by a generic type parameter.
+ The JSON text to parse.
+ Options to control the behavior during parsing.
+ The target type of the JSON value.
+
+ is .
+ The JSON is invalid.
+
+-or-
+
+ is not compatible with the JSON.
+
+-or-
+
+There is remaining data in the string beyond a single JSON value.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Parses the text representing a single JSON value into a .
+ JSON text to parse.
+ Metadata about the type to convert.
+ The type to deserialize the JSON value into.
+
+ is .
+
+-or-
+
+ is .
+ The JSON is invalid.
+
+-or-
+
+ is not compatible with the JSON.
+
+-or-
+
+There is remaining data in the string beyond a single JSON value.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Converts the representing a single JSON value into a .
+ The to convert.
+ Options to control the behavior during parsing.
+ The type to deserialize the JSON value into.
+
+ is .
+
+ is not compatible with the JSON.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Converts the representing a single JSON value into a .
+ The to convert.
+ Metadata about the type to convert.
+ The type to deserialize the JSON value into.
+
+ is .
+
+-or-
+
+ is .
+
+ is not compatible with the JSON.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Converts the representing a single JSON value into a .
+ The to convert.
+ Options to control the behavior during parsing.
+ The type to deserialize the JSON value into.
+
+ is not compatible with the JSON.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Converts the representing a single JSON value into a .
+ The to convert.
+ Metadata about the type to convert.
+ The type to deserialize the JSON value into.
+
+ is .
+
+ is not compatible with the JSON.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Converts the representing a single JSON value into a .
+ The to convert.
+ Options to control the behavior during parsing.
+ The type to deserialize the JSON value into.
+
+ is not compatible with the JSON.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Converts the representing a single JSON value into a .
+ The to convert.
+ Metadata about the type to convert.
+ The type to deserialize the JSON value into.
+
+ is .
+
+ is not compatible with the JSON.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Reads one JSON value (including objects or arrays) from the provided reader into an instance of the type specified by a generic type parameter.
+ The reader to read the JSON from.
+ Options to control serializer behavior during reading.
+ The target type of the JSON value.
+ The JSON is invalid.
+
+-or-
+
+ is not compatible with the JSON.
+
+-or-
+
+A value could not be read from the reader.
+
+ uses unsupported options.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Reads one JSON value (including objects or arrays) from the provided reader into a .
+ The reader to read.
+ Metadata about the type to convert.
+ The type to deserialize the JSON value into.
+ The JSON is invalid, is not compatible with the JSON, or a value could not be read from the reader.
+
+ is using unsupported options.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Reads the UTF-8 encoded text representing a single JSON value into an instance specified by the .
+ The Stream will be read to completion.
+ JSON data to parse.
+ Metadata about the type to convert.
+ The that can be used to cancel the read operation.
+
+ or is .
+ The JSON is invalid,
+ or when there is remaining data in the Stream.
+ A representation of the JSON value.
+
+
+ Asynchronously reads the UTF-8 encoded text representing a single JSON value into an instance of a specified type. The stream will be read to completion.
+ The JSON data to parse.
+ The type of the object to convert to and return.
+ Options to control the behavior during reading.
+ A cancellation token that may be used to cancel the read operation.
+
+ or is .
+ The JSON is invalid.
+
+-or-
+
+ is not compatible with the JSON.
+
+-or-
+
+There is remaining data in the stream.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Reads the UTF-8 encoded text representing a single JSON value into a .
+ The Stream will be read to completion.
+ JSON data to parse.
+ The type of the object to convert to and return.
+ A metadata provider for serializable types.
+ The that can be used to cancel the read operation.
+
+ , , or is .
+ The JSON is invalid, the is not compatible with the JSON, or there is remaining data in the Stream.
+ There is no compatible for or its serializable members.
+ The method on the provided did not return a compatible for .
+ A representation of the JSON value.
+
+
+ Asynchronously reads the UTF-8 encoded text representing a single JSON value into an instance of a type specified by a generic type parameter. The stream will be read to completion.
+ The JSON data to parse.
+ Options to control the behavior during reading.
+ A token that may be used to cancel the read operation.
+ The target type of the JSON value.
+ The JSON is invalid.
+
+-or-
+
+ is not compatible with the JSON.
+
+-or-
+
+There is remaining data in the stream.
+ There is no compatible for or its serializable members.
+
+ is .
+ A representation of the JSON value.
+
+
+ Reads the UTF-8 encoded text representing a single JSON value into a .
+ The Stream will be read to completion.
+ JSON data to parse.
+ Metadata about the type to convert.
+ The which may be used to cancel the read operation.
+ The type to deserialize the JSON value into.
+
+ or is .
+ The JSON is invalid, is not compatible with the JSON, or there is remaining data in the Stream.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Wraps the UTF-8 encoded text into an that can be used to deserialize root-level JSON arrays in a streaming manner.
+ JSON data to parse.
+ Options to control the behavior during reading.
+ The which may be used to cancel the read operation.
+ The element type to deserialize asynchronously.
+
+ is .
+ An representation of the provided JSON array.
+
+
+ Wraps the UTF-8 encoded text into an that can be used to deserialize root-level JSON arrays in a streaming manner.
+ JSON data to parse.
+ Metadata about the element type to convert.
+ The that can be used to cancel the read operation.
+ The element type to deserialize asynchronously.
+
+ or is .
+ An representation of the provided JSON array.
+
+
+ Converts the provided value to UTF-8 encoded JSON text and write it to the .
+ The UTF-8 to write to.
+ The value to convert.
+ Metadata about the type to convert.
+
+ is .
+
+ does not match the type of .
+
+
+ Converts the provided value to UTF-8 encoded JSON text and write it to the .
+ The UTF-8 to write to.
+ The value to convert.
+ The type of the to convert.
+ Options to control the conversion behavior.
+
+ is not compatible with .
+
+ or is .
+ There is no compatible for or its serializable members.
+
+
+ Converts the provided value to UTF-8 encoded JSON text and write it to the .
+ The UTF-8 to write to.
+ The value to convert.
+ The type of the to convert.
+ A metadata provider for serializable types.
+
+ is not compatible with .
+
+ , , or is .
+ There is no compatible for or its serializable members.
+
+
+ Converts the provided value into a .
+ The value to convert.
+ Metadata about the type to convert.
+
+ is .
+
+ does not match the type of .
+ A representation of the value.
+
+
+ Converts the value of a specified type into a JSON string.
+ The value to convert.
+ The type of the to convert.
+ Options to control the conversion behavior.
+
+ is not compatible with .
+
+ is .
+ There is no compatible for or its serializable members.
+ The JSON string representation of the value.
+
+
+ Converts the provided value into a .
+ The value to convert.
+ The type of the to convert.
+ A metadata provider for serializable types.
+ There is no compatible for or its serializable members.
+ The method of the provided returns for the type to convert.
+
+ or is .
+ A representation of the value.
+
+
+ Writes one JSON value (including objects or arrays) to the provided writer.
+ The writer to write.
+ The value to convert and write.
+ Metadata about the type to convert.
+
+ or is .
+
+ does not match the type of .
+
+
+ Writes the JSON representation of the specified type to the provided writer.
+ The JSON writer to write to.
+ The value to convert and write.
+ The type of the to convert.
+ Options to control serialization behavior.
+
+ is not compatible with
+
+ or is .
+ There is no compatible for or its serializable members.
+
+
+ Writes one JSON value (including objects or arrays) to the provided writer.
+ A JSON writer to write to.
+ The value to convert and write.
+ The type of the to convert.
+ A metadata provider for serializable types.
+
+ is not compatible with .
+
+ or is .
+ There is no compatible for or its serializable members.
+ The method of the provided returns for the type to convert.
+
+
+ Converts the value of a type specified by a generic type parameter into a JSON string.
+ The value to convert.
+ Options to control serialization behavior.
+ The type of the value to serialize.
+ There is no compatible for or its serializable members.
+ A JSON string representation of the value.
+
+
+ Converts the provided value into a .
+ The value to convert.
+ Metadata about the type to convert.
+ The type of the value to serialize.
+ There is no compatible for or its serializable members.
+
+ is .
+ A representation of the value.
+
+
+ Converts the provided value to UTF-8 encoded JSON text and write it to the .
+ The UTF-8 to write to.
+ The value to convert.
+ Options to control the conversion behavior.
+ The type of the value to serialize.
+
+ is .
+ There is no compatible for or its serializable members.
+
+
+ Converts the provided value to UTF-8 encoded JSON text and write it to the .
+ The UTF-8 to write to.
+ The value to convert.
+ Metadata about the type to convert.
+ The type of the value to serialize.
+
+ is .
+ There is no compatible for or its serializable members.
+
+
+ Writes the JSON representation of a type specified by a generic type parameter to the provided writer.
+ A JSON writer to write to.
+ The value to convert and write.
+ Options to control serialization behavior.
+ The type of the value to serialize.
+
+ is .
+ There is no compatible for or its serializable members.
+
+
+ Writes one JSON value (including objects or arrays) to the provided writer.
+ The writer to write.
+ The value to convert and write.
+ Metadata about the type to convert.
+ The type of the value to serialize.
+
+ or is .
+ There is no compatible for or its serializable members.
+
+
+ Converts the provided value to UTF-8 encoded JSON text and writes it to the .
+ The UTF-8 to write to.
+ The value to convert.
+ Metadata about the type to convert.
+ The that can be used to cancel the write operation.
+
+ is .
+
+ does not match the type of .
+ A task that represents the asynchronous write operation.
+
+
+ Asynchronously converts the value of a specified type to UTF-8 encoded JSON text and writes it to the specified stream.
+ The UTF-8 stream to write to.
+ The value to convert.
+ The type of the to convert.
+ Options to control serialization behavior.
+ A token that may be used to cancel the write operation.
+
+ is not compatible with .
+
+ or is .
+ There is no compatible for or its serializable members.
+ A task that represents the asynchronous write operation.
+
+
+ Converts the provided value to UTF-8 encoded JSON text and write it to the .
+ The UTF-8 to write to.
+ The value to convert.
+ The type of the to convert.
+ A metadata provider for serializable types.
+ The that can be used to cancel the write operation.
+
+ is not compatible with .
+
+ , , or is .
+ There is no compatible for or its serializable members.
+ A task that represents the asynchronous write operation.
+
+
+ Asynchronously converts a value of a type specified by a generic type parameter to UTF-8 encoded JSON text and writes it to a stream.
+ The UTF-8 stream to write to.
+ The value to convert.
+ Options to control serialization behavior.
+ A token that may be used to cancel the write operation.
+ The type of the value to serialize.
+
+ is .
+ There is no compatible for or its serializable members.
+ A task that represents the asynchronous write operation.
+
+
+ Converts the provided value to UTF-8 encoded JSON text and write it to the .
+ The UTF-8 to write to.
+ The value to convert.
+ Metadata about the type to convert.
+ The that can be used to cancel the write operation.
+ The type of the value to serialize.
+
+ is .
+ There is no compatible for or its serializable members.
+ A task that represents the asynchronous write operation.
+
+
+ Converts the provided value into a .
+ The value to convert.
+ Metadata about the type to convert.
+
+ is .
+
+ does not match the type of .
+ A representation of the value.
+
+
+ Converts the provided value into a .
+ The value to convert.
+ The type of the to convert.
+ Options to control the conversion behavior.
+
+ is not compatible with .
+
+ is .
+ There is no compatible for or its serializable members.
+ A representation of the value.
+
+
+ Converts the provided value into a .
+ The value to convert.
+ The type of the to convert.
+ A metadata provider for serializable types.
+ There is no compatible for or its serializable members.
+ The method of the provided returns for the type to convert.
+
+ or is .
+ A representation of the value.
+
+
+ Converts the provided value into a .
+ The value to convert.
+ Options to control the conversion behavior.
+ The type of the value to serialize.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Converts the provided value into a .
+ The value to convert.
+ Metadata about the type to convert.
+ The type of the value to serialize.
+ There is no compatible for or its serializable members.
+
+ is .
+ A representation of the value.
+
+
+ Converts the provided value into a .
+ The value to convert.
+ Metadata about the type to convert.
+
+ is .
+
+ does not match the type of .
+ A representation of the value.
+
+
+ Converts the provided value into a .
+ The value to convert.
+ The type of the to convert.
+ Options to control the conversion behavior.
+
+ is not compatible with .
+
+ is .
+ There is no compatible for or its serializable members.
+ A representation of the value.
+
+
+ Converts the provided value into a .
+ The value to convert.
+ The type of the to convert.
+ A metadata provider for serializable types.
+ There is no compatible for or its serializable members.
+ The method of the provided returns for the type to convert.
+
+ or is .
+ A representation of the value.
+
+
+ Converts the provided value into a .
+ The value to convert.
+ Options to control the conversion behavior.
+ The type of the value to serialize.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Converts the provided value into a .
+ The value to convert.
+ Metadata about the type to convert.
+ The type of the value to serialize.
+ There is no compatible for or its serializable members.
+
+ is .
+ A representation of the value.
+
+
+ Converts the provided value into a .
+ The value to convert.
+ Metadata about the type to convert.
+
+ is .
+
+ does not match the type of .
+ A representation of the value.
+
+
+ Converts the provided value into a .
+ The value to convert.
+ The type of the to convert.
+ Options to control the conversion behavior.
+
+ is not compatible with .
+
+ is .
+ There is no compatible for or its serializable members.
+ A representation of the value.
+
+
+ Converts the provided value into a .
+ The value to convert.
+ The type of the to convert.
+ A metadata provider for serializable types.
+ There is no compatible for or its serializable members.
+ The method of the provided returns for the type to convert.
+
+ or is .
+ A representation of the value.
+
+
+ Converts the provided value into a .
+ The value to convert.
+ Options to control the conversion behavior.
+ The type of the value to serialize.
+ There is no compatible for or its serializable members.
+ A representation of the JSON value.
+
+
+ Converts the provided value into a .
+ The value to convert.
+ Metadata about the type to convert.
+ The type of the value to serialize.
+ There is no compatible for or its serializable members.
+
+ is .
+ A representation of the value.
+
+
+ Converts the provided value into a array.
+ The value to convert.
+ Metadata about the type to convert.
+
+ is .
+
+ does not match the type of .
+ A UTF-8 representation of the value.
+
+
+ Converts a value of the specified type into a JSON string, encoded as UTF-8 bytes.
+ The value to convert.
+ The type of the to convert.
+ Options to control the conversion behavior.
+
+ is not compatible with .
+
+ is .
+ There is no compatible for or its serializable members.
+ A JSON string representation of the value, encoded as UTF-8 bytes.
+
+
+ Converts the provided value into a array.
+ The value to convert.
+ The type of the to convert.
+ A metadata provider for serializable types.
+
+ is not compatible with .
+
+ is .
+ There is no compatible for or its serializable members.
+ The method of the provided returns for the type to convert.
+ A UTF-8 representation of the value.
+
+
+ Converts the value of a type specified by a generic type parameter into a JSON string, encoded as UTF-8 bytes.
+ The value to convert.
+ Options to control the conversion behavior.
+ The type of the value.
+ There is no compatible for or its serializable members.
+ A JSON string representation of the value, encoded as UTF-8 bytes.
+
+
+ Converts the provided value into a array.
+ The value to convert.
+ Metadata about the type to convert.
+ The type of the value to serialize.
+ There is no compatible for or its serializable members.
+
+ is .
+ A UTF-8 representation of the value.
+
+
+ Indicates whether unconfigured instances should be set to use the reflection-based .
+
+
+ Specifies scenario-based default serialization options that can be used to construct a instance.
+
+
+
+ General-purpose option values. These are the same settings that are applied if a member isn't specified.
+ For information about the default property values that are applied, see JsonSerializerOptions properties.
+
+
+
+
+ Option values appropriate to Web-based scenarios.
+ This member implies that:
+ - Property names are treated as case-insensitive.
+ - "camelCase" name formatting should be employed.
+ - Quoted numbers (JSON strings for number properties) are allowed.
+
+
+
+ Provides options to be used with .
+
+
+ Initializes a new instance of the class.
+
+
+ Constructs a new instance with a predefined set of options determined by the specified .
+ The to reason about.
+
+
+ Copies the options from a instance to a new instance.
+ The options instance to copy options from.
+
+ is .
+
+
+ Appends a new to the metadata resolution of the current instance.
+ The generic definition of the specified context type.
+
+
+ Returns the converter for the specified type.
+ The type to return a converter for.
+ The configured for returned an invalid converter.
+ There is no compatible for or its serializable members.
+ The first converter that supports the given type.
+
+
+ Gets the contract metadata resolved by the current instance.
+ The type to resolve contract metadata for.
+
+ is .
+
+ is not valid for serialization.
+ The contract metadata resolved for .
+
+
+ Marks the current instance as read-only to prevent any further user modification.
+ The instance does not specify a setting.
+
+
+ Marks the current instance as read-only preventing any further user modification.
+ Populates unconfigured properties with the reflection-based default.
+
+ The instance does not specify a setting. Thrown when is .
+ -or-
+ The feature switch has been turned off.
+
+
+
+ Tries to get the contract metadata resolved by the current instance.
+ The type to resolve contract metadata for.
+ When this method returns, contains the resolved contract metadata, or if the contract could not be resolved.
+
+ is .
+
+ is not valid for serialization.
+
+ if a contract for was found, or otherwise.
+
+
+ Get or sets a value that indicates whether an extra comma at the end of a list of JSON values in an object or array is allowed (and ignored) within the JSON payload being deserialized.
+ This property was set after serialization or deserialization has occurred.
+
+ if an extra comma at the end of a list of JSON values in an object or array is allowed (and ignored); otherwise.
+
+
+ Gets the list of user-defined converters that were registered.
+ The list of custom converters.
+
+
+ Gets a read-only, singleton instance of that uses the default configuration.
+
+
+ Gets or sets the default buffer size, in bytes, to use when creating temporary buffers.
+ The buffer size is less than 1.
+ This property was set after serialization or deserialization has occurred.
+ The default buffer size in bytes.
+
+
+ Gets or sets a value that determines when properties with default values are ignored during serialization or deserialization.
+ The default value is .
+ This property is set to .
+ This property is set after serialization or deserialization has occurred.
+
+-or-
+
+ has been set to . These properties cannot be used together.
+
+
+ Gets or sets the policy used to convert a key's name to another format, such as camel-casing.
+ The policy used to convert a key's name to another format.
+
+
+ Gets or sets the encoder to use when escaping strings, or to use the default encoder.
+ The JavaScript character encoding.
+
+
+ Gets or sets a value that indicates whether values are ignored during serialization and deserialization. The default value is .
+ This property was set after serialization or deserialization has occurred.
+
+-or-
+
+ has been set to a non-default value. These properties cannot be used together.
+
+ if null values are ignored during serialization and deserialization; otherwise, .
+
+
+ Gets or sets a value that indicates whether read-only fields are ignored during serialization. A field is read-only if it is marked with the keyword. The default value is .
+ This property is set after serialization or deserialization has occurred.
+
+ if read-only fields are ignored during serialization; otherwise.
+
+
+ Gets a value that indicates whether read-only properties are ignored during serialization. The default value is .
+ This property was set after serialization or deserialization has occurred.
+
+ if read-only properties are ignored during serialization; otherwise, .
+
+
+ Gets or sets a value that indicates whether fields are handled during serialization and deserialization.
+ The default value is .
+ This property is set after serialization or deserialization has occurred.
+
+ if fields are included during serialization; otherwise, .
+
+
+ Gets a value that indicates whether the current instance has been locked for user modification.
+
+
+ Gets or sets the maximum depth allowed when serializing or deserializing JSON, with the default value of 0 indicating a maximum depth of 64.
+ This property was set after serialization or deserialization has occurred.
+ The max depth is set to a negative value.
+ The maximum depth allowed when serializing or deserializing JSON.
+
+
+ Gets or sets an object that specifies how number types should be handled when serializing or deserializing.
+ This property is set after serialization or deserialization has occurred.
+
+
+ Gets or sets the preferred object creation handling for properties when deserializing JSON.
+ When set to , all properties that are capable of reusing the existing instance will be populated.
+
+
+ Gets or sets a value that indicates whether a property's name uses a case-insensitive comparison during deserialization. The default value is .
+
+ if property names are compared case-insensitively; otherwise, .
+
+
+ Gets or sets a value that specifies the policy used to convert a property's name on an object to another format, such as camel-casing, or to leave property names unchanged.
+ A property naming policy, or to leave property names unchanged.
+
+
+ Gets or sets a value that defines how comments are handled during deserialization.
+ This property was set after serialization or deserialization has occurred.
+ The comment handling enum is set to a value that is not supported (or not within the enum range).
+ A value that indicates whether comments are allowed, disallowed, or skipped.
+
+
+ Gets or sets an object that specifies how object references are handled when reading and writing JSON.
+
+
+ Gets or sets the contract resolver used by this instance.
+ The property is set after serialization or deserialization has occurred.
+
+
+ Gets the list of chained contract resolvers used by this instance.
+
+
+ Gets or sets an object that specifies how deserializing a type declared as an is handled during deserialization.
+
+
+ Gets or sets an object that specifies how handles JSON properties that cannot be mapped to a specific .NET member when deserializing object types.
+
+
+ Gets or sets a value that indicates whether JSON should use pretty printing. By default, JSON is serialized without any extra white space.
+ This property was set after serialization or deserialization has occurred.
+
+ if JSON is pretty printed on serialization; otherwise, . The default is .
+
+
+ Defines the various JSON tokens that make up a JSON text.
+
+
+ The token type is a comment string.
+
+
+ The token type is the end of a JSON array.
+
+
+ The token type is the end of a JSON object.
+
+
+ The token type is the JSON literal false.
+
+
+ There is no value (as distinct from ). This is the default token type if no data has been read by the .
+
+
+ The token type is the JSON literal null.
+
+
+ The token type is a JSON number.
+
+
+ The token type is a JSON property name.
+
+
+ The token type is the start of a JSON array.
+
+
+ The token type is the start of a JSON object.
+
+
+ The token type is a JSON string.
+
+
+ The token type is the JSON literal true.
+
+
+ Specifies the data type of a JSON value.
+
+
+ A JSON array.
+
+
+ The JSON value false.
+
+
+ The JSON value null.
+
+
+ A JSON number.
+
+
+ A JSON object.
+
+
+ A JSON string.
+
+
+ The JSON value true.
+
+
+ There is no value (as distinct from ).
+
+
+ Allows the user to define custom behavior when writing JSON using the .
+
+
+ Gets or sets the encoder to use when escaping strings, or to use the default encoder.
+ The JavaScript character encoder used to override the escaping behavior.
+
+
+ Gets or sets a value that indicates whether the should format the JSON output, which includes indenting nested JSON tokens, adding new lines, and adding white space between property names and values.
+
+ if the JSON output is formatted; if the JSON is written without any extra white space. The default is .
+
+
+ Gets or sets the maximum depth allowed when writing JSON, with the default (that is, 0) indicating a max depth of 1000.
+ Thrown when the max depth is set to a negative value.
+
+
+ Gets or sets a value that indicates whether the should skip structural validation and allow the user to write invalid JSON.
+
+ if structural validation is skipped and invalid JSON is allowed; if an is thrown on any attempt to write invalid JSON.
+
+
+ Represents a mutable JSON array.
+
+
+ Initializes a new instance of the class that is empty.
+ Options to control the behavior.
+
+
+ Initializes a new instance of the class that contains items from the specified array.
+ The items to add to the new .
+
+
+ Initializes a new instance of the class that contains items from the specified params array.
+ Options to control the behavior.
+ The items to add to the new .
+
+
+ Adds a to the end of the .
+ The to be added to the end of the .
+
+
+ Adds an object to the end of the .
+ The object to be added to the end of the .
+ The type of object to be added.
+
+
+ Removes all elements from the .
+
+
+ Determines whether an element is in the .
+ The object to locate in the .
+
+ if is found in the ; otherwise, .
+
+
+ Initializes a new instance of the class that contains items from the specified .
+ The .
+ Options to control the behavior.
+ The is not a .
+ The new instance of the class that contains items from the specified .
+
+
+ Returns an enumerator that iterates through the .
+ An for the .
+
+
+ Returns an enumerable that wraps calls to .
+ The type of the value to obtain from the .
+ An enumerable iterating over values of the array.
+
+
+ The object to locate in the .
+ The to locate in the .
+ The index of item if found in the list; otherwise, -1.
+
+
+ Inserts an element into the at the specified index.
+ The zero-based index at which should be inserted.
+ The to insert.
+
+ is less than 0 or is greater than .
+
+
+ Removes the first occurrence of a specific from the .
+ The to remove from the .
+
+ if is successfully removed; otherwise, .
+
+
+ Removes the element at the specified index of the .
+ The zero-based index of the element to remove.
+
+ is less than 0 or is greater than .
+
+
+ Copies the entire to a compatible one-dimensional array, starting at the specified index of the target array.
+ The one-dimensional that is the destination of the elements copied from . The Array must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+ is .
+
+ is less than 0.
+ The number of elements in the source ICollection is greater than the available space from to the end of the destination .
+
+
+ Returns an enumerator that iterates through the .
+ A for the .
+
+
+ Writes the into the provided as JSON.
+ The .
+ Options to control the serialization behavior.
+
+
+ Gets the number of elements contained in the .
+ The number of elements contained in the .
+
+
+ Returns .
+
+ if the is read-only; otherwise, .
+
+
+ The base class that represents a single node within a mutable JSON document.
+
+
+ Casts to the derived type.
+ The node is not a .
+ A .
+
+
+ Casts to the derived type.
+ The node is not a .
+ A .
+
+
+ Casts to the derived type.
+ The node is not a .
+ A .
+
+
+ Creates a new instance of the class. All child nodes are recursively cloned.
+ A new cloned instance of the current node.
+
+
+ Compares the values of two nodes, including the values of all descendant nodes.
+ The to compare.
+ The to compare.
+
+ if the tokens are equal; otherwise .
+
+
+ Returns the index of the current node from the parent .
+ The current parent is not a .
+ The index of the current node.
+
+
+ Gets the JSON path.
+ The JSON Path value.
+
+
+ Returns the property name of the current node from the parent object.
+ The current parent is not a .
+ The property name of the current node.
+
+
+ Gets the value for the current .
+ The type of the value to obtain from the .
+ The current cannot be represented as a {TValue}.
+ The current is not a or is not compatible with {TValue}.
+ A value converted from the instance.
+
+
+ Returns the of the current instance.
+ The json value kind of the current instance.
+
+
+ Defines an explicit conversion of a given to a .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a given to a .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a given to a .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a given to a .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a given to a .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a given to a .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a given to a .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a given to a .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a given to an .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a given to an .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a given to an .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a specified nullable to a nullable .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a specified nullable to a nullable .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a given to a .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a specified nullable to a nullable .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a specified nullable to a nullable .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a specified nullable to a nullable .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a specified nullable to a nullable .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a specified nullable to a nullable .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a specified nullable to a nullable .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a specified nullable to a nullable .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a specified nullable to a nullable .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a specified nullable to a nullable .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a specified nullable to a nullable .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a specified nullable to a nullable .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a specified nullable to a nullable .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a specified nullable to a nullable .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a given to an .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a given to a .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a specified nullable to a nullable .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a given to a .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a given to a .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an explicit conversion of a given to a .
+ A to explicitly convert.
+ A value converted from the instance.
+
+
+ Defines an implicit conversion of a given to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a given to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a given to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a given to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a given to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a given to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a given to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a given to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a given to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a given to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a given to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a nullable .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Defines an implicit conversion of a specified nullable to a .
+ A to implicitly convert.
+ A instance converted from the parameter.
+
+
+ Parses a as UTF-8-encoded data representing a single JSON value into a . The Stream will be read to completion.
+ JSON text to parse.
+ Options to control the node behavior after parsing.
+ Options to control the document behavior during parsing.
+
+ does not represent a valid single JSON value.
+ A representation of the JSON value.
+
+
+ Parses text representing a single JSON value.
+ JSON text to parse.
+ Options to control the node behavior after parsing.
+ Options to control the document behavior during parsing.
+
+ does not represent a valid single JSON value.
+ A representation of the JSON value.
+
+
+ Parses text representing a single JSON value.
+ JSON text to parse.
+ Options to control the node behavior after parsing.
+ Options to control the document behavior during parsing.
+
+ is .
+
+ does not represent a valid single JSON value.
+ A representation of the JSON value.
+
+
+ Parses one JSON value (including objects or arrays) from the provided reader.
+ The reader to read.
+ Options to control the behavior.
+
+ is using unsupported options.
+ The current token does not start or represent a value.
+ A value could not be read from the reader.
+ The from the reader.
+
+
+ Parses a as UTF-8 encoded data representing a single JSON value into a . The stream will be read to completion.
+ The JSON text to parse.
+ Options to control the node behavior after parsing.
+ Options to control the document behavior during parsing.
+ The token to monitor for cancellation requests.
+
+ does not represent a valid single JSON value.
+ A to produce a representation of the JSON value.
+
+
+ Replaces this node with a new value.
+ The value that replaces this node.
+ The type of value to be replaced.
+
+
+ Converts the current instance to string in JSON format.
+ Options to control the serialization behavior.
+ JSON representation of current instance.
+
+
+ Gets a string representation for the current value appropriate to the node type.
+ A string representation for the current value appropriate to the node type.
+
+
+ Writes the into the provided as JSON.
+ The .
+ Options to control the serialization behavior.
+ The parameter is .
+
+
+ Gets or sets the element at the specified index.
+ The zero-based index of the element to get or set.
+
+ is less than 0 or is greater than the number of properties.
+ The current is not a .
+
+
+ Gets or sets the element with the specified property name.
+ If the property is not found, is returned.
+ The name of the property to return.
+
+ is .
+ The current is not a .
+
+
+ Gets the options to control the behavior.
+
+
+ Gets the parent .
+ If there is no parent, is returned.
+ A parent can either be a or a .
+
+
+ Gets the root .
+
+
+ Options to control behavior.
+
+
+ Gets or sets a value that indicates whether property names on are case insensitive.
+
+ if property names are case insensitive; if property names are case sensitive.
+
+
+ Represents a mutable JSON object.
+
+
+ Initializes a new instance of the class that contains the specified .
+ The properties to be added.
+ Options to control the behavior.
+
+
+ Initializes a new instance of the class that is empty.
+ Options to control the behavior.
+
+
+ Adds the specified property to the .
+ The KeyValuePair structure representing the property name and value to add to the .
+ An element with the same property name already exists in the .
+ The property name of is .
+
+
+ Adds an element with the provided property name and value to the .
+ The property name of the element to add.
+ The value of the element to add.
+
+ is .
+ An element with the same property name already exists in the .
+
+
+ Removes all elements from the .
+
+
+ Determines whether the contains an element with the specified property name.
+ The property name to locate in the .
+
+ is .
+
+ if the contains an element with the specified property name; otherwise, .
+
+
+ Initializes a new instance of the class that contains properties from the specified .
+ The .
+ Options to control the behavior.
+ The new instance of the class that contains properties from the specified .
+
+
+ Returns an enumerator that iterates through the .
+ An enumerator that iterates through the .
+
+
+ Removes the element with the specified property name from the .
+ The property name of the element to remove.
+
+ is .
+
+ if the element is successfully removed; otherwise, .
+
+
+ Determines whether the contains a specific property name and reference.
+ The element to locate in the .
+
+ if the contains an element with the property name; otherwise, .
+
+
+ Copies the elements of the to an array of type KeyValuePair starting at the specified array index.
+ The one-dimensional Array that is the destination of the elements copied from .
+ The zero-based index in at which copying begins.
+
+ is .
+
+ is less than 0.
+ The number of elements in the source ICollection is greater than the available space from to the end of the destination .
+
+
+ Removes a key and value from the .
+ The KeyValuePair structure representing the property name and value to remove from the .
+
+ if the element is successfully removed; otherwise, .
+
+
+ Gets the value associated with the specified property name.
+ The property name of the value to get.
+ When this method returns, contains the value associated with the specified property name, if the property name is found; otherwise, .
+
+ is .
+
+ if the contains an element with the specified property name; otherwise, .
+
+
+ Returns an enumerator that iterates through the .
+ An enumerator that iterates through the .
+
+
+ Returns the value of a property with the specified name.
+ The name of the property to return.
+ The JSON value of the property with the specified name.
+
+ if a property with the specified name was found; otherwise, .
+
+
+ Writes the into the provided as JSON.
+ The .
+ Options to control the serialization behavior.
+
+
+ Gets the number of elements contained in .
+ The number of elements contained in the .
+
+
+ Returns .
+
+ if the is read-only; otherwise, .
+
+
+ Gets a collection containing the property names in the .
+ An containing the keys of the object that implements .
+
+
+ Gets a collection containing the property values in the .
+ An containing the values in the object that implements .
+
+
+ Represents a mutable JSON value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The underlying value of the new instance.
+ Options to control the behavior.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The value to create.
+ Options to control the behavior.
+ The type of value to create.
+ The new instance of the class that contains the specified value.
+
+
+ Initializes a new instance of the class that contains the specified value.
+ The value to create.
+ The that will be used to serialize the value.
+ Options to control the behavior.
+ The type of value to create.
+ The new instance of the class that contains the specified value.
+
+
+ Tries to obtain the current JSON value and returns a value that indicates whether the operation succeeded.
+ When this method returns, contains the parsed value.
+ The type of value to obtain.
+
+ if the value can be successfully obtained; otherwise, .
+
+
+ Specifies that the JSON type should have its method called after deserialization occurs.
+
+
+ The method that is called after deserialization.
+
+
+ Specifies that the type should have its method called before deserialization occurs.
+
+
+ The method that is called before deserialization.
+
+
+ Specifies that the type should have its method called after serialization occurs.
+
+
+ The method that is called after serialization.
+
+
+ Specifies that the type should have its method called before serialization occurs.
+
+
+ The method that is called before serialization.
+
+
+ Provides the base class for serialization attributes.
+
+
+ Creates a new instance of the .
+
+
+ When placed on a constructor, indicates that the constructor should be used to create instances of the type on deserialization.
+
+
+ Initializes a new instance of .
+
+
+ Converts an object or value to or from JSON.
+
+
+ When overridden in a derived class, determines whether the converter instance can convert the specified object type.
+ The type of the object to check whether it can be converted by this converter instance.
+
+ if the instance can convert the specified object type; otherwise, .
+
+
+ Gets the type being converted by the current converter instance.
+
+
+ Converts an object or value to or from JSON.
+ The type of object or value handled by the converter.
+
+
+ Initializes a new instance.
+
+
+ Determines whether the specified type can be converted.
+ The type to compare against.
+
+ if the type can be converted; otherwise, .
+
+
+ Reads and converts the JSON to type .
+ The reader.
+ The type to convert.
+ An object that specifies serialization options to use.
+ The converted value.
+
+
+ Reads a dictionary key from a JSON property name.
+ The to read from.
+ The type to convert.
+ The options to use when reading the value.
+ The value that was converted.
+
+
+ Writes a specified value as JSON.
+ The writer to write to.
+ The value to convert to JSON.
+ An object that specifies serialization options to use.
+
+
+ Writes a dictionary key as a JSON property name.
+ The to write to.
+ The value to convert. The value of determines if the converter handles values.
+ The options to use when writing the value.
+
+
+ Gets a value that indicates whether should be passed to the converter on serialization, and whether should be passed on deserialization.
+
+
+ Gets the type being converted by the current converter instance.
+
+
+ When placed on a property or type, specifies the converter type to use.
+
+
+ Initializes a new instance of .
+
+
+ Initializes a new instance of with the specified converter type.
+ The type of the converter.
+
+
+ When overridden in a derived class and is , allows the derived class to create a in order to pass additional state.
+ The type of the converter.
+ The custom converter.
+
+
+ Gets the type of the , or if it was created without a type.
+ The type of the , or if it was created without a type.
+
+
+ Supports converting several types by using a factory pattern.
+
+
+ When overridden in a derived class, initializes a new instance of the class.
+
+
+ Creates a converter for a specified type.
+ The type handled by the converter.
+ The serialization options to use.
+ A converter for which is compatible with .
+
+
+ Gets the type being converted by the current converter instance.
+
+
+ When placed on a type declaration, indicates that the specified subtype should be opted into polymorphic serialization.
+
+
+ Initializes a new attribute with specified parameters.
+ A derived type that should be supported in polymorphic serialization of the declared based type.
+
+
+ Initializes a new attribute with specified parameters.
+ A derived type that should be supported in polymorphic serialization of the declared base type.
+ The type discriminator identifier to be used for the serialization of the subtype.
+
+
+ Initializes a new attribute with specified parameters.
+ A derived type that should be supported in polymorphic serialization of the declared base type.
+ The type discriminator identifier to be used for the serialization of the subtype.
+
+
+ A derived type that should be supported in polymorphic serialization of the declared base type.
+
+
+ The type discriminator identifier to be used for the serialization of the subtype.
+
+
+ When placed on a property of type , any properties that do not have a matching member are added to that dictionary during deserialization and written during serialization.
+
+
+ Initializes a new instance of the class.
+
+
+ Prevents a property from being serialized or deserialized.
+
+
+ Initializes a new instance of .
+
+
+ Gets or sets the condition that must be met before a property will be ignored.
+
+
+ Controls how the ignores properties on serialization and deserialization.
+
+
+ Property is always ignored.
+
+
+ Property is always serialized and deserialized, regardless of configuration.
+
+
+ Property is ignored only if it equals the default value for its type.
+
+
+ Property is ignored if its value is . This is applied only to reference-type properties and fields.
+
+
+ Indicates that the member should be included for serialization and deserialization.
+ The attribute is applied to a non-public property.
+
+
+ Initializes a new instance of .
+
+
+ The to be used at run time.
+
+
+ Specifies that the built-in be used to convert JSON property names.
+
+
+ Specifies that the built-in be used to convert JSON property names.
+
+
+ Specifies that the built-in policy be used to convert JSON property names.
+
+
+ Specifies that the built-in policy be used to convert JSON property names.
+
+
+ Specifies that the built-in policy be used to convert JSON property names.
+
+
+ Specifies that JSON property names should not be converted.
+
+
+ Converter to convert enums to and from numeric values.
+ The enum type that this converter targets.
+
+
+ Initializes a new instance of .
+
+
+ When overridden in a derived class, determines whether the converter instance can convert the specified object type.
+ The type of the object to check whether it can be converted by this converter instance.
+
+ true
if the instance can convert the specified object type; otherwise, false
.
+
+
+ Creates a converter for a specified type.
+ The type handled by the converter.
+ The serialization options to use.
+ A converter for which T
is compatible with typeToConvert
.
+
+
+ Determines how handles numbers when serializing and deserializing.
+
+
+ The "NaN", "Infinity", and "-Infinity" tokens can be read as floating-point constants, and the and values for these constants will be written as their corresponding JSON string representations.
+
+
+ Numbers can be read from tokens. Does not prevent numbers from being read from token.
+
+
+ Numbers will only be read from tokens and will only be written as JSON numbers (without quotes).
+
+
+ Numbers will be written as JSON strings (with quotes), not as JSON numbers.
+
+
+ When placed on a type, property, or field, indicates what settings should be used when serializing or deserializing numbers.
+
+
+ Initializes a new instance of .
+ A bitwise combination of the enumeration values that specify how number types should be handled when serializing or deserializing.
+
+
+ Indicates what settings should be used when serializing or deserializing numbers.
+ An object that determines the number serialization and deserialization settings.
+
+
+ Determines how deserialization will handle object creation for fields or properties.
+
+
+ Attempt to populate any instances already found on a deserialized field or property.
+
+
+ A new instance will always be created when deserializing a field or property.
+
+
+ Determines how deserialization handles object creation for fields or properties.
+
+
+ Initializes a new instance of .
+ The handling to apply to the current member.
+
+
+ Gets the configuration to use when deserializing members.
+
+
+ When placed on a type, indicates that the type should be serialized polymorphically.
+
+
+ Creates a new instance.
+
+
+ Gets or sets a value that indicates whether the deserializer should ignore any unrecognized type discriminator IDs and revert to the contract of the base type.
+
+ to instruct the deserializer to ignore any unrecognized type discriminator IDs and revert to the contract of the base type; to fail the deserialization for unrecognized type discriminator IDs.
+
+
+ Gets or sets a custom type discriminator property name for the polymorhic type.
+ Uses the default '$type' property name if left unset.
+
+
+ Gets or sets the behavior when serializing an undeclared derived runtime type.
+
+
+ Specifies the property name that is present in the JSON when serializing and deserializing. This overrides any naming policy specified by .
+
+
+ Initializes a new instance of with the specified property name.
+ The name of the property.
+
+
+ Gets the name of the property.
+ The name of the property.
+
+
+ Specifies the property order that is present in the JSON when serializing. Lower values are serialized first.
+ If the attribute is not specified, the default value is 0.
+
+
+ Initializes a new instance of with the specified order.
+ The order of the property.
+
+
+ Gets the serialization order of the property.
+ The serialization order of the property.
+
+
+ Indicates that the annotated member must bind to a JSON property on deserialization.
+
+
+ Initializes a new instance of .
+
+
+ Instructs the System.Text.Json source generator to generate source code to help optimize performance when serializing and deserializing instances of the specified type and types in its object graph.
+
+
+ Initializes a new instance of with the specified type.
+ The type to generate source code for.
+
+
+ Gets or sets the mode that indicates what the source generator should generate for the type. If the value is , then the setting specified on will be used.
+
+
+ Gets or sets the name of the property for the generated for the type on the generated, derived type.
+
+
+ Provides metadata about a set of types that is relevant to JSON serialization.
+
+
+ Creates an instance of and binds it with the indicated .
+ The run time provided options for the context instance.
+
+
+ Gets metadata for the specified type.
+ The type to fetch metadata for.
+ The metadata for the specified type, or if the context has no metadata for the type.
+
+
+ Resolves a contract for the requested type and options.
+ The type to be resolved.
+ The configuration to use when resolving the metadata.
+ A instance matching the requested type, or if no contract could be resolved.
+
+
+ Gets the default run-time options for the context.
+
+
+ Gets the run-time specified options of the context. If no options were passed when instantiating the context, then a new instance is bound and returned.
+
+
+ The generation mode for the System.Text.Json source generator.
+
+
+ When specified on , indicates that both type-metadata initialization logic and optimized serialization logic should be generated for all types. When specified on , indicates that the setting on should be used.
+
+
+ Instructs the JSON source generator to generate type-metadata initialization logic.
+
+
+ Instructs the JSON source generator to generate optimized serialization logic.
+
+
+ Instructs the System.Text.Json source generator to assume the specified options will be used at run time via .
+
+
+ Initializes a new instance of .
+
+
+ Constructs a new instance with a predefined set of options determined by the specified .
+ The to reason about.
+
+ is invalid.
+
+
+ Gets or sets the default value of .
+
+
+ Gets or sets the default value of .
+
+
+ Gets or sets the default value of .
+
+
+ Gets or sets the default ignore condition.
+
+
+ Gets or sets the default value of .
+
+
+ Gets or sets the source generation mode for types that don't explicitly set the mode with .
+
+
+ Gets or sets a value that indicates whether to ignore read-only fields.
+
+
+ Gets or sets a value that indicates whether to ignore read-only properties.
+
+
+ Gets or sets a value that indicates whether to include fields for serialization and deserialization.
+
+
+ Gets or sets the default value of .
+
+
+ Gets or sets the default value of .
+
+
+ Gets or sets the default value of .
+
+
+ Gets or sets the default value of .
+
+
+ Gets or sets a built-in naming policy to convert JSON property names with.
+
+
+ Gets or sets the default value of .
+
+
+ Gets or sets the default value of .
+
+
+ Gets or sets the default value of .
+
+
+ Gets or sets a value that indicates whether the source generator defaults to instead of numeric serialization for all enum types encountered in its type graph.
+
+
+ Gets or sets a value that indicates whether JSON output is pretty-printed.
+
+
+ Converts enumeration values to and from strings.
+
+
+ Initializes an instance of the class with the default naming policy that allows integer values.
+
+
+ Initializes an instance of the class with a specified naming policy and a value that indicates whether undefined enumeration values are allowed.
+ The optional naming policy for writing enum values.
+
+ to allow undefined enum values; otherwise, . When , if an enum value isn't defined, it will output as a number rather than a string.
+
+
+ Determines whether the specified type can be converted to an enum.
+ The type to be checked.
+
+ true
if the type can be converted; otherwise, false
.
+
+
+ Creates a converter for the specified type.
+ The type handled by the converter.
+ The serialization options to use.
+ A converter for which T
is compatible with typeToConvert
.
+
+
+ Converter to convert enums to and from strings.
+ The enum type that this converter targets.
+
+
+ Initializes a new instance of with the default naming policy and that allows integer values.
+
+
+ Initializes a new instance of .
+ Optional naming policy for writing enum values.
+
+ to allow undefined enum values. When , if an enum value isn't defined, it outputs as a number rather than a string.
+
+
+ When overridden in a derived class, determines whether the converter instance can convert the specified object type.
+ The type of the object to check whether it can be converted by this converter instance.
+
+ true
if the instance can convert the specified object type; otherwise, false
.
+
+
+ Creates a converter for a specified type.
+ The type handled by the converter.
+ The serialization options to use.
+ A converter for which T
is compatible with typeToConvert
.
+
+
+ Defines how objects of a derived runtime type that has not been explicitly declared for polymorphic serialization should be handled.
+
+
+ An object of undeclared runtime type will fail polymorphic serialization.
+
+
+ An object of undeclared runtime type will fall back to the serialization contract of the base type.
+
+
+ An object of undeclared runtime type will revert to the serialization contract of the nearest declared ancestor type.
+ Certain interface hierarchies are not supported due to diamond ambiguity constraints.
+
+
+ Defines how deserializing a type declared as an is handled during deserialization.
+
+
+ A type declared as is deserialized as a .
+
+
+ A type declared as is deserialized as a .
+
+
+ Determines how handles JSON properties that cannot be mapped to a specific .NET member when deserializing object types.
+
+
+ Throws an exception when an unmapped property is encountered.
+
+
+ Silently skips any unmapped properties. This is the default behavior.
+
+
+ When placed on a type, determines the configuration for the specific type, overriding the global setting.
+
+
+ Initializes a new instance of .
+ The handling to apply to the current member.
+
+
+ Gets the unmapped member handling setting for the attribute.
+
+
+ Defines the default, reflection-based JSON contract resolver used by System.Text.Json.
+
+
+ Creates a mutable instance.
+
+
+ Resolves a JSON contract for a given and configuration.
+ The type for which to resolve a JSON contract.
+ A instance used to determine contract configuration.
+
+ or is .
+ A defining a reflection-derived JSON contract for .
+
+
+ Gets a list of user-defined callbacks that can be used to modify the initial contract.
+
+
+ Used to resolve the JSON serialization contract for requested types.
+
+
+ Resolves a contract for the requested type and options.
+ Type to be resolved.
+ Configuration used when resolving the metadata.
+ A instance matching the requested type, or if no contract could be resolved.
+
+
+ Provides serialization metadata about a collection type.
+ The collection type.
+
+
+
+ A instance representing the element type.
+
+
+ If a dictionary type, the instance representing the key type.
+
+
+ The option to apply to number collection elements.
+
+
+ A to create an instance of the collection when deserializing.
+
+
+ An optimized serialization implementation assuming pre-determined defaults.
+
+
+ Represents a supported derived type defined in the metadata of a polymorphic type.
+
+
+ Initializes a new instance of the class that represents a supported derived type without a type discriminator.
+ The derived type to be supported by the polymorphic type metadata.
+
+
+ Initializes a new instance of the class that represents a supported derived type with an integer type discriminator.
+ The derived type to be supported by the polymorphic type metadata.
+ The type discriminator to be associated with the derived type.
+
+
+ Initializes a new instance of the class that represents a supported derived type with a string type discriminator.
+ The derived type to be supported by the polymorphic type metadata.
+ The type discriminator to be associated with the derived type.
+
+
+ Gets a derived type that should be supported in polymorphic serialization of the declared base type.
+
+
+ Gets the type discriminator identifier to be used for the serialization of the subtype.
+
+
+ Provides helpers to create and initialize metadata for JSON-serializable types.
+
+
+ Creates serialization metadata for an array.
+ The serialization and deserialization options to use.
+ Provides serialization metadata about the collection type.
+ The generic definition of the element type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for types assignable to .
+ The serialization and deserialization options to use.
+ Provides serialization metadata about the collection type.
+ The generic definition of the type.
+ The generic definition of the element type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for types assignable to .
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ The generic definition of the type.
+ The generic definition of the element type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for types assignable to .
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ The generic definition of the type.
+ The generic definition of the key type.
+ The generic definition of the value type.
+ Serialization metadata for the given type.
+
+
+ Creates serialization metadata for types assignable to .
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ The generic definition of the type.
+ The generic definition of the element type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for types assignable to .
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ The generic definition of the type.
+ The generic definition of the element type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for types assignable to .
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ The generic definition of the type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for types assignable to .
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ The generic definition of the type.
+ The generic definition of the key type.
+ The generic definition of the value type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for types assignable to .
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ The generic definition of the type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for types assignable to .
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ The generic definition of the type.
+ The generic definition of the element type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for types assignable to .
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ The generic definition of the type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for types assignable to .
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ The generic definition of the type.
+ The generic definition of the element type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for and types assignable to .
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ A method to create an immutable dictionary instance.
+ The generic definition of the type.
+ The generic definition of the key type.
+ The generic definition of the value type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for non-dictionary immutable collection types.
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ A method to create an immutable dictionary instance.
+ The generic definition of the type.
+ The generic definition of the element type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for types assignable to .
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ The generic definition of the type.
+ The generic definition of the key type.
+ The generic definition of the value type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for types assignable to .
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ The generic definition of the type.
+ The generic definition of the element type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for types assignable to .
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ The generic definition of the type.
+ The generic definition of the element type.
+ Serialization metadata for the given type.
+
+
+ Creates serialization metadata for .
+ The to use.
+ Provides serialization metadata about the collection type.
+ The generic definition of the element type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for a complex class or struct.
+ The to use for serialization and deserialization.
+ Provides serialization metadata about an object type with constructors, properties, and fields.
+ The type of the class or struct.
+
+ or is .
+ A instance representing the class or struct.
+
+
+ Creates metadata for a property or field.
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the property or field.
+ The type that the converter for the property returns or accepts when converting JSON data.
+ A instance initialized with the provided metadata.
+
+
+ Creates metadata for types assignable to .
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ A method for adding elements to the collection when using the serializer's code-paths.
+ The generic definition of the type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for types assignable to .
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ The generic definition of the type.
+ The generic definition of the element type.
+ Serialization metadata for the given type.
+
+
+ Creates serialization metadata for .
+ The to use.
+ Provides serialization metadata about the collection type.
+ The generic definition of the element type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for types assignable to .
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ A method for adding elements to the collection when using the serializer's code-paths.
+ The generic definition of the type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for types assignable to .
+ The to use for serialization and deserialization.
+ Provides serialization metadata about the collection type.
+ The generic definition of the type.
+ The generic definition of the element type.
+ Serialization metadata for the given type.
+
+
+ Creates metadata for a primitive or a type with a custom converter.
+ The to use for serialization and deserialization.
+
+ The generic type definition.
+ A instance representing the type.
+
+
+ Creates a instance that converts values.
+ The to use for serialization and deserialization.
+ The generic definition for the enum type.
+ A instance that converts values.
+
+
+ Creates a instance that converts values.
+ The to use for serialization and deserialization.
+ The generic definition for the underlying nullable type.
+ A instance that converts values
+
+
+ Creates a instance that converts values.
+ Serialization metadata for the underlying nullable type.
+ The generic definition for the underlying nullable type.
+ A instance that converts values
+
+
+ Gets a type converter that throws a .
+ The generic definition for the type.
+ A instance that throws
+
+
+ Gets an object that converts values.
+
+
+ Gets an object that converts byte array values.
+
+
+ Gets an object that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Returns a instance that converts values.
+
+
+ Gets an object that converts values.
+ An instance that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Returns a instance that converts values.
+
+
+ Returns a instance that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Returns a instance that converts values.
+
+
+ Gets a JSON converter that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Returns a instance that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Returns a instance that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Returns a instance that converts values.
+
+
+ Gets a JSON converter that converts values.
+
+
+ Returns a instance that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Gets an object that converts values.
+
+
+ Provides serialization metadata about an object type with constructors, properties, and fields.
+ The object type to serialize or deserialize.
+
+
+
+ Provides a mechanism to initialize metadata for a parameterized constructor of the class or struct to be used when deserializing.
+
+
+ Gets or sets an object that specifies how number properties and fields should be processed when serializing and deserializing.
+
+
+ Gets or sets a mechanism to create an instance of the class or struct using a parameterless constructor during deserialization.
+
+
+ Gets or sets a mechanism to create an instance of the class or struct using a parameterized constructor during deserialization.
+
+
+ Gets or sets a mechanism to initialize metadata for properties and fields of the class or struct.
+
+
+ Gets or sets a serialization implementation for instances of the class or struct that assumes options specified by .
+
+
+ Provides information about a constructor parameter required for JSON deserialization.
+
+
+
+ Gets or sets the default value of the parameter.
+
+
+ Gets or sets a value that specifies whether a default value was specified for the parameter.
+
+
+ Gets or sets the name of the parameter.
+
+
+ Gets or sets the type of the parameter.
+
+
+ Gets or sets the zero-based position of the parameter in the formal parameter list.
+
+
+ Defines polymorphic configuration for a specified base type.
+
+
+ Creates an empty instance.
+
+
+ Gets the list of derived types supported in the current polymorphic type configuration.
+
+
+ Gets or sets a value that indicates whether the serializer should ignore any unrecognized type discriminator IDs and revert to the contract of the base type.
+ The parent instance has been locked for further modification.
+
+ if the serializer should ignore any unrecognized type discriminator IDs and revert to the contract of the base type; if the deserialization should fail when an unrecognized type discriminator ID is encountered.
+
+
+ Gets or sets a custom type discriminator property name for the polymorhic type.
+ Uses the default '$type' property name if left unset.
+ The parent instance has been locked for further modification.
+
+
+ Gets or sets the behavior when serializing an undeclared derived runtime type.
+ The parent instance has been locked for further modification.
+
+
+ Provides JSON serialization-related metadata about a property or field.
+
+
+ Gets or sets the custom attribute provider for the current property.
+ The instance has been locked for further modification.
+
+
+ Gets or sets a custom converter override for the current property.
+ The instance has been locked for further modification.
+
+
+ Gets or sets a getter delegate for the property.
+ The instance has been locked for further modification.
+
+
+ Gets or sets a value that indicates whether the current property is a special extension data property.
+ The instance has been locked for further modification.
+
+-or-
+
+The current is not valid for use with extension data.
+
+
+ Gets or sets a value that indicates whether the current property is required for deserialization to be successful.
+ The instance has been locked for further modification.
+
+
+ Gets or sets the JSON property name used when serializing the property.
+
+ is .
+ The instance has been locked for further modification.
+
+
+ Gets or sets the applied to the current property.
+ The instance has been locked for further modification.
+
+
+ Gets or sets a value indicating if the property or field should be replaced or populated during deserialization.
+
+
+ Gets the value associated with the current contract instance.
+
+
+ Gets or sets the serialization order for the current property.
+ The instance has been locked for further modification.
+
+
+ Gets the type of the current property.
+
+
+ Gets or sets a setter delegate for the property.
+ The instance has been locked for further modification.
+
+
+ Gets or sets a predicate that determines whether the current property value should be serialized.
+ The instance has been locked for further modification.
+
+
+ Provides serialization metadata about a property or field.
+ The type to convert of the for the property.
+
+
+
+ A for the property or field, specified by .
+
+
+ The declaring type of the property or field.
+
+
+ Provides a mechanism to get the property or field's value.
+
+
+ Whether the property was annotated with .
+
+
+ Specifies a condition for the member to be ignored.
+
+
+ Whether the property was annotated with .
+
+
+ If , indicates that the member is a property, otherwise indicates the member is a field.
+
+
+ Whether the property or field is public.
+
+
+ Whether the property or field is a virtual property.
+
+
+ The name to be used when processing the property or field, specified by .
+
+
+ If the property or field is a number, specifies how it should processed when serializing and deserializing.
+
+
+ The name of the property or field.
+
+
+ The info for the property or field's type.
+
+
+ Provides a mechanism to set the property or field's value.
+
+
+ Provides JSON serialization-related metadata about a type.
+
+
+ Creates a blank instance for the current .
+ The declared type for the property.
+ The property name used in JSON serialization and deserialization.
+
+ or is .
+
+ cannot be used for serialization.
+ The instance has been locked for further modification.
+ A blank instance.
+
+
+ Creates a blank instance.
+ The type for which contract metadata is specified.
+ The instance the metadata is associated with.
+
+ or is .
+
+ cannot be used for serialization.
+ A blank instance.
+
+
+ Creates a blank instance.
+ The instance the metadata is associated with.
+ The type for which contract metadata is specified.
+
+ is .
+ A blank instance.
+
+
+ Locks the current instance for further modification.
+
+
+ Gets the associated with the current type.
+
+
+ Gets or sets a parameterless factory to be used on deserialization.
+ The instance has been locked for further modification.
+
+-or-
+
+A parameterless factory is not supported for the current metadata .
+
+
+ Gets a value that indicates whether the current instance has been locked for modification.
+
+
+ Gets a value that describes the kind of contract metadata that the current instance specifies.
+
+
+ Gets or sets the type-level override.
+ The instance has been locked for further modification.
+ An invalid value was specified.
+
+
+ Gets or sets a callback to be invoked after deserialization occurs.
+ The instance has been locked for further modification.
+
+-or-
+
+Serialization callbacks are only supported for metadata.
+
+
+ Gets or sets a callback to be invoked before deserialization occurs.
+ The instance has been locked for further modification.
+
+-or-
+
+Serialization callbacks are only supported for metadata.
+
+
+ Gets or sets a callback to be invoked after serialization occurs.
+ The instance has been locked for further modification.
+
+-or-
+
+Serialization callbacks are only supported for metadata.
+
+
+ Gets or sets a callback to be invoked before serialization occurs.
+ The instance has been locked for further modification.
+
+-or-
+
+Serialization callbacks are only supported for metadata.
+
+
+ Gets the value associated with the current instance.
+
+
+ Gets or sets the from which this metadata instance originated.
+ The instance has been locked for further modification.
+
+
+ Gets or sets a configuration object specifying polymorphism metadata.
+
+ has been associated with a different instance.
+ The instance has been locked for further modification.
+
+-or-
+
+Polymorphic serialization is not supported for the current metadata .
+
+
+ Gets or sets the preferred value for properties contained in the type.
+ The instance has been locked for further modification.
+
+-or-
+
+Unmapped member handling is only supported for JsonTypeInfoKind.Object.
+ Specified an invalid value.
+
+
+ Gets the list of metadata corresponding to the current type.
+
+
+ Gets the for which the JSON serialization contract is being defined.
+
+
+ Gets or sets the type-level override.
+ The instance has been locked for further modification.
+
+-or-
+
+Unmapped member handling is only supported for .
+ An invalid value was specified.
+
+
+ Provides JSON serialization-related metadata about a type.
+ The generic definition of the type.
+
+
+ Gets or sets a parameterless factory to be used on deserialization.
+ The instance has been locked for further modification.
+
+-or-
+
+A parameterless factory is not supported for the current metadata .
+
+
+ Serializes an instance of using values specified at design time.
+
+
+ Describes the kind of contract metadata a specifies.
+
+
+ Type is serialized as a dictionary with key/value pair entries.
+
+
+ Type is serialized as a collection with elements.
+
+
+ Type is either a simple value or uses a custom converter.
+
+
+ Type is serialized as an object with properties.
+
+
+ Contains utilities and combinators acting on .
+
+
+ Combines multiple sources into one.
+ Sequence of contract resolvers to be queried for metadata.
+
+ is .
+ A combining results from .
+
+
+ Creates a resolver and applies modifications to the metadata generated by the source .
+ The source resolver generating metadata.
+ The delegate that modifies non- results.
+ A new instance with modifications applied.
+
+
+ Defines how the deals with references on serialization and deserialization.
+
+
+ Initializes a new instance of the class.
+
+
+ Returns the used for each serialization call.
+ The resolver to use for serialization and deserialization.
+
+
+ Gets an object that indicates whether an object is ignored when a reference cycle is detected during serialization.
+
+
+ Gets an object that indicates whether metadata properties are honored when JSON objects and arrays are deserialized into reference types, and written when reference types are serialized. This is necessary to create round-trippable JSON from objects that contain cycles or duplicate references.
+
+
+ Defines how the deals with references on serialization and deserialization.
+ The type of the to create on each serialization or deserialization call.
+
+
+ Initializes a new instance of the generic class that can create a instance of the specified type.
+
+
+ Creates a new of type used for each serialization call.
+ The new resolver to use for serialization and deserialization.
+
+
+ Defines how the deals with references on serialization and deserialization.
+ Defines the core behavior of preserving references on serialization and deserialization.
+
+
+ Initializes a new instance of the class.
+
+
+ Adds an entry to the bag of references using the specified id and value.
+ This method gets called when an $id metadata property from a JSON object is read.
+ The identifier of the JSON object or array.
+ The value of the CLR reference type object that results from parsing the JSON object.
+
+
+ Gets the reference identifier of the specified value if exists; otherwise a new id is assigned.
+ This method gets called before a CLR object is written so we can decide whether to write $id and enumerate the rest of its properties or $ref and step into the next object.
+ The value of the CLR reference type object to get an id for.
+ When this method returns, if a reference to value already exists; otherwise, .
+ The reference id for the specified object.
+
+
+ Returns the CLR reference type object related to the specified reference id.
+ This method gets called when $ref metadata property is read.
+ The reference id related to the returned object.
+ The reference type object related to the specified reference id.
+
+
+ Provides a high-performance API for forward-only, read-only access to UTF-8 encoded JSON text.
+
+
+ Initializes a new instance of the structure that processes a read-only sequence of UTF-8 encoded text and indicates whether the input contains all the text to process.
+ The UTF-8 encoded JSON text to process.
+
+ to indicate that the input sequence contains the entire data to process; to indicate that the input span contains partial data with more data to follow.
+ The reader state. If this is the first call to the constructor, pass the default state; otherwise, pass the value of the property from the previous instance of the .
+
+
+ Initializes a new instance of the structure that processes a read-only sequence of UTF-8 encoded text using the specified options.
+ The UTF-8 encoded JSON text to process.
+ Options that define customized behavior of the that differs from the JSON RFC (for example, how to handle comments or maximum depth allowed when reading). By default, the follows the JSON RFC strictly; comments within the JSON are invalid, and the maximum depth is 64.
+
+
+ Initializes a new instance of the structure that processes a read-only span of UTF-8 encoded text and indicates whether the input contains all the text to process.
+ The UTF-8 encoded JSON text to process.
+
+ to indicate that the input sequence contains the entire data to process; to indicate that the input span contains partial data with more data to follow.
+ The reader state. If this is the first call to the constructor, pass the default state; otherwise, pass the value of the property from the previous instance of the .
+
+
+ Initializes a new instance of the structure that processes a read-only span of UTF-8 encoded text using the specified options.
+ The UTF-8 encoded JSON text to process.
+ Options that define customized behavior of the that differs from the JSON RFC (for example, how to handle comments or maximum depth allowed when reading). By default, the follows the JSON RFC strictly; comments within the JSON are invalid, and the maximum depth is 64.
+
+
+ Copies the current JSON token value from the source, unescaped, as UTF-8 bytes to a buffer.
+ A buffer to write the unescaped UTF-8 bytes into.
+ The JSON token is not a string, that is, it's not or .
+
+-or-
+
+The JSON string contains invalid UTF-8 bytes or invalid UTF-16 surrogates.
+ The destination buffer is too small to hold the unescaped value.
+ The number of bytes written to .
+
+
+ Copies the current JSON token value from the source, unescaped, as UTF-16 characters to a buffer.
+ A buffer to write the transcoded UTF-16 characters into.
+ The JSON token is not a string, that is, it's not or .
+
+-or-
+
+The JSON string contains invalid UTF-8 bytes or invalid UTF-16 surrogates.
+ The destination buffer is too small to hold the unescaped value.
+ The number of characters written to .
+
+
+ Reads the next JSON token value from the source as a .
+ The value of the JSON token isn't a Boolean value (that is, or ).
+
+ if the is ; if the is .
+
+
+ Parses the current JSON token value from the source as a .
+ The value of the JSON token is not a .
+ The numeric format of the JSON token value is incorrect (for example, it contains a fractional value or is written in scientific notation).
+
+-or-
+
+The JSON token value represents a number less than Byte.MinValue or greater than Byte.MaxValue.
+ The value of the UTF-8 encoded token.
+
+
+ Parses the current JSON token value from the source and decodes the Base64 encoded JSON string as a byte array.
+ The type of the JSON token is not a .
+ The value is not encoded as Base64 text, so it can't be decoded to bytes.
+
+-or-
+
+The value contains invalid or more than two padding characters.
+
+-or-
+
+The value is incomplete. That is, the JSON string length is not a multiple of 4.
+ The byte array that represents the current JSON token value.
+
+
+ Parses the current JSON token value from the source as a comment and transcodes it as a .
+ The JSON token is not a comment.
+ The comment that represents the current JSON token value.
+
+
+ Reads the next JSON token value from the source and parses it to a .
+ The value of the JSON token isn't a .
+ The JSON token value cannot be read as a .
+
+-or-
+
+The entire UTF-8 encoded token value cannot be parsed to a value.
+
+-or-
+
+The JSON token value is of an unsupported format.
+ The date and time value, if the entire UTF-8 encoded token value can be successfully parsed.
+
+
+ Reads the next JSON token value from the source and parses it to a .
+ The value of the JSON token isn't a .
+ The JSON token value cannot be read as a .
+
+-or-
+
+The entire UTF-8 encoded token value cannot be parsed to a value.
+
+-or-
+
+The JSON token value is of an unsupported format.
+ The date and time offset, if the entire UTF-8 encoded token value can be successfully parsed.
+
+
+ Reads the next JSON token value from the source and parses it to a .
+ The JSON token value isn't a .
+ The JSON token value represents a number less than Decimal.MinValue or greater than Decimal.MaxValue.
+ The UTF-8 encoded token value parsed to a .
+
+
+ Reads the next JSON token value from the source and parses it to a .
+ The JSON token value isn't a .
+ The JSON token value represents a number less than Double.MinValue or greater than Double.MaxValue.
+ The UTF-8 encoded token value parsed to a .
+
+
+ Reads the next JSON token value from the source and parses it to a .
+ The value of the JSON token isn't a .
+ The JSON token value is in an unsupported format for a Guid.
+
+-or-
+
+The entire UTF-8 encoded token value cannot be parsed to a value.
+ The GUID value, if the entire UTF-8 encoded token value can be successfully parsed.
+
+
+ Parses the current JSON token value from the source as a .
+ The value of the JSON token is not a .
+ The numeric format of the JSON token value is incorrect (for example, it contains a fractional value or is written in scientific notation).
+
+-or-
+
+The JSON token value represents a number less than Int16.MinValue or greater than Int16.MaxValue.
+ The UTF-8 encoded token value parsed to an .
+
+
+ Reads the next JSON token value from the source and parses it to an .
+ The JSON token value isn't a .
+ The JSON token value is of the incorrect numeric format. For example, it contains a decimal or is written in scientific notation.
+
+-or-
+
+The JSON token value represents a number less than Int32.MinValue or greater than Int32.MaxValue.
+ The UTF-8 encoded token value parsed to an .
+
+
+ Reads the next JSON token value from the source and parses it to an .
+ The JSON token value isn't a .
+ The JSON token value is of the incorrect numeric format. For example, it contains a decimal or is written in scientific notation.
+
+-or-
+
+The JSON token value represents a number less than Int64.MinValue or greater than Int64.MaxValue.
+ The UTF-8 encoded token value parsed to an .
+
+
+ Parses the current JSON token value from the source as an .
+ The value of the JSON token is not a .
+ The numeric format of the JSON token value is incorrect (for example, it contains a fractional value or is written in scientific notation).
+
+-or-
+
+The JSON token value represents a number less than SByte.MinValue or greater than SByte.MaxValue.
+ The UTF-8 encoded token value parsed to an .
+
+
+ Reads the next JSON token value from the source and parses it to a .
+ The JSON token value isn't a .
+ The JSON token value represents a number less than Single.MinValue or greater than Single.MaxValue.
+ The UTF-8 encoded token value parsed to a .
+
+
+ Reads the next JSON token value from the source unescaped and transcodes it as a string.
+ The JSON token value isn't a string (that is, not a , , or ).
+
+-or-
+
+The JSON string contains invalid UTF-8 bytes or invalid UTF-16 surrogates.
+ The token value parsed to a string, or if is .
+
+
+ Parses the current JSON token value from the source as a .
+ The value of the JSON token is not a .
+ The numeric format of the JSON token value is incorrect (for example, it contains a fractional value or is written in scientific notation).
+
+-or-
+
+The JSON token value represents a number less than UInt16.MinValue or greater than UInt16.MaxValue.
+ The UTF-8 encoded token value parsed to a .
+
+
+ Reads the next JSON token value from the source and parses it to a .
+ The JSON token value isn't a .
+ The JSON token value is of the incorrect numeric format. For example, it contains a decimal or is written in scientific notation.
+
+-or-
+
+The JSON token value represents a number less than UInt32.MinValue or greater than UInt32.MaxValue.
+ The UTF-8 encoded token value parsed to a .
+
+
+ Reads the next JSON token value from the source and parses it to a .
+ The JSON token value isn't a .
+ The JSON token value is of the incorrect numeric format. For example, it contains a decimal or is written in scientific notation.
+
+-or-
+
+The JSON token value represents a number less than UInt64.MinValue or greater than UInt64.MaxValue.
+ The UTF-8 encoded token value parsed to a .
+
+
+ Reads the next JSON token from the input source.
+ An invalid JSON token according to the JSON RFC is encountered.
+
+-or-
+
+The current depth exceeds the recursive limit set by the maximum depth.
+
+ if the token was read successfully; otherwise, .
+
+
+ Skips the children of the current JSON token.
+ The reader was given partial data with more data to follow (that is, is ).
+ An invalid JSON token was encountered while skipping, according to the JSON RFC.
+
+-or-
+
+The current depth exceeds the recursive limit set by the maximum depth.
+
+
+ Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded.
+ When this method returns, contains the byte equivalent of the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ The JSON token value isn't a .
+
+ if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, .
+
+
+ Tries to parse the current JSON token value from the source and decodes the Base64 encoded JSON string as a byte array and returns a value that indicates whether the operation succeeded.
+ When this method returns, contains the decoded binary representation of the Base64 text.
+ The JSON token is not a .
+
+ if the entire token value is encoded as valid Base64 text and can be successfully decoded to bytes; otherwise, .
+
+
+ Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded.
+ When this method returns, contains the date and time value equivalent to the current JSON string if the conversion succeeded, or if the conversion failed.
+ The value of the JSON token isn't a .
+
+ if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, .
+
+
+ Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded.
+ When this method returns, contains the date and time value equivalent to the current JSON string if the conversion succeeded, or if the conversion failed.
+ The value of the JSON token isn't a .
+
+ if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, .
+
+
+ Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded.
+ When this method returns, contains the decimal equivalent of the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ The JSON token value isn't a .
+
+ if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, .
+
+
+ Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded.
+ When this method returns, contains a double-precision floating point value equivalent to the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ The JSON token value isn't a .
+
+ if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, .
+
+
+ Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded.
+ When this method returns, contains the GUID equivalent to the current JSON string if the conversion succeeded, or if the conversion failed.
+ The value of the JSON token isn't a .
+
+ if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, .
+
+
+ Tries to parse the current JSON token value from the source as an and returns a value that indicates whether the operation succeeded.
+ When this method returns, contains the 16-bit integer value equivalent of the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ The JSON token value isn't a .
+
+ if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, .
+
+
+ Tries to parse the current JSON token value from the source as an and returns a value that indicates whether the operation succeeded.
+ When this method returns, contains the 32-bit integer value equivalent to the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ The JSON token value isn't a .
+
+ if the entire UTF-8 encoded token value can be successfully parsed to an value; otherwise, .
+
+
+ Tries to parse the current JSON token value from the source as an and returns a value that indicates whether the operation succeeded.
+ When this method returns, contains the 64-bit integer value equivalent to the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ The JSON token value isn't a .
+
+ if the entire UTF-8 encoded token value can be successfully parsed to an value; otherwise, .
+
+
+ Tries to parse the current JSON token value from the source as an and returns a value that indicates whether the operation succeeded.
+ When this method returns, contains the signed byte equivalent of the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ The JSON token value isn't a .
+
+ if the entire UTF-8 encoded token value can be successfully parsed to an value; otherwise, .
+
+
+ Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded.
+ When this method returns, contains the single-precision floating point value equivalent to the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ The JSON token value isn't a .
+
+ if the entire UTF-8 encoded token value can be successfully parsed to an value; otherwise, .
+
+
+ Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded.
+ When this method returns, contains the unsigned 16-bit integer value equivalent of the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ The JSON token value isn't a .
+
+ if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, .
+
+
+ Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded.
+ When this method returns, contains unsigned 32-bit integer value equivalent to the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ The JSON token value isn't a .
+
+ if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, .
+
+
+ Tries to parse the current JSON token value from the source as a and returns a value that indicates whether the operation succeeded.
+ When this method returns, contains unsigned 64-bit integer value equivalent to the current JSON number if the conversion succeeded, or 0 if the conversion failed.
+ The JSON token value isn't a .
+
+ if the entire UTF-8 encoded token value can be successfully parsed to a value; otherwise, .
+
+
+ Tries to skip the children of the current JSON token.
+ An invalid JSON token was encountered while skipping, according to the JSON RFC.
+
+-or -
+
+The current depth exceeds the recursive limit set by the maximum depth.
+
+ if there was enough data for the children to be skipped successfully; otherwise, .
+
+
+ Compares the UTF-8 encoded text in a read-only byte span to the unescaped JSON token value in the source and returns a value that indicates whether they match.
+ The UTF-8 encoded text to compare against.
+ The JSON token is not a JSON string (that is, it is not or ).
+
+ if the JSON token value in the source matches the UTF-8 encoded lookup text; otherwise, .
+
+
+ Compares the text in a read-only character span to the unescaped JSON token value in the source and returns a value that indicates whether they match.
+ The text to compare against.
+ The JSON token is not a JSON string (that is, it is not or ).
+
+ if the JSON token value in the source matches the lookup text; otherwise, .
+
+
+ Compares the string text to the unescaped JSON token value in the source and returns a value that indicates whether they match.
+ The text to compare against.
+ The JSON token is not a JSON string (that is, it is not or ).
+
+ if the JSON token value in the source matches the lookup text; otherwise, .
+
+
+ Gets the total number of bytes consumed so far by this instance of the .
+ The total number of bytes consumed so far.
+
+
+ Gets the depth of the current token.
+ The depth of the current token.
+
+
+ Gets the current state to pass to a constructor with more data.
+ The current reader state.
+
+
+ Gets a value that indicates which Value property to use to get the token value.
+
+ if should be used to get the token value; if should be used instead.
+
+
+ Gets a value that indicates whether all the JSON data was provided or there is more data to come.
+
+ if the reader was constructed with the input span or sequence containing the entire JSON data to process; if the reader was constructed with an input span or sequence that may contain partial JSON data with more data to follow.
+
+
+ Gets the current within the provided UTF-8 encoded input ReadOnlySequence<byte> or a default if the struct was constructed with a ReadOnlySpan<byte>.
+ The current within the provided UTF-8 encoded input ReadOnlySequence<byte> or a default if the struct was constructed with a ReadOnlySpan<byte>.
+
+
+ Gets the index that the last processed JSON token starts at (within the given UTF-8 encoded input text), skipping any white space.
+ The starting index of the last processed JSON token within the given UTF-8 encoded input text.
+
+
+ Gets the type of the last processed JSON token in the UTF-8 encoded JSON text.
+ The type of the last processed JSON token.
+
+
+ Gets a value that indicates whether the current or properties contain escape sequences per RFC 8259 section 7, and therefore require unescaping before being consumed.
+
+
+ Gets the raw value of the last processed token as a ReadOnlySequence<byte> slice of the input payload, only if the token is contained within multiple segments.
+ A byte read-only sequence.
+
+
+ Gets the raw value of the last processed token as a ReadOnlySpan<byte> slice of the input payload, if the token fits in a single segment or if the reader was constructed with a JSON payload contained in a ReadOnlySpan<byte>.
+ A read-only span of bytes.
+
+
+ Provides a high-performance API for forward-only, non-cached writing of UTF-8 encoded JSON text.
+
+
+ Initializes a new instance of the class using the specified to write the output to and customization options.
+ The destination for writing JSON text.
+ Defines the customized behavior of the . By default, it writes minimized JSON (with no extra white space) and validates that the JSON being written is structurally valid according to the JSON RFC.
+
+ is .
+
+
+ Initializes a new instance of the class using the specified stream to write the output to and customization options.
+ The destination for writing JSON text.
+ Defines the customized behavior of the . By default, it writes minimized JSON (with no extra white space) and validates that the JSON being written is structurally valid according to the JSON RFC.
+
+ is .
+
+
+ Commits any leftover JSON text that has not yet been flushed and releases all resources used by the current instance.
+
+
+ Asynchronously commits any leftover JSON text that has not yet been flushed and releases all resources used by the current instance.
+ A task representing the asynchronous dispose operation.
+
+
+ Commits the JSON text written so far, which makes it visible to the output destination.
+ This instance has been disposed.
+
+
+ Asynchronously commits the JSON text written so far, which makes it visible to the output destination.
+ The token to monitor for cancellation requests. The default value is .
+ This instance has been disposed.
+ A task representing the asynchronous flush operation.
+
+
+ Resets the internal state of this instance so that it can be reused.
+ This instance has been disposed.
+
+
+ Resets the internal state of this instance so that it can be reused with a new instance of .
+ The destination for writing JSON text.
+
+ is .
+ This instance has been disposed.
+
+
+ Resets the internal state of this instance so that it can be reused with a new instance of .
+ The destination for writing JSON text.
+
+ is .
+ This instance has been disposed.
+
+
+ Writes the property name and raw bytes value (as a Base64 encoded JSON string) as part of a name/value pair of a JSON object.
+ The UTF-8 encoded name of the property to write.
+ The binary data to write as Base64 encoded text.
+ The specified property name or value is too large.
+ Validation is enabled, and this method would result in writing invalid JSON.
+
+
+ Writes the property name and raw bytes value (as a Base64 encoded JSON string) as part of a name/value pair of a JSON object.
+ The property name of the JSON object to be transcoded and written as UTF-8.
+ The binary data to write as Base64 encoded text.
+ The specified property name or value is too large.
+ Validation is enabled, and this method would result in writing invalid JSON.
+
+
+ Writes the property name and raw bytes value (as a Base64 encoded JSON string) as part of a name/value pair of a JSON object.
+ The property name of the JSON object to be transcoded and written as UTF-8.
+ The binary data to write as Base64 encoded text.
+ The specified property name or value is too large.
+ Validation is enabled, and this method would result in writing invalid JSON.
+ The parameter is .
+
+
+ Writes the pre-encoded property name and raw bytes value (as a Base64 encoded JSON string) as part of a name/value pair of a JSON object.
+ The JSON-encoded name of the property to write.
+ The binary data to write as Base64 encoded text.
+ The specified value is too large.
+ Validation is enabled, and this method would result in writing invalid JSON.
+
+
+ Writes the raw bytes value as a Base64 encoded JSON string as an element of a JSON array.
+ The binary data to be written as a Base64 encoded JSON string element of a JSON array.
+ The specified value is too large.
+ Validation is enabled, and this method would result in writing invalid JSON.
+
+
+ Writes a property name specified as a read-only span of bytes and a value (as a JSON literal true or false) as part of a name/value pair of a JSON object.
+ The UTF-8 encoded property name of the JSON object to be written.
+ The value to be written as a JSON literal true or false as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the operation would result in writing invalid JSON.
+
+
+ Writes a property name specified as a read-only character span and a value (as a JSON literal true or false) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON literal true or false as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the operation would result in writing invalid JSON.
+
+
+ Writes a property name specified as a string and a value (as a JSON literal true or false) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON literal true or false as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the operation would result in writing invalid JSON.
+ The parameter is .
+
+
+ Writes the pre-encoded property name and value (as a JSON literal true or false) as part of a name/value pair of a JSON object.
+ The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON literal true or false as part of the name/value pair.
+ Validation is enabled, and this method would result in writing invalid JSON.
+
+
+ Writes a value (as a JSON literal true or false) as an element of a JSON array.
+ The value to be written as a JSON literal true or false as an element of a JSON array.
+ Validation is enabled, and the operation would result in writing invalid JSON.
+
+
+ Writes a UTF-8 text value as a JSON comment.
+ The UTF-8 encoded value to be written as a JSON comment within /*..*/.
+ The specified value is too large.
+
+-or-
+
+ contains a comment delimiter (that is, */).
+
+
+ Writes a UTF-16 text value as a JSON comment.
+ The UTF-16 encoded value to be written as a UTF-8 transcoded JSON comment within /*..*/.
+ The specified value is too large.
+
+-or-
+
+ contains a comment delimiter (that is, */).
+
+
+ Writes a string text value as a JSON comment.
+ The UTF-16 encoded value to be written as a UTF-8 transcoded JSON comment within /*..*/.
+ The specified value is too large.
+
+-or-
+
+ contains a comment delimiter (that is, */).
+ The parameter is .
+
+
+ Writes the end of a JSON array.
+ Validation is enabled, and the operation would result in writing invalid JSON.
+
+
+ Writes the end of a JSON object.
+ Validation is enabled, and the operation would result in writing invalid JSON.
+
+
+ Writes a property name specified as a read-only span of bytes and the JSON literal null as part of a name/value pair of a JSON object.
+ The UTF-8 encoded property name of the JSON object to be written.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a read-only character span and the JSON literal null as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a string and the JSON literal null as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+ The parameter is .
+
+
+ Writes the pre-encoded property name and the JSON literal null as part of a name/value pair of a JSON object.
+ The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.
+ Validation is enabled, and this method would result in writing invalid JSON.
+
+
+ Writes the JSON literal null as an element of a JSON array.
+ Validation is enabled, and the operation would result in writing invalid JSON.
+
+
+ Writes a property name specified as a read-only span of bytes and a value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-8 encoded property name of the JSON object to be written.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a read-only span of bytes and a value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-8 encoded property name of the JSON object to be written.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a read-only span of bytes and an value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-8 encoded property name of the JSON object to be written.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a read-only span of bytes and an value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-8 encoded property name of the JSON object to be written.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a read-only span of bytes and a value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-8 encoded property name of the JSON object to be written.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a read-only span of bytes and a value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-8 encoded property name of the JSON object to be written.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a read-only span of bytes and a value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-8 encoded property name of the JSON object to be written.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a read-only character span and a value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a read-only character span and a value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a read-only character span and an value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a read-only character span and an value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a read-only character span and a value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a read-only character span and a value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a read-only character span and a value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a string and a value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+ The parameter is .
+
+
+ Writes a property name specified as a string and a value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+ The parameter is .
+
+
+ Writes a property name specified as a string and an value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+ The parameter is .
+
+
+ Writes a property name specified as a string and an value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+ The parameter is .
+
+
+ Writes a property name specified as a string and a value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+ The parameter is .
+
+
+ Writes a property name specified as a string and a value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+ The parameter is .
+
+
+ Writes a property name specified as a string and a value (as a JSON number) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+ The parameter is .
+
+
+ Writes the pre-encoded property name and value (as a JSON number) as part of a name/value pair of a JSON object.
+ The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ Validation is enabled, and this method would result in writing invalid JSON.
+
+
+ Writes the pre-encoded property name and value (as a JSON number) as part of a name/value pair of a JSON object.
+ The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ Validation is enabled, and this method would result in writing invalid JSON.
+
+
+ Writes the pre-encoded property name and value (as a JSON number) as part of a name/value pair of a JSON object.
+ The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ Validation is enabled, and this method would result in writing invalid JSON.
+
+
+ Writes the pre-encoded property name and value (as a JSON number) as part of a name/value pair of a JSON object.
+ The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ Validation is enabled, and this method would result in writing invalid JSON.
+
+
+ Writes the pre-encoded property name and value (as a JSON number) as part of a name/value pair of a JSON object.
+ The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ Validation is enabled, and this method would result in writing invalid JSON.
+
+
+ Writes the pre-encoded property name and value (as a JSON number) as part of a name/value pair of a JSON object.
+ The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ Validation is enabled, and this method would result in writing invalid JSON.
+
+
+ Writes the pre-encoded property name and value (as a JSON number) as part of a name/value pair of a JSON object.
+ The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON number as part of the name/value pair.
+ Validation is enabled, and this method would result in writing invalid JSON.
+
+
+ Writes a value (as a JSON number) as an element of a JSON array.
+ The value to be written as a JSON number as an element of a JSON array.
+ Validation is enabled, and the operation would result in writing invalid JSON.
+
+
+ Writes a value (as a JSON number) as an element of a JSON array.
+ The value to be written as a JSON number as an element of a JSON array.
+ Validation is enabled, and the operation would result in writing invalid JSON.
+
+
+ Writes an value (as a JSON number) as an element of a JSON array.
+ The value to be written as a JSON number as an element of a JSON array.
+ Validation is enabled, and the operation would result in writing invalid JSON.
+
+
+ Writes an value (as a JSON number) as an element of a JSON array.
+ The value to be written as a JSON number as an element of a JSON array.
+ Validation is enabled, and the operation would result in writing invalid JSON.
+
+
+ Writes a value (as a JSON number) as an element of a JSON array.
+ The value to be written as a JSON number as an element of a JSON array.
+ Validation is enabled, and the operation would result in writing invalid JSON.
+
+
+ Writes a value (as a JSON number) as an element of a JSON array.
+ The value to be written as a JSON number as an element of a JSON array.
+ Validation is enabled, and the operation would result in writing invalid JSON.
+
+
+ Writes a value (as a JSON number) as an element of a JSON array.
+ The value to be written as a JSON number as an element of a JSON array.
+ Validation is enabled, and the operation would result in writing invalid JSON.
+
+
+ Writes the UTF-8 property name (as a JSON string) as the first part of a name/value pair of a JSON object.
+ The UTF-8 encoded property name of the JSON object to be written.
+ The specified property name is too large.
+ Validation is enabled, and this write operation would produce invalid JSON.
+
+
+ Writes the property name (as a JSON string) as the first part of a name/value pair of a JSON object.
+ The property name of the JSON object to be transcoded and written as UTF-8.
+ The specified property name is too large.
+ Validation is enabled, and this write operation would produce invalid JSON.
+
+
+ Writes the property name (as a JSON string) as the first part of a name/value pair of a JSON object.
+ The property name of the JSON object to be transcoded and written as UTF-8.
+ The specified property name is too large.
+ Validation is enabled, and this write operation would produce invalid JSON.
+
+ is .
+
+
+ Writes the pre-encoded property name (as a JSON string) as the first part of a name/value pair of a JSON object.
+ The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.
+ Validation is enabled, and this write operation would produce invalid JSON.
+
+
+ Writes the input as JSON content. It is expected that the input content is a single complete JSON value.
+ The raw JSON content to write.
+
+ to validate if the input is an RFC 8259-compliant JSON payload; to skip validation.
+ The length of the input is zero or equal to Int32.MaxValue.
+
+ is , and the input
+ is not a valid, complete, single JSON value according to the JSON RFC
+ or the input JSON exceeds a recursive depth of 64.
+
+
+ Writes the input as JSON content. It is expected that the input content is a single complete JSON value.
+ The raw JSON content to write.
+
+ to validate if the input is an RFC 8259-compliant JSON payload; otherwise.
+ The length of the input is zero or equal to Int32.MaxValue.
+
+ is , and the input is not a valid, complete, single JSON value according to the JSON RFC, or the input JSON exceeds a recursive depth of 64.
+
+
+ Writes the input as JSON content. It is expected that the input content is a single complete JSON value.
+ The raw JSON content to write.
+
+ to validate if the input is an RFC 8259-compliant JSON payload; otherwise.
+ The length of the input is zero or greater than 715,827,882 (Int32.MaxValue / 3).
+
+ is , and the input is not a valid, complete, single JSON value according to the JSON RFC, or the input JSON exceeds a recursive depth of 64.
+
+
+ Writes the input as JSON content. It is expected that the input content is a single complete JSON value.
+ The raw JSON content to write.
+
+ to validate if the input is an RFC 8259-compliant JSON payload; otherwise.
+
+ is .
+ The length of the input is zero or greater than 715,827,882 (Int32.MaxValue / 3).
+
+ is , and the input is not a valid, complete, single JSON value according to the JSON RFC, or the input JSON exceeds a recursive depth of 64.
+
+
+ Writes the beginning of a JSON array.
+ The depth of the JSON exceeds the maximum depth of 1,000.
+
+-or-
+
+Validation is enabled, and this write operation would produce invalid JSON.
+
+
+ Writes the beginning of a JSON array with a property name specified as a read-only span of bytes as the key.
+ The UTF-8 encoded property name of the JSON array to be written.
+ The specified property name is too large.
+ The depth of the JSON exceeds the maximum depth of 1,000.
+
+-or-
+
+Validation is enabled, and this write operation would produce invalid JSON.
+
+
+ Writes the beginning of a JSON array with a property name specified as a read-only character span as the key.
+ The UTF-16 encoded property name of the JSON array to be transcoded and written as UTF-8.
+ The specified property name is too large.
+ The depth of the JSON exceeds the maximum depth of 1,000.
+
+-or-
+
+Validation is enabled, and this write operation would produce invalid JSON.
+
+
+ Writes the beginning of a JSON array with a property name specified as a string as the key.
+ The UTF-16 encoded property name of the JSON array to be transcoded and written as UTF-8.
+ The specified property name is too large.
+ The depth of the JSON exceeds the maximum depth of 1,000.
+
+-or-
+
+Validation is enabled, and this write operation would produce invalid JSON.
+ The parameter is .
+
+
+ Writes the beginning of a JSON array with a pre-encoded property name as the key.
+ The JSON encoded property name of the JSON array to be transcoded and written as UTF-8.
+ The depth of the JSON has exceeded the maximum depth of 1,000.
+
+-or-
+
+Validation is enabled, and this method would result in writing invalid JSON.
+
+
+ Writes the beginning of a JSON object.
+ The depth of the JSON exceeds the maximum depth of 1,000.
+
+-or-
+
+Validation is enabled, and the operation would result in writing invalid JSON.
+
+
+ Writes the beginning of a JSON object with a property name specified as a read-only span of bytes as the key.
+ The UTF-8 encoded property name of the JSON object to be written.
+ The specified property name is too large.
+ The depth of the JSON exceeds the maximum depth of 1,000.
+
+-or-
+
+Validation is enabled, and this write operation would produce invalid JSON.
+
+
+ Writes the beginning of a JSON object with a property name specified as a read-only character span as the key.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The specified property name is too large.
+ The depth of the JSON exceeds the maximum depth of 1,000.
+
+-or-
+
+Validation is enabled, and this write operation would produce invalid JSON.
+
+
+ Writes the beginning of a JSON object with a property name specified as a string as the key.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The specified property name is too large.
+ The depth of the JSON exceeds the maximum depth of 1,000.
+
+-or-
+
+Validation is enabled, and this write operation would produce invalid JSON.
+ The parameter is .
+
+
+ Writes the beginning of a JSON object with a pre-encoded property name as the key.
+ The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The depth of the JSON has exceeded the maximum depth of 1,000.
+
+-or-
+
+Validation is enabled, and this method would result in writing invalid JSON.
+
+
+ Writes a UTF-8 property name and a value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-8 encoded property name of the JSON object to be written.
+ The value to be written as a JSON string as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a UTF-8 property name and a value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-8 encoded property name of the JSON object to be written.
+ The value to be written as a JSON string as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a UTF-8 property name and a value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-8 encoded property name of the JSON object to be written.
+ The value to be written as a JSON string as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a UTF-8 property name and UTF-8 text value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-8 encoded property name of the JSON object to be written.
+ The UTF-8 encoded value to be written as a JSON string as part of the name/value pair.
+ The specified property name or value is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a UTF-8 property name and UTF-16 text value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-8 encoded property name of the JSON object to be written.
+ The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.
+ The specified property name or value is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a UTF-8 property name and string text value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-8 encoded property name of the JSON object to be written.
+ The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.
+ The specified property name or value is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes the UTF-8 property name and pre-encoded value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-8 encoded property name of the JSON object to be written.
+ The JSON encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and this method would result in writing invalid JSON.
+
+
+ Writes a property name specified as a read-only character span and a value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON string as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a read-only character span and a value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON string as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a read-only character span and a value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON string as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a UTF-16 property name and UTF-8 text value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The UTF-8 encoded value to be written as a JSON string as part of the name/value pair.
+ The specified property name or value is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a UTF-16 property name and UTF-16 text value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.
+ The specified property name or value is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a UTF-16 property name and string text value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.
+ The specified property name or value is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes the property name and pre-encoded value (as a JSON string) as part of a name/value pair of a JSON object.
+ The property name of the JSON object to be transcoded and written as UTF-8.
+ The JSON encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a property name specified as a string and a value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON string as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+ The parameter is .
+
+
+ Writes a property name specified as a string and a value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON string as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+ The parameter is .
+
+
+ Writes a property name specified as a string and a value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON string as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+ The parameter is .
+
+
+ Writes a property name specified as a string and a UTF-8 text value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The UTF-8 encoded value to be written as a JSON string as part of the name/value pair.
+ The specified property name or value is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+ The parameter is .
+
+
+ Writes a property name specified as a string and a UTF-16 text value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.
+ The specified property name or value is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+ The parameter is .
+
+
+ Writes a property name specified as a string and a string text value (as a JSON string) as part of a name/value pair of a JSON object.
+ The UTF-16 encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.
+ The specified property name or value is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+ The parameter is .
+
+
+ Writes the property name and pre-encoded value (as a JSON string) as part of a name/value pair of a JSON object.
+ The property name of the JSON object to be transcoded and written as UTF-8.
+ The JSON encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.
+ The specified property name is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+ The parameter is .
+
+
+ Writes the pre-encoded property name and value (as a JSON string) as part of a name/value pair of a JSON object.
+ The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON string as part of the name/value pair.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes the pre-encoded property name and value (as a JSON string) as part of a name/value pair of a JSON object.
+ The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON string as part of the name/value pair.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes the pre-encoded property name and value (as a JSON string) as part of a name/value pair of a JSON object.
+ The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a JSON string as part of the name/value pair.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes the pre-encoded property name and UTF-8 text value (as a JSON string) as part of a name/value pair of a JSON object.
+ The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The UTF-8 encoded value to be written as a JSON string as part of the name/value pair.
+ The specified value is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes the pre-encoded property name and text value (as a JSON string) as part of a name/value pair of a JSON object.
+ The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.
+ The specified value is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes the pre-encoded property name and string text value (as a JSON string) as part of a name/value pair of a JSON object.
+ The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.
+ The specified value is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes the pre-encoded property name and pre-encoded value (as a JSON string) as part of a name/value pair of a JSON object.
+ The JSON encoded property name of the JSON object to be transcoded and written as UTF-8.
+ The JSON encoded value to be written as a UTF-8 transcoded JSON string as part of the name/value pair.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a value (as a JSON string) as an element of a JSON array.
+ The value to be written as a JSON string as an element of a JSON array.
+ Validation is enabled, and the operation would result in writing invalid JSON.
+
+
+ Writes a value (as a JSON string) as an element of a JSON array.
+ The value to be written as a JSON string as an element of a JSON array.
+ Validation is enabled, and the operation would result in writing invalid JSON.
+
+
+ Writes a value (as a JSON string) as an element of a JSON array.
+ The value to be written as a JSON string as an element of a JSON array.
+ Validation is enabled, and the operation would result in writing invalid JSON.
+
+
+ Writes a UTF-8 text value (as a JSON string) as an element of a JSON array.
+ The UTF-8 encoded value to be written as a JSON string element of a JSON array.
+ The specified value is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a UTF-16 text value (as a JSON string) as an element of a JSON array.
+ The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string element of a JSON array.
+ The specified value is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes a string text value (as a JSON string) as an element of a JSON array.
+ The UTF-16 encoded value to be written as a UTF-8 transcoded JSON string element of a JSON array.
+ The specified value is too large.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Writes the pre-encoded text value (as a JSON string) as an element of a JSON array.
+ The JSON encoded value to be written as a UTF-8 transcoded JSON string element of a JSON array.
+ Validation is enabled, and the write operation would produce invalid JSON.
+
+
+ Gets the total number of bytes committed to the output by the current instance so far.
+ The total number of bytes committed to the output by the so far.
+
+
+ Gets the number of bytes written by the so far that have not yet been flushed to the output and committed.
+ The number of bytes written so far by the that have not yet been flushed to the output and committed.
+
+
+ Gets the depth of the current token.
+ The depth of the current token.
+
+
+ Gets the custom behavior when writing JSON using this instance, which indicates whether to format the output while writing, whether to skip structural JSON validation, and which characters to escape.
+ The custom behavior of this instance of the writer for formatting, validating, and escaping.
+
+
+
\ No newline at end of file
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Threading.Channels.dll b/SalesPacking_MES_API_Project/bin/Debug/System.Threading.Channels.dll
new file mode 100644
index 0000000..fee8f5a
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/System.Threading.Channels.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Threading.Channels.xml b/SalesPacking_MES_API_Project/bin/Debug/System.Threading.Channels.xml
new file mode 100644
index 0000000..20275dc
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/System.Threading.Channels.xml
@@ -0,0 +1,243 @@
+
+
+
+ System.Threading.Channels
+
+
+
+ Specifies the behavior to use when writing to a bounded channel that is already full.
+
+
+ Removes and ignores the newest item in the channel in order to make room for the item being written.
+
+
+ Removes and ignores the oldest item in the channel in order to make room for the item being written.
+
+
+ Drops the item being written.
+
+
+ Waits for space to be available in order to complete the write operation.
+
+
+ Provides options that control the behavior of bounded instances.
+
+
+ Initializes the options.
+ The maximum number of items the bounded channel may store.
+
+
+ Gets or sets the maximum number of items the bounded channel may store.
+
+
+ Gets or sets the behavior incurred by write operations when the channel is full.
+
+
+ Provides static methods for creating channels.
+
+
+ Creates a channel with the specified maximum capacity.
+ The maximum number of items the channel may store.
+ Specifies the type of data in the channel.
+ The created channel.
+
+
+ Creates a channel with the specified maximum capacity.
+ Options that guide the behavior of the channel.
+ Specifies the type of data in the channel.
+ The created channel.
+
+
+ Creates a channel subject to the provided options.
+ Options that guide the behavior of the channel.
+ Delegate that will be called when item is being dropped from channel. See .
+ Specifies the type of data in the channel.
+ The created channel.
+
+
+ Creates an unbounded channel usable by any number of readers and writers concurrently.
+ The type of data in the channel.
+ The created channel.
+
+
+ Creates an unbounded channel subject to the provided options.
+ Options that guide the behavior of the channel.
+ Specifies the type of data in the channel.
+ The created channel.
+
+
+ Provides a base class for channels that support reading and writing elements of type .
+ Specifies the type of data readable and writable in the channel.
+
+
+ Initializes an instance of the class.
+
+
+ Provides a base class for channels that support reading elements of type and writing elements of type .
+ Specifies the type of data that may be written to the channel.
+ Specifies the type of data that may be read from the channel.
+
+
+ Initializes an instance of the class.
+
+
+ Implicit cast from a to its readable half.
+ The being cast.
+ The readable half.
+
+
+ Implicit cast from a to its writable half.
+ The being cast.
+ The writable half.
+
+
+ Gets the readable half of this channel.
+
+
+ Gets the writable half of this channel.
+
+
+ Exception thrown when a channel is used after it's been closed.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class.
+ The exception that is the cause of this exception.
+
+
+ Initializes a new instance of the class with serialized data.
+ The object that holds the serialized object data.
+ The contextual information about the source or destination.
+
+
+ Initializes a new instance of the class.
+ The message that describes the error.
+
+
+ Initializes a new instance of the class.
+ The message that describes the error.
+ The exception that is the cause of this exception.
+
+
+ Provides options that control the behavior of channel instances.
+
+
+ Initializes an instance of the class.
+
+
+
+ if operations performed on a channel may synchronously invoke continuations subscribed to
+ notifications of pending async operations; if all continuations should be invoked asynchronously.
+
+
+
+ readers from the channel guarantee that there will only ever be at most one read operation at a time;
+ if no such constraint is guaranteed.
+
+
+
+ if writers to the channel guarantee that there will only ever be at most one write operation
+ at a time; if no such constraint is guaranteed.
+
+
+ Provides a base class for reading from a channel.
+ Specifies the type of data that may be read from the channel.
+
+
+ Initializes an instance of the class.
+
+
+ Creates an that enables reading all of the data from the channel.
+ The cancellation token to use to cancel the enumeration. If data is immediately ready for reading, then that data may be yielded even after cancellation has been requested.
+ The created async enumerable.
+
+
+ Asynchronously reads an item from the channel.
+ A used to cancel the read operation.
+ A that represents the asynchronous read operation.
+
+
+ Attempts to peek at an item from the channel.
+ The peeked item, or a default value if no item could be peeked.
+
+ if an item was read; otherwise, .
+
+
+ Attempts to read an item from the channel.
+ The read item, or a default value if no item could be read.
+
+ if an item was read; otherwise, .
+
+
+ Returns a that will complete when data is available to read.
+ A used to cancel the wait operation.
+
+ A that will complete with a result when data is available to read
+ or with a result when no further data will ever be available to be read due to the channel completing successfully.
+ If the channel completes with an exception, the task will also complete with an exception.
+
+
+
+ Gets a value that indicates whether is available for use on this instance.
+
+
+ Gets a value that indicates whether is available for use on this instance.
+
+ if peeking is supported by this channel instance; otherwise.
+
+
+ Gets a that completes when no more data will ever
+ be available to be read from this channel.
+
+
+ Gets the current number of items available from this channel reader.
+ Counting is not supported on this instance.
+
+
+ Provides a base class for writing to a channel.
+ Specifies the type of data that may be written to the channel.
+
+
+ Initializes an instance of the class.
+
+
+ Mark the channel as being complete, meaning no more items will be written to it.
+ Optional Exception indicating a failure that's causing the channel to complete.
+ The channel has already been marked as complete.
+
+
+ Attempts to mark the channel as being completed, meaning no more data will be written to it.
+ An indicating the failure causing no more data to be written, or null for success.
+
+ if this operation successfully completes the channel; otherwise, if the channel could not be marked for completion,
+ for example due to having already been marked as such, or due to not supporting completion.
+ .
+
+
+ Attempts to write the specified item to the channel.
+ The item to write.
+
+ if the item was written; otherwise, .
+
+
+ Returns a that will complete when space is available to write an item.
+ A used to cancel the wait operation.
+ A that will complete with a result when space is available to write an item
+ or with a result when no further writing will be permitted.
+
+
+ Asynchronously writes an item to the channel.
+ The value to write to the channel.
+ A used to cancel the write operation.
+ A that represents the asynchronous write operation.
+
+
+ Provides options that control the behavior of unbounded instances.
+
+
+ Initializes a new instance of the class.
+
+
+
\ No newline at end of file
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Threading.Tasks.Extensions.dll b/SalesPacking_MES_API_Project/bin/Debug/System.Threading.Tasks.Extensions.dll
new file mode 100644
index 0000000..eeec928
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/System.Threading.Tasks.Extensions.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.Threading.Tasks.Extensions.xml b/SalesPacking_MES_API_Project/bin/Debug/System.Threading.Tasks.Extensions.xml
new file mode 100644
index 0000000..5e02a99
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/System.Threading.Tasks.Extensions.xml
@@ -0,0 +1,166 @@
+
+
+ System.Threading.Tasks.Extensions
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Provides a value type that wraps a and a TResult, only one of which is used.
+ The result.
+
+
+ Initializes a new instance of the class using the supplied task that represents the operation.
+ The task.
+ The task argument is null.
+
+
+ Initializes a new instance of the class using the supplied result of a successful operation.
+ The result.
+
+
+ Retrieves a object that represents this .
+ The object that is wrapped in this if one exists, or a new object that represents the result.
+
+
+ Configures an awaiter for this value.
+ true to attempt to marshal the continuation back to the captured context; otherwise, false.
+ The configured awaiter.
+
+
+ Creates a method builder for use with an async method.
+ The created builder.
+
+
+ Determines whether the specified object is equal to the current object.
+ The object to compare with the current object.
+ true if the specified object is equal to the current object; otherwise, false.
+
+
+ Determines whether the specified object is equal to the current object.
+ The object to compare with the current object.
+ true if the specified object is equal to the current object; otherwise, false.
+
+
+ Creates an awaiter for this value.
+ The awaiter.
+
+
+ Returns the hash code for this instance.
+ The hash code for the current object.
+
+
+ Gets a value that indicates whether this object represents a canceled operation.
+ true if this object represents a canceled operation; otherwise, false.
+
+
+ Gets a value that indicates whether this object represents a completed operation.
+ true if this object represents a completed operation; otherwise, false.
+
+
+ Gets a value that indicates whether this object represents a successfully completed operation.
+ true if this object represents a successfully completed operation; otherwise, false.
+
+
+ Gets a value that indicates whether this object represents a failed operation.
+ true if this object represents a failed operation; otherwise, false.
+
+
+ Compares two values for equality.
+ The first value to compare.
+ The second value to compare.
+ true if the two values are equal; otherwise, false.
+
+
+ Determines whether two values are unequal.
+ The first value to compare.
+ The seconed value to compare.
+ true if the two values are not equal; otherwise, false.
+
+
+ Gets the result.
+ The result.
+
+
+ Returns a string that represents the current object.
+ A string that represents the current object.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.ValueTuple.dll b/SalesPacking_MES_API_Project/bin/Debug/System.ValueTuple.dll
new file mode 100644
index 0000000..4ce28fd
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/System.ValueTuple.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/System.ValueTuple.xml b/SalesPacking_MES_API_Project/bin/Debug/System.ValueTuple.xml
new file mode 100644
index 0000000..1151832
--- /dev/null
+++ b/SalesPacking_MES_API_Project/bin/Debug/System.ValueTuple.xml
@@ -0,0 +1,8 @@
+
+
+
+ System.ValueTuple
+
+
+
+
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Ubiety.Dns.Core.dll b/SalesPacking_MES_API_Project/bin/Debug/Ubiety.Dns.Core.dll
new file mode 100644
index 0000000..2f0c84e
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/Ubiety.Dns.Core.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/Debug/Zstandard.Net.dll b/SalesPacking_MES_API_Project/bin/Debug/Zstandard.Net.dll
new file mode 100644
index 0000000..83934d1
Binary files /dev/null and b/SalesPacking_MES_API_Project/bin/Debug/Zstandard.Net.dll differ
diff --git a/SalesPacking_MES_API_Project/bin/SalesPacking_MES_API_Project_v1.0.4.zip b/SalesPacking_MES_API_Project/bin/SalesPacking_MES_API_Project_v1.0.4.zip
deleted file mode 100644
index ec3d960..0000000
Binary files a/SalesPacking_MES_API_Project/bin/SalesPacking_MES_API_Project_v1.0.4.zip and /dev/null differ
diff --git a/SalesPacking_MES_API_Project/mainForm.vb b/SalesPacking_MES_API_Project/mainForm.vb
index 36883d2..5261801 100644
--- a/SalesPacking_MES_API_Project/mainForm.vb
+++ b/SalesPacking_MES_API_Project/mainForm.vb
@@ -7,7 +7,7 @@ Imports Newtonsoft.Json.Linq
Public Class mainForm
Public projectName As String = "DUALSONIC SalesPacking MES Program Ver."
- Public projectVer As String = "1.0.5"
+ Public projectVer As String = "1.0.6"
Private apiItemOutURL As String = "item-outflows/page"
@@ -3134,7 +3134,7 @@ Public Class mainForm
Dim saveMonth As String = Format(Now, "MM")
Dim saveDay As String = Format(Now, "dd")
Dim saveDate As String = saveYear & "-" & saveMonth & "-" & saveDay
- Dim startForm As String = "TestDate,Packing_Count,PRO_SET,LUX_SET,PRO_FACE,LUX_FACE,PRO_EYE,LUX_EYE,PRO_BODY,LUX_BODY,MAXIMUM,ALPHA_SET,ALPHA_FACE,ALPHA_EYE,ALPHA_BODY,ALTO,Effect,EffectV3,아쿠아 마스크,리프팅 마스크,헤어밴드,블루밍_젤,미니젤,앰플,크림,우산,손풍기,충전기,케이블,토너,가죽케이스(PRO_Black),가죽케이스(PRO_Beige),가죽케이스(PRO_Red),가죽케이스(PRO_Pink),가죽케이스(MAX_Black),가죽케이스(MAX_Apr),가죽케이스(MAX_Mint),가죽케이스(MAX_Beige),수딩젤,카톤박스_0호,카톤박스_1호,카톤박스_2호,카톤박스_3호,카톤박스_4호,카톤박스_5호,카톤박스_6호,쇼핑백,코스메틱_쇼핑백,더스트백,가죽케이스(MAX_Purple),가죽케이스(PRO_SnakeBlack),콜라겐단품,콜라겐세트,콜라겐_퍼플_단품,콜라겐_퍼플_세트,클렌징워터,토너패드,MAX_사피아노블랙,홀로그램_1매,홀로그램_3매,홀로그램_5매,MAX_사피아노퍼플,가죽케이스(M_Yellow),콜라겐_젤(Pe_1),콜라겐_젤(Pe_3),콜라겐_젤(Pe_5),AT_Circle_Case,AP_Square_Case,가죽케이스(M_Peach),마사지수딩젤,MAX_샤인민트,MeshPouch,Firming_Ampoule,Hyaluronic_Ampoule,나이트샷,모닝샷,우디,데이샷14키트,신년쇼핑백,EMS벨트,핏업벨트 쇼핑백,데이샷(14개입) 6, 엘릭시르 마스크 10, 엘릭시르 프리미엄 1세트,EMS벨트 controll 세트, 듀얼소닉 쇼핑백(부직포) 대, 골드 쇼퍼백 소, 택배박스_8호_뷰티루틴합포용_490*265*340"
+ Dim startForm As String = "TestDate,Packing_Count,PRO_SET,LUX_SET,PRO_FACE,LUX_FACE,PRO_EYE,LUX_EYE,PRO_BODY,LUX_BODY,MAXIMUM,ALPHA_SET,ALPHA_FACE,ALPHA_EYE,ALPHA_BODY,ALTO,Effect,EffectV3,엘릭시르 아쿠아 하이알 마스크,엘릭시르 리프팅 콜라겐 마스크,[사은품] 벨크로 헤어밴드 [Gray],[사은품] 벨크로 헤어밴드 [Beige],DUALSONIC Blooming Moisture Gel,블루밍젤 트래블 젤키트 (30ml * 5EA) [블루밍젤 트래블 젤키트 (30ml * 5EA)],DUALSONIC Skin Cell Elixir Ampoule,DUALSONIC Skin Cell Elixir Cream,[사은품] 우산,[사은품] 손풍기,국내 충전기,미국 충전기(adapter 어댑터),중국 충전기(adapter 어댑터),Micro B-Type 충전기 Assy,C-Type 충전기 Assy [C-Type 충전 케이블용 세트],DUALSONIC Skin Elixir Toner,프로페셔널 가죽케이스 블랙 [DUALSONIC 블랙 가죽 케이스 세트],프로페셔널 가죽케이스 블랙 [듀얼소닉 블랙 가죽케이스 합포장용, 포장박스 제외],듀얼소닉 프로 베이지 가죽케이스 합포장용,듀얼소닉 프로 베이직 가죽케이스 단품용,프로페셔널 가죽케이스 레드 [DUALSONIC 레드 가죽 케이스 세트],프로페셔널 가죽케이스 레드 [듀얼소닉 레드 가죽케이스 합포장용, 포장박스 제외],듀얼소닉 가죽케이스 핫핑크 [프로페셔널 가죽케이스 핫핑크],듀얼소닉 핫핑크 가죽케이스 합포장용,맥시멈 가죽케이스 블랙 [맥시멈 가죽케이스 블랙],맥시멈 가죽케이스 합포장용,맥시멈 가죽케이스 살구(연핑크) [맥시멈 가죽케이스 연한핑크],맥시멈 가죽케이스 연분홍 합포장용,맥시멈 가죽케이스 민트 합포장,맥시멈 가죽케이스 베이직 단품,맥시멈 가죽케이스 베이지 [맥시멈 베이지가죽케이스],DUALSONIC Soothing Moisture Gel Pack [듀얼소닉 수딩 모이스춰 젤 팩(DUALSONIC Soothing Moisture Gel Pack), 150ml],AS, 카트리지, 충전기, 거치대 포장박스(0호) [260*125*97, 4면인쇄, 취급주이 미표시],젤 3개 포장박스 (1호) [220*150*100, Type A, SK K K, B골],가죽케이스 박스 (2호) [270*180*170 Type A, SK K K, A골],단품 1SET 박스 (3호) [305*255*185 (BA골)],제품+사은품, 젤 10개 박스 (4호) [400*250*220 sk s s s k BA골],제품 +가죽케이스, 앰플or젤키트 포장박스 (5호) [400*250*300 sk s s s k BA골],제품 6Set 포장박스 (6호),DUALSONIC 쇼핑백,DUALSONIC 코스메틱 전용쇼핑백 [코스메틱 전용쇼핑백],DUALSONIC DUST BAG 1BOX [DUALSONIC MAXIMUM 파우치 케이스 세트],맥시멈 퍼플 가죽 케이스,맥시멈 퍼플가죽케이스 [개별포장 코드],맥시멈 퍼플가죽케이스 [합포장 코드],듀얼소닉 뱀피 가죽케이스 [블랙 10번(뱀피)],콜레겐 젤 [콜레겐 젤],콜라겐 젤 1Set [실르브상자1/게토바시1/콜라겐 젤5],콜라겐젤_퍼플 단품 [콜라겐젤 단품],콜라겐젤_퍼플 셋트 [콜라겐젤 셋트],엘릭시르 클렌징워터 500mL [엘릭시르 클렌징워터 500mL],스킨셀 엘릭시르 토너패드 200ml [스킨셀 엘릭시르 토너패드 200ml],맥시멈 사피아노블랙 가죽케이스 [맥시멈 사피아노블랙 가죽케이스],퍼플 콜라겐젤 세트 (홀로그램) 단품 150ml [퍼플 콜라겐젤 세트 (홀로그램) 단품 150ml],퍼플 콜라겐젤 세트 (홀로그램) 3ea 150ml [퍼플 콜라겐젤 세트 (홀로그램) 3ea 150ml],퍼플 콜라겐젤 세트 (홀로그램) 5ea 150ml [퍼플 콜라겐젤 세트 (홀로그램) 5ea 150ml],맥시멈 퍼플 사피아노 가죽케이스 [맥시멈 퍼플 사피아노 가죽케이스],맥시멈 옐로우 가죽케이스 [맥시멈 옐로우 가죽케이스],콜라겐젤 피치 Ver 1.0 단품 [콜라겐젤 피치 Ver1.0 단품],콜라겐젤 피치 Ver 1.0 3EA 세트 [콜라겐젤 피치 Ver 1.0 3EA 세트],콜라겐젤 피치 Ver 1.0 5EA 세트 [콜라겐젤 피치 Ver 1.0 5EA 세트],알토 퍼플 원형 가죽케이스,알파 사각 퍼플 가죽케이스,맥시멈 피치 가죽케이스,수딩마사지젤 150mg [수딩마사지젤 150mg],맥시멈 샤인민트 가죽케이스,[사은품] 듀얼소닉 매쉬파우치 3종세트,듀얼소닉 탄력앰플 50ml,듀얼소닉 하이알 앰플 50ml [SSE9002-001GW-01],[BR] NIGHT SHOT (14BOTTLES),NIGHT SHOT GIFT KIT (2BOTTLE),[BR] NIGHT SHOT(14) 6*1,[BR] MORNING SHOT (14BOTTLES),MORNING SHOT GIFT KIT (2BOTTLE),[BR] MORNING SHOT(14) 6*1,맥시멈 우디가죽케이스,엘릭시르 콜라겐 토너,엘릭시르 콜라겐 앰플,엘릭시르 콜라겐 크림,엘릭시르 하이알 토너,엘릭시르 하이알 앰플,엘릭시르 하이알 크림,DAY SHOT 14 KIT,[BR] DAY SHOT GIFT KIT (2 BOTTLES),뷰티루틴 쇼핑백,구미 젤리 (10 BAG),스틱 젤리,신년 쇼핑백,EMS BELT_MINT,EMS BELT_PEACH,EMS BELT_PURPLE,EMS BELT_Lemon,EMS Belt_Pink,핏업벨트 쇼핑백,데이샷(14개입) 6개,엘릭시르 마스크 10개,엘릭시르 아쿠아 하이알 프리미엄 1세트,EMS BELT_PEACH_controller set,DUALSONIC 쇼핑백(부직포+금박코팅) 大,골드 쇼퍼백(28.4*28.4*12) 小,[BR] MORNING SHOT(14) 6*1 + NIGHT SHOT(14) 6*1,C/T 택배박스(560*400*420),Elesq Lifting Control Toner 110ml,Elesq Lifting Control Ceam 50ml,Elesq Lifting Control Eye Cream 20ml,Elesq Lifting Control Capsule Ampoule(5ea),Elesq Aqua Balancing Toner 110ml,Elesq Aqua Balancing Ceam 50ml,Elesq Aqua Balancing Eye Serum 20ml,Elesq Aqua Balancing Capsule Ampoule(5ea),택배박스_8호_뷰티루틴합포용_490*265*340"
filePath = System.AppDomain.CurrentDomain.BaseDirectory & "\" & saveCountName
dirUse(filePath)
diff --git a/SalesPacking_MES_API_Project/obj/Debug/OrderPac.7D48029B.Up2Date b/SalesPacking_MES_API_Project/obj/Debug/OrderPac.7D48029B.Up2Date
new file mode 100644
index 0000000..e69de29
diff --git a/SalesPacking_MES_API_Project/obj/Debug/OrderPackingProcessor.vbproj.AssemblyReference.cache b/SalesPacking_MES_API_Project/obj/Debug/OrderPackingProcessor.vbproj.AssemblyReference.cache
new file mode 100644
index 0000000..8b16da7
Binary files /dev/null and b/SalesPacking_MES_API_Project/obj/Debug/OrderPackingProcessor.vbproj.AssemblyReference.cache differ
diff --git a/SalesPacking_MES_API_Project/obj/Debug/OrderPackingProcessor.vbproj.CoreCompileInputs.cache b/SalesPacking_MES_API_Project/obj/Debug/OrderPackingProcessor.vbproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..2f4fb8e
--- /dev/null
+++ b/SalesPacking_MES_API_Project/obj/Debug/OrderPackingProcessor.vbproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+30ab221dd873026d7c9842460e839294da6f4d7da6104b133ac88e6d1e84f345
diff --git a/SalesPacking_MES_API_Project/obj/Debug/OrderPackingProcessor.vbproj.FileListAbsolute.txt b/SalesPacking_MES_API_Project/obj/Debug/OrderPackingProcessor.vbproj.FileListAbsolute.txt
index 54fd037..c212e25 100644
--- a/SalesPacking_MES_API_Project/obj/Debug/OrderPackingProcessor.vbproj.FileListAbsolute.txt
+++ b/SalesPacking_MES_API_Project/obj/Debug/OrderPackingProcessor.vbproj.FileListAbsolute.txt
@@ -131,3 +131,74 @@ C:\Users\JOMT-NOTE-PC\Source\Repos\shpmt-OrderPackingProcessor\SalesPacking_MES_
C:\Users\JOMT-NOTE-PC\Source\Repos\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\SalesPacking_MES_API_Project.exe
C:\Users\JOMT-NOTE-PC\Source\Repos\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\SalesPacking_MES_API_Project.xml
C:\Users\JOMT-NOTE-PC\Source\Repos\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\SalesPacking_MES_API_Project.pdb
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\SalesPacking_MES_API_Project.exe.config
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\SalesPacking_MES_API_Project.exe
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\SalesPacking_MES_API_Project.pdb
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\SalesPacking_MES_API_Project.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\BouncyCastle.Crypto.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\Google.Protobuf.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\K4os.Compression.LZ4.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\K4os.Compression.LZ4.Streams.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\K4os.Hash.xxHash.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\Microsoft.Bcl.AsyncInterfaces.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\Microsoft.Bcl.HashCode.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\Microsoft.Extensions.Logging.Abstractions.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\MySql.Data.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\Newtonsoft.Json.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\Npgsql.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\Renci.SshNet.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Buffers.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.CodeDom.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Collections.Immutable.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Diagnostics.DiagnosticSource.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Memory.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Numerics.Vectors.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Runtime.CompilerServices.Unsafe.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Text.Encodings.Web.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Text.Json.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Threading.Channels.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Threading.Tasks.Extensions.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.ValueTuple.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\Ubiety.Dns.Core.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\Zstandard.Net.dll
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\Google.Protobuf.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\K4os.Compression.LZ4.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\K4os.Compression.LZ4.Streams.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\K4os.Hash.xxHash.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\Microsoft.Bcl.AsyncInterfaces.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\Microsoft.Bcl.HashCode.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\Microsoft.Extensions.DependencyInjection.Abstractions.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\Microsoft.Extensions.Logging.Abstractions.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\MySql.Data.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\Newtonsoft.Json.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\Npgsql.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\Renci.SshNet.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Buffers.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.CodeDom.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Collections.Immutable.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Diagnostics.DiagnosticSource.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Memory.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Numerics.Vectors.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Runtime.CompilerServices.Unsafe.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Text.Encodings.Web.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Text.Json.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Threading.Channels.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.Threading.Tasks.Extensions.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\bin\Debug\System.ValueTuple.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\OrderPackingProcessor.vbproj.AssemblyReference.cache
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\SalesPacking_MES_API_Project.countForm.resources
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\SalesPacking_MES_API_Project.errorOkNg.resources
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\SalesPacking_MES_API_Project.invForm.resources
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\SalesPacking_MES_API_Project.mainForm.resources
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\SalesPacking_MES_API_Project.loginForm.resources
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\SalesPacking_MES_API_Project.Resources.resources
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\SalesPacking_MES_API_Project.weightForm.resources
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\SalesPacking_MES_API_Project.weightSettingForm.resources
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\OrderPackingProcessor.vbproj.GenerateResource.cache
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\OrderPackingProcessor.vbproj.CoreCompileInputs.cache
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\OrderPac.7D48029B.Up2Date
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\SalesPacking_MES_API_Project.exe
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\SalesPacking_MES_API_Project.xml
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\SalesPacking_MES_API_Project.pdb
+C:\Users\JOMT-NOTE-PC\Documents\SW\project\vbproject\shpmt-OrderPackingProcessor\SalesPacking_MES_API_Project\obj\Debug\SalesPacking_MES_API_Project.exe.config
diff --git a/SalesPacking_MES_API_Project/obj/Debug/OrderPackingProcessor.vbproj.GenerateResource.cache b/SalesPacking_MES_API_Project/obj/Debug/OrderPackingProcessor.vbproj.GenerateResource.cache
new file mode 100644
index 0000000..9a59483
Binary files /dev/null and b/SalesPacking_MES_API_Project/obj/Debug/OrderPackingProcessor.vbproj.GenerateResource.cache differ
diff --git a/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.Resources.resources b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.Resources.resources
new file mode 100644
index 0000000..e5304f9
Binary files /dev/null and b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.Resources.resources differ
diff --git a/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.countForm.resources b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.countForm.resources
new file mode 100644
index 0000000..8d85cdc
Binary files /dev/null and b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.countForm.resources differ
diff --git a/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.errorOkNg.resources b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.errorOkNg.resources
new file mode 100644
index 0000000..8d85cdc
Binary files /dev/null and b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.errorOkNg.resources differ
diff --git a/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.exe b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.exe
new file mode 100644
index 0000000..31e8413
Binary files /dev/null and b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.exe differ
diff --git a/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.exe.config b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.exe.config
new file mode 100644
index 0000000..0074fc9
--- /dev/null
+++ b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.exe.config
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.invForm.resources b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.invForm.resources
new file mode 100644
index 0000000..8d85cdc
Binary files /dev/null and b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.invForm.resources differ
diff --git a/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.loginForm.resources b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.loginForm.resources
new file mode 100644
index 0000000..2e7e207
Binary files /dev/null and b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.loginForm.resources differ
diff --git a/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.mainForm.resources b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.mainForm.resources
new file mode 100644
index 0000000..8d85cdc
Binary files /dev/null and b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.mainForm.resources differ
diff --git a/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.pdb b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.pdb
new file mode 100644
index 0000000..6288aae
Binary files /dev/null and b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.pdb differ
diff --git a/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.weightForm.resources b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.weightForm.resources
new file mode 100644
index 0000000..63e8af7
Binary files /dev/null and b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.weightForm.resources differ
diff --git a/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.weightSettingForm.resources b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.weightSettingForm.resources
new file mode 100644
index 0000000..8d85cdc
Binary files /dev/null and b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.weightSettingForm.resources differ
diff --git a/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.xml b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.xml
new file mode 100644
index 0000000..ff67fc0
--- /dev/null
+++ b/SalesPacking_MES_API_Project/obj/Debug/SalesPacking_MES_API_Project.xml
@@ -0,0 +1,31 @@
+
+
+
+
+SalesPacking_MES_API_Project
+
+
+
+
+
+ 지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다.
+
+
+
+
+ 이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다.
+
+
+
+
+ 이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을
+ 재정의합니다.
+
+
+
+
+ System.Drawing.Bitmap 형식의 지역화된 리소스를 찾습니다.
+
+
+
+