diff --git a/Horse Isle Server/.vs/Horse Isle Server/v16/.suo b/Horse Isle Server/.vs/Horse Isle Server/v16/.suo
new file mode 100644
index 0000000..b7eaad8
Binary files /dev/null and b/Horse Isle Server/.vs/Horse Isle Server/v16/.suo differ
diff --git a/Horse Isle Server/Horse Isle Server.sln b/Horse Isle Server/Horse Isle Server.sln
new file mode 100644
index 0000000..8f4e5e4
--- /dev/null
+++ b/Horse Isle Server/Horse Isle Server.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.30114.105
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Horse Isle Server", "Horse Isle Server\Horse Isle Server.csproj", "{C48CBD82-AB30-494A-8FFA-4DE7069B5827}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {C48CBD82-AB30-494A-8FFA-4DE7069B5827}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {C48CBD82-AB30-494A-8FFA-4DE7069B5827}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {C48CBD82-AB30-494A-8FFA-4DE7069B5827}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {C48CBD82-AB30-494A-8FFA-4DE7069B5827}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {52075F5B-6A74-493C-BA53-3AD720D643C2}
+ EndGlobalSection
+EndGlobal
diff --git a/Horse Isle Server/Horse Isle Server/Authentication.cs b/Horse Isle Server/Horse Isle Server/Authentication.cs
new file mode 100644
index 0000000..196e005
--- /dev/null
+++ b/Horse Isle Server/Horse Isle Server/Authentication.cs
@@ -0,0 +1,98 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Security.Cryptography;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Horse_Isle_Server
+{
+ class Authentication
+ {
+ public static string DecryptLogin(string encpass)
+ {
+ string decrypt = "";
+ string ROTPOOL = "bl7Jgk61IZdnY mfDN5zjM2XLqTCty4WSEoKR3BFVQsaUhHOAx0rPwp9uc8iGve";
+ string POSPOOL = "DQc3uxiGsKZatMmOS5qYveN71zoPTk8yU0H2w9VjprBXWn l4FJd6IRbhgACfEL";
+ string ROTPOOL2 = "evGi8cu9pwPr0xAOHhUasQVFB3RKoESW4ytCTqLX2Mjz5NDfm YndZI16kgJ7lb";
+
+
+ int i = 0;
+ int ii = 0;
+ while (i < encpass.Length)
+ {
+ int ROT = ROTPOOL.IndexOf(encpass[i].ToString());
+ int POS = POSPOOL.IndexOf(encpass[i + 1].ToString());
+ POS -= (ROT + ii);
+ if (POS < 0)
+ {
+ POS = (POS / -1) - 1;
+
+ while (POS >= ROTPOOL.Length)
+ {
+ POS -= ROTPOOL.Length;
+ }
+
+ decrypt += ROTPOOL2[POS];
+ }
+ else
+ {
+ while (POS >= ROTPOOL.Length)
+ {
+ POS -= ROTPOOL.Length;
+ }
+
+ decrypt += ROTPOOL[POS];
+ }
+
+ i += 2;
+ ii += 1;
+ }
+ return decrypt.Replace(" ", "");
+ }
+
+
+
+ public static byte[] HashAndSalt(string plaintext, byte[] salt)
+ {
+ byte[] plaintextBytes = Encoding.UTF8.GetBytes(plaintext);
+
+ SHA512 sha512 = SHA512.Create();
+ sha512.Initialize();
+ byte[] hash = sha512.TransformFinalBlock(plaintextBytes, 0x00, plaintextBytes.Length);
+
+ for (int i = 0; i < hash.Length; i++)
+ {
+ hash[i] ^= salt[i];
+ }
+
+ sha512 = SHA512.Create();
+ sha512.Initialize();
+ byte[] finalHash = sha512.TransformFinalBlock(hash, 0x00, hash.Length);
+
+ return finalHash;
+ }
+
+ public static bool CheckPassword(string username, string password)
+ {
+
+ try
+ {
+ byte[] expectedPassword = Database.GetPasswordHash(username);
+ byte[] salt = Database.GetPasswordSalt(username);
+ byte[] hashedPassword = HashAndSalt(password, salt);
+
+ if (Enumerable.SequenceEqual(expectedPassword, hashedPassword))
+ return true;
+ else
+ return false;
+ }
+ catch(KeyNotFoundException e)
+ {
+ Logger.DebugPrint(e.Message);
+ return false;
+ }
+ }
+
+ }
+}
diff --git a/Horse Isle Server/Horse Isle Server/Client.cs b/Horse Isle Server/Horse Isle Server/Client.cs
new file mode 100644
index 0000000..db245df
--- /dev/null
+++ b/Horse Isle Server/Horse Isle Server/Client.cs
@@ -0,0 +1,116 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Net;
+using System.Net.Sockets;
+using System.Text;
+using System.Threading;
+using System.Threading.Tasks;
+
+namespace Horse_Isle_Server
+{
+ class Client
+ {
+ public Socket ClientSocket;
+ public string RemoteIp;
+ public bool LoggedIn = false;
+
+ private Thread recvPackets;
+
+ private const byte PACKET_LOGIN = 0x7F;
+ private const byte PACKET_CHAT = 0x14;
+ private const byte PACKET_MOVE = 0x15;
+ private const byte PACKET_USERINFO = 0x81;
+
+ private void receivePackets()
+ {
+ // HI1 Packets are terminates by 0x00 so we have to read until we receive that terminator
+ MemoryStream ms = new MemoryStream();
+
+ while(ClientSocket.Connected)
+ {
+ try
+ {
+ if (ClientSocket.Available >= 1)
+ {
+ byte[] buffer = new byte[ClientSocket.Available];
+ ClientSocket.Receive(buffer);
+
+
+ foreach (Byte b in buffer)
+ {
+ ms.WriteByte(b);
+ if (b == 0x00)
+ {
+ ms.Seek(0x00, SeekOrigin.Begin);
+ byte[] fullPacket = ms.ToArray();
+ parsePackets(fullPacket);
+ ms.Close();
+ ms = new MemoryStream();
+ }
+ }
+
+ }
+ }
+ catch(SocketException e)
+ {
+ Logger.ErrorPrint("Socket exception occured: " + e.Message +" and so it was disconnected.");
+ Disconnect();
+ break;
+ }
+
+ }
+
+
+ }
+
+ private void parsePackets(byte[] Packet)
+ {
+ if (Packet.Length < 1)
+ {
+ Logger.ErrorPrint("Received an invalid packet (size: "+Packet.Length+")");
+ }
+
+ byte identifier = Packet[0];
+ if(!LoggedIn) // Must be either login or policy-file-request
+ {
+ if(Encoding.UTF8.GetString(Packet).StartsWith("")) // Policy File Request
+ {
+ Server.OnCrossdomainPolicyRequest(this);
+ }
+ switch(identifier)
+ {
+ case PACKET_LOGIN:
+ Server.OnLoginRequest(this,Packet);
+ break;
+ }
+ }
+ }
+
+ public void Disconnect()
+ {
+ Server.ConnectedClients.Remove(this);
+ ClientSocket.Dispose();
+ }
+
+ public void SendPacket(byte[] PacketData)
+ {
+ ClientSocket.Send(PacketData);
+ }
+
+ public Client(Socket clientSocket)
+ {
+ ClientSocket = clientSocket;
+ RemoteIp = clientSocket.RemoteEndPoint.ToString();
+
+ Logger.DebugPrint("Client connected @ " + RemoteIp);
+
+ recvPackets = new Thread(() =>
+ {
+ receivePackets();
+ });
+ recvPackets.Start();
+ }
+ }
+}
diff --git a/Horse Isle Server/Horse Isle Server/ConfigReader.cs b/Horse Isle Server/Horse Isle Server/ConfigReader.cs
new file mode 100644
index 0000000..1c4a60c
--- /dev/null
+++ b/Horse Isle Server/Horse Isle Server/ConfigReader.cs
@@ -0,0 +1,100 @@
+using Horse_Isle_Server.Properties;
+using System;
+using System.IO;
+
+namespace Horse_Isle_Server
+{
+
+ class ConfigReader
+ {
+ public static int Port;
+ public static string BindIP;
+
+ public static string DatabaseIP;
+ public static string DatabaseUsername;
+ public static string DatabaseName;
+ public static string DatabasePassword;
+ public static int DatabasePort;
+
+
+ public static string MapFile;
+ public static string OverlayMapFile;
+ public static string CrossDomainPolicyFile;
+ public static bool Debug;
+
+ private static string ConfigurationFileName = "server.properties";
+ public static void OpenConfig()
+ {
+ if (!File.Exists(ConfigurationFileName))
+ {
+ Logger.ErrorPrint(ConfigurationFileName+" not found! writing default.");
+ File.WriteAllText(ConfigurationFileName,Resources.DefaultServerProperties);
+ }
+
+ string[] configFile = File.ReadAllLines(ConfigurationFileName);
+ foreach (string setting in configFile)
+ {
+ /*
+ * Avoid crashing.
+ */
+ if (setting.Length < 1)
+ continue;
+ if (setting[0] == '#')
+ continue;
+ if (!setting.Contains("="))
+ continue;
+
+ string[] dataPair = setting.Split('=');
+
+ string key = dataPair[0];
+ string data = dataPair[1];
+ /*
+ * Parse configuration file
+ */
+
+ switch (key)
+ {
+ case "port":
+ Port = int.Parse(data);
+ break;
+ case "ip":
+ BindIP = data;
+ break;
+ case "db_ip":
+ DatabaseIP = data;
+ break;
+ case "db_username":
+ DatabaseUsername = data;
+ break;
+ case "db_password":
+ DatabasePassword = data;
+ break;
+ case "db_name":
+ DatabaseName = data;
+ break;
+ case "db_port":
+ DatabasePort = int.Parse(data);
+ break;
+ case "map":
+ MapFile = data;
+ break;
+ case "overlaymap":
+ OverlayMapFile = data;
+ break;
+ case "crossdomain":
+ CrossDomainPolicyFile = data;
+ break;
+ case "debug":
+ Debug = data == "true";
+ break;
+ }
+
+
+
+ }
+
+
+ }
+
+ }
+}
diff --git a/Horse Isle Server/Horse Isle Server/Converters.cs b/Horse Isle Server/Horse Isle Server/Converters.cs
new file mode 100644
index 0000000..915b7fa
--- /dev/null
+++ b/Horse Isle Server/Horse Isle Server/Converters.cs
@@ -0,0 +1,38 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Horse_Isle_Server
+{
+ class Converters
+ {
+ // Thanks Stackoverflow (https://stackoverflow.com/questions/321370/how-can-i-convert-a-hex-string-to-a-byte-array)
+ private static int getHexVal(char hex)
+ {
+ int val = (int)hex;
+ //For uppercase A-F letters:
+ //return val - (val < 58 ? 48 : 55);
+ //For lowercase a-f letters:
+ //return val - (val < 58 ? 48 : 87);
+ //Or the two combined, but a bit slower:
+ return val - (val < 58 ? 48 : (val < 97 ? 55 : 87));
+ }
+ public static byte[] StringToByteArray(string hex)
+ {
+ if (hex.Length % 2 == 1)
+ throw new ArgumentException("The binary key cannot have an odd number of digits");
+
+ byte[] arr = new byte[hex.Length >> 1];
+
+ for (int i = 0; i < hex.Length >> 1; ++i)
+ {
+ arr[i] = (byte)((getHexVal(hex[i << 1]) << 4) + (getHexVal(hex[(i << 1) + 1])));
+ }
+
+ return arr;
+ }
+
+ }
+}
diff --git a/Horse Isle Server/Horse Isle Server/CrossDomainPolicy.cs b/Horse Isle Server/Horse Isle Server/CrossDomainPolicy.cs
new file mode 100644
index 0000000..79c1838
--- /dev/null
+++ b/Horse Isle Server/Horse Isle Server/CrossDomainPolicy.cs
@@ -0,0 +1,34 @@
+using Horse_Isle_Server.Properties;
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Horse_Isle_Server
+{
+ class CrossDomainPolicy
+ {
+ public static byte[] GetPolicy()
+ {
+ if (!File.Exists(ConfigReader.CrossDomainPolicyFile)) {
+ if (ConfigReader.Debug)
+ Console.WriteLine("[DEBUG] Cross domain policy file not found, using default");
+ File.WriteAllText(ConfigReader.CrossDomainPolicyFile, Resources.DefaultCrossDomain);
+ }
+
+
+ MemoryStream ms = new MemoryStream();
+ byte[] policyFileBytes = File.ReadAllBytes(ConfigReader.CrossDomainPolicyFile);
+ ms.Write(policyFileBytes, 0x00, policyFileBytes.Length);
+ ms.WriteByte(0x00);
+
+ ms.Seek(0x00, SeekOrigin.Begin);
+ byte[] policyFileData = ms.ToArray();
+ ms.Close();
+
+ return policyFileData;
+ }
+ }
+}
diff --git a/Horse Isle Server/Horse Isle Server/Database.cs b/Horse Isle Server/Horse Isle Server/Database.cs
new file mode 100644
index 0000000..0c243f0
--- /dev/null
+++ b/Horse Isle Server/Horse Isle Server/Database.cs
@@ -0,0 +1,66 @@
+using System;
+using System.Collections.Generic;
+using MySqlConnector;
+
+namespace Horse_Isle_Server
+{
+ class Database
+ {
+
+ public static MySqlConnection db;
+
+ public static void OpenDatabase()
+ {
+ db = new MySqlConnection("server=" + ConfigReader.DatabaseIP + ";user=" + ConfigReader.DatabaseUsername + ";password=" + ConfigReader.DatabasePassword+";database="+ConfigReader.DatabaseName);
+ db.Open();
+ string UserTable = "CREATE TABLE Users(Id INT, Username TEXT(16),Email TEXT(128),Country TEXT(128),SecurityQuestion Text(128),SecurityAnswerHash TEXT(128),Age INT,PassHash TEXT(128), Salt TEXT(128),Gender TEXT(16), Admin TEXT(3), Moderator TEXT(3))";
+
+ try
+ {
+
+ MySqlCommand sqlCommand = db.CreateCommand();
+ sqlCommand.CommandText = UserTable;
+ sqlCommand.ExecuteNonQuery();
+ }
+ catch (Exception e) {
+ Logger.ErrorPrint("Failed to setup database (perhaps its allready setup?) "+e.Message);
+ };
+ }
+
+ public static byte[] GetPasswordSalt(string username)
+ {
+ MySqlCommand sqlCommand = db.CreateCommand();
+ sqlCommand.CommandText = "SELECT COUNT(1) FROM Users WHERE Username=$name";
+ sqlCommand.Parameters.AddWithValue("$name", username);
+ Int32 count = Convert.ToInt32(sqlCommand.ExecuteScalar());
+ if (count >= 1)
+ {
+ sqlCommand.CommandText = "SELECT Salt FROM Users WHERE Username=$name";
+ string expectedHash = sqlCommand.ExecuteScalar().ToString();
+ return Converters.StringToByteArray(expectedHash);
+ }
+ else
+ {
+ throw new KeyNotFoundException("Username " + username + " not found in database.");
+ }
+ }
+ public static byte[] GetPasswordHash(string username)
+ {
+ MySqlCommand sqlCommand = db.CreateCommand();
+ sqlCommand.CommandText = "SELECT COUNT(1) FROM Users WHERE Username=$name";
+ sqlCommand.Parameters.AddWithValue("$name", username);
+ Int32 count = Convert.ToInt32(sqlCommand.ExecuteScalar());
+ if(count >= 1)
+ {
+ sqlCommand.CommandText = "SELECT PassHash FROM Users WHERE Username=$name";
+ string expectedHash = sqlCommand.ExecuteScalar().ToString();
+ return Converters.StringToByteArray(expectedHash);
+ }
+ else
+ {
+ throw new KeyNotFoundException("Username " + username + " not found in database.");
+ }
+ }
+ }
+
+}
\ No newline at end of file
diff --git a/Horse Isle Server/Horse Isle Server/Horse Isle Server.csproj b/Horse Isle Server/Horse Isle Server/Horse Isle Server.csproj
new file mode 100644
index 0000000..0ef3c13
--- /dev/null
+++ b/Horse Isle Server/Horse Isle Server/Horse Isle Server.csproj
@@ -0,0 +1,99 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {C48CBD82-AB30-494A-8FFA-4DE7069B5827}
+ Exe
+ Horse_Isle_Server
+ Horse Isle Server
+ v4.8
+ 512
+ true
+ true
+
+
+
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+ false
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+ false
+
+
+
+
+ ..\packages\MySqlConnector.1.0.1\lib\net471\MySqlConnector.dll
+
+
+
+ ..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll
+
+
+
+ ..\packages\System.Memory.4.5.0\lib\netstandard2.0\System.Memory.dll
+
+
+
+
+ ..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll
+
+
+ ..\packages\System.Runtime.CompilerServices.Unsafe.4.5.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll
+
+
+ ..\packages\System.Threading.Tasks.Extensions.4.3.0\lib\portable-net45+win8+wp8+wpa81\System.Threading.Tasks.Extensions.dll
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ True
+ True
+ Resources.resx
+
+
+
+
+
+
+
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Horse Isle Server/Horse Isle Server/Logger.cs b/Horse Isle Server/Horse Isle Server/Logger.cs
new file mode 100644
index 0000000..1428d3c
--- /dev/null
+++ b/Horse Isle Server/Horse Isle Server/Logger.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Horse_Isle_Server
+{
+ class Logger
+ {
+ public static void DebugPrint(string text)
+ {
+ if (ConfigReader.Debug)
+ Console.WriteLine("[DEBUG] " + text);
+ }
+ public static void ErrorPrint(string text)
+ {
+ Console.WriteLine("[ERROR] " + text);
+ }
+ }
+}
diff --git a/Horse Isle Server/Horse Isle Server/Program.cs b/Horse Isle Server/Horse Isle Server/Program.cs
new file mode 100644
index 0000000..d90ef8e
--- /dev/null
+++ b/Horse Isle Server/Horse Isle Server/Program.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Net.Sockets;
+using System.Reflection;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Horse_Isle_Server
+{
+ class Program
+ {
+ static void Main(string[] args)
+ {
+ Directory.SetCurrentDirectory(Path.GetDirectoryName(Assembly.GetEntryAssembly().Location));
+ ConfigReader.OpenConfig();
+ Database.OpenDatabase();
+ }
+ }
+}
diff --git a/Horse Isle Server/Horse Isle Server/Properties/AssemblyInfo.cs b/Horse Isle Server/Horse Isle Server/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..b0554c3
--- /dev/null
+++ b/Horse Isle Server/Horse Isle Server/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("Horse Isle Server")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Horse Isle Server")]
+[assembly: AssemblyCopyright("Copyright © 2020")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("c48cbd82-ab30-494a-8ffa-4de7069b5827")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Horse Isle Server/Horse Isle Server/Properties/Resources.Designer.cs b/Horse Isle Server/Horse Isle Server/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..c9c8041
--- /dev/null
+++ b/Horse Isle Server/Horse Isle Server/Properties/Resources.Designer.cs
@@ -0,0 +1,104 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace Horse_Isle_Server.Properties {
+ using System;
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources() {
+ }
+
+ ///
+ /// Returns the cached ResourceManager instance used by this class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager {
+ get {
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Horse_Isle_Server.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture {
+ get {
+ return resourceCulture;
+ }
+ set {
+ resourceCulture = value;
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to <cross-domain-policy>
+ /// <allow-access-from domain="*" to-ports="1080" secure="false"/>
+ ///</cross-domain-policy>.
+ ///
+ internal static string DefaultCrossDomain {
+ get {
+ return ResourceManager.GetString("DefaultCrossDomain", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to # Horse Isle Server Default Configuration File
+ ///
+ ///# Ip address the server will bind to (default: 0.0.0.0 ALL INTERFACES)
+ ///ip=0.0.0.0
+ ///# Port the server will bind to (default: 1080)
+ ///port=1080
+ ///
+ ///# MariaDB Database
+ ///db_ip=127.0.0.1
+ ///db_username=root
+ ///db_password=test123
+ ///db_port=3306
+ ///
+ ///# Map Data
+ ///map=MapData.bmp
+ ///overlaymap=oMapData.bmp
+ ///
+ ///# Cross-Domain Policy File
+ ///crossdomain="CrossDomainPolicy.xml
+ ///
+ ///# Should print debug logs
+ ///debug=false.
+ ///
+ internal static string DefaultServerProperties {
+ get {
+ return ResourceManager.GetString("DefaultServerProperties", resourceCulture);
+ }
+ }
+ }
+}
diff --git a/Horse Isle Server/Horse Isle Server/Properties/Resources.resx b/Horse Isle Server/Horse Isle Server/Properties/Resources.resx
new file mode 100644
index 0000000..8473728
--- /dev/null
+++ b/Horse Isle Server/Horse Isle Server/Properties/Resources.resx
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\default_cross_domain.xml;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252
+
+
+ ..\Resources\server.properties;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252
+
+
\ No newline at end of file
diff --git a/Horse Isle Server/Horse Isle Server/Resources/default_cross_domain.xml b/Horse Isle Server/Horse Isle Server/Resources/default_cross_domain.xml
new file mode 100644
index 0000000..38cd07e
--- /dev/null
+++ b/Horse Isle Server/Horse Isle Server/Resources/default_cross_domain.xml
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/Horse Isle Server/Horse Isle Server/Resources/server.properties b/Horse Isle Server/Horse Isle Server/Resources/server.properties
new file mode 100644
index 0000000..22a14a2
--- /dev/null
+++ b/Horse Isle Server/Horse Isle Server/Resources/server.properties
@@ -0,0 +1,23 @@
+# Horse Isle Server Default Configuration File
+
+# Ip address the server will bind to (default: 0.0.0.0 ALL INTERFACES)
+ip=0.0.0.0
+# Port the server will bind to (default: 1080)
+port=1080
+
+# MariaDB Database
+db_ip=127.0.0.1
+db_name=beta
+db_username=root
+db_password=test123
+db_port=3306
+
+# Map Data
+map=MapData.bmp
+overlaymap=oMapData.bmp
+
+# Cross-Domain Policy File
+crossdomain=CrossDomainPolicy.xml
+
+# Should print debug logs
+debug=false
\ No newline at end of file
diff --git a/Horse Isle Server/Horse Isle Server/Server.cs b/Horse Isle Server/Horse Isle Server/Server.cs
new file mode 100644
index 0000000..6867bc7
--- /dev/null
+++ b/Horse Isle Server/Horse Isle Server/Server.cs
@@ -0,0 +1,72 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Net;
+using System.Net.Sockets;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Horse_Isle_Server
+{
+ class Server
+ {
+
+ public static Socket ServerSocket;
+ public static List ConnectedClients = new List();
+
+ public static void OnCrossdomainPolicyRequest(Client sender) // When a cross-domain-policy request is received.
+ {
+ Logger.DebugPrint("Cross-Domain-Policy request received from: " + sender.RemoteIp);
+
+ byte[] crossDomainPolicyResponse = CrossDomainPolicy.GetPolicy(); // Generate response packet
+ sender.SendPacket(crossDomainPolicyResponse); // Send to client.
+ }
+
+ public static void OnLoginRequest(Client sender, byte[] packet)
+ {
+ string loginRequestString = Encoding.UTF8.GetString(packet).Substring(1);
+
+ if (!loginRequestString.Contains('|'))
+ {
+ Logger.ErrorPrint(sender.RemoteIp + " Sent an invalid login request" + loginRequestString);
+ return;
+ }
+
+ string[] loginParts = loginRequestString.Split('|');
+ if(loginParts.Length < 3)
+ {
+ Logger.ErrorPrint(sender.RemoteIp + " Sent a login request of invalid length. " + loginRequestString);
+ return;
+ }
+
+ int version = int.Parse(loginParts[0]);
+ string encryptedUsername = loginParts[1];
+ string encryptedPassword = loginParts[2];
+ string username = Authentication.DecryptLogin(encryptedUsername);
+ string password = Authentication.DecryptLogin(encryptedPassword);
+
+ if(Authentication.CheckPassword(username, password))
+ {
+
+ }
+ }
+ public static void StartServer()
+ {
+ ServerSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
+ IPAddress hostIP = IPAddress.Parse(ConfigReader.BindIP);
+ IPEndPoint ep = new IPEndPoint(hostIP, ConfigReader.Port);
+ ServerSocket.Bind(ep);
+ Logger.DebugPrint("Binding to ip: " + ConfigReader.BindIP + " On port: " + ConfigReader.Port.ToString());
+ ServerSocket.Listen(10000);
+
+ while(true)
+ {
+ Logger.DebugPrint("Waiting for new connections...");
+
+ Socket cientSocket = ServerSocket.Accept();
+ Client client = new Client(cientSocket);
+ ConnectedClients.Add(client);
+ }
+ }
+ }
+}
diff --git a/Horse Isle Server/Horse Isle Server/packages.config b/Horse Isle Server/Horse Isle Server/packages.config
new file mode 100644
index 0000000..03ed4c5
--- /dev/null
+++ b/Horse Isle Server/Horse Isle Server/packages.config
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/.signature.p7s b/Horse Isle Server/packages/MySqlConnector.1.0.1/.signature.p7s
new file mode 100644
index 0000000..a34cc95
Binary files /dev/null and b/Horse Isle Server/packages/MySqlConnector.1.0.1/.signature.p7s differ
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/MySqlConnector.1.0.1.nupkg b/Horse Isle Server/packages/MySqlConnector.1.0.1/MySqlConnector.1.0.1.nupkg
new file mode 100644
index 0000000..02c38bf
Binary files /dev/null and b/Horse Isle Server/packages/MySqlConnector.1.0.1/MySqlConnector.1.0.1.nupkg differ
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net45/MySqlConnector.dll b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net45/MySqlConnector.dll
new file mode 100644
index 0000000..50b8f30
Binary files /dev/null and b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net45/MySqlConnector.dll differ
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net45/MySqlConnector.xml b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net45/MySqlConnector.xml
new file mode 100644
index 0000000..3cec9a9
--- /dev/null
+++ b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net45/MySqlConnector.xml
@@ -0,0 +1,5042 @@
+
+
+
+ MySqlConnector
+
+
+
+
+ A registry of known authentication plugins.
+
+
+
+
+ Registers the specified authentication plugin. The name of this plugin must be unique.
+
+ The authentication plugin.
+
+
+
+ The primary interface implemented by an authentication plugin.
+
+
+
+
+ The authentication plugin name.
+
+
+
+
+ Creates the authentication response.
+
+ The client's password.
+ The authentication data supplied by the server; this is the auth method data
+ from the Authentication
+ Method Switch Request Packet.
+
+
+
+
+ encapsulates a list of and the current position within that list.
+
+
+
+
+ The commands in the list.
+
+
+
+
+ The index of the current command.
+
+
+
+
+ If the current command is a prepared statement, the index of the current prepared statement for that command.
+
+
+
+
+ Returns true if the connection pool is empty, i.e., all connections are in use. Note that in a highly-multithreaded
+ environment, the value of this property may be stale by the time it's returned.
+
+
+
+
+ Returns the stored procedure cache for this , lazily creating it on demand.
+ This method may return a different object after has been called. The returned
+ object is shared between multiple threads and is only safe to use after taking a lock on the
+ object itself.
+
+
+
+
+ Examines all the objects in to determine if any
+ have an owning that has been garbage-collected. If so, assumes that the connection
+ was not properly disposed and returns the session to the pool.
+
+
+
+
+ The that was used to create this .!--
+ This object must not be mutated.
+
+
+
+
+ provides an internal abstraction over operations that can be cancelled: and .
+
+
+
+
+ Returns a unique ID for all implementations of .
+
+
+
+
+
+ Causes the effective command timeout to be reset back to the value specified by .
+
+ As per the MSDN documentation,
+ "This property is the cumulative time-out (for all network packets that are read during the invocation of a method) for all network reads during command
+ execution or processing of the results. A time-out can still occur after the first row is returned, and does not include user processing time, only network
+ read time. For example, with a 30 second time out, if Read requires two network packets, then it has 30 seconds to read both network packets. If you call
+ Read again, it will have another 30 seconds to read any data that it requires."
+ The method is called by public ADO.NET API methods to reset the effective time remaining at the beginning of a new
+ method call.
+
+
+
+ creates the data for an "execute query" command for one or more objects in a command list.
+
+
+
+
+ Writes the payload for an "execute query" command to .
+
+ The command list and its current position. This will be updated to the position of the next command to write (or past the end if there are no more commands).
+ A for all the stored procedures in the command list, if any.
+ The to write the payload to.
+ true if a command was written; otherwise, false (if there were no more commands in the list).
+
+
+
+ Returns an containing in the order they
+ should be tried to satisfy the load balancing policy.
+
+
+
+
+ provides an internal abstraction over and .
+
+
+
+
+ provides an abstraction over iterating through a sequence of
+ rows, where each row can fill an array of field values.
+
+
+
+
+ represents an individual SQL statement that's been parsed
+ from a string possibly containing multiple semicolon-delimited SQL statements.
+
+
+
+
+ The bytes for this statement that will be written on the wire.
+
+
+
+
+ The names of the parameters (if known) of the parameters in the prepared statement. There
+ is one entry in this list for each parameter, which will be null if the name is unknown.
+
+
+
+
+ The indexes of the parameters in the prepared statement. There is one entry in this list for
+ each parameter; it will be -1 if the parameter is named.
+
+
+
+
+ wraps a collection of objects.
+ It implements to return the memory backing the statements to a shared pool.
+
+
+
+
+ is a statement that has been prepared on the MySQL Server.
+
+
+
+
+ Disposes and sets to null, ignoring any
+ or that is thrown.
+
+ An type.
+ The object to dispose.
+
+
+
+ Writes the text of to , encoded in UTF-8.
+
+ The command.
+ The cached procedures.
+ The output writer.
+ true if a complete command was written; otherwise, false.
+
+
+
+ The statement is complete (apart from potentially needing a semicolon or newline).
+
+
+
+
+ The statement needs a newline (e.g., to terminate a final comment).
+
+
+
+
+ The statement needs a semicolon (if another statement is going to be concatenated to it).
+
+
+
+
+ Implementations of write logs to a particular target.
+
+
+
+
+ Returns true if logging for this logger is enabled at the specified level.
+
+ The log level.
+ true if logging is enabled; otherwise, false.
+
+
+
+ Writes a log message to the target.
+
+ The log level.
+ The log message. See documentation for for notes on interpreting {0} within this string.
+ If not null or empty, then includes formatting placeholders (e.g., {0})
+ which must be replaced with the arguments in , using or similar.
+ If null or an empty array, then is a literal string; any curly braces within it must be treated as literal characters,
+ not formatting placeholders.
+ If not null, an associated with the log message.
+ This method may be called from multiple threads and must be thread-safe. This method may be called
+ even if would return false for ; the implementation must
+ check if logging is enabled for that level.
+
+
+
+ Implementations of create logger instances.
+
+
+
+
+ Creates a logger with the specified name. This method may be called from multiple threads and must be thread-safe.
+
+
+
+
+ Controls logging for MySqlConnector.
+
+
+
+
+ Allows the to be set for this library. can
+ be set once, and must be set before any other library methods are used.
+
+
+
+
+ is an implementation of that does nothing.
+
+ This is the default logging implementation unless is set.
+
+
+
+ Returns false.
+
+
+
+
+ Ignores the specified log message.
+
+
+
+
+ Returns a singleton instance of .
+
+
+
+
+ Creates loggers that do nothing.
+
+
+
+
+ Returns a .
+
+
+
+
+ implements the new
+ ADO.NET batching API.
+ It is currently experimental and may change in the future.
+ When using MariaDB (10.2 or later), the commands will be sent in a single batch, reducing network
+ round-trip time. With other MySQL Servers, this may be no more efficient than executing the commands
+ individually.
+ Example usage:
+
+ using var connection = new MySqlConnection("...connection string...");
+ await connection.OpenAsync();
+
+ using var batch = new MySqlBatch(connection)
+ {
+ BatchCommands =
+ {
+ new MySqlBatchCommand("INSERT INTO departments(name) VALUES(@name);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Sales"),
+ },
+ },
+ new MySqlBatchCommand("SET @dept_id = last_insert_id()"),
+ new MySqlBatchCommand("INSERT INTO employees(name, department_id) VALUES(@name, @dept_id);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Jim Halpert"),
+ },
+ },
+ new MySqlBatchCommand("INSERT INTO employees(name, department_id) VALUES(@name, @dept_id);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Dwight Schrute"),
+ },
+ },
+ },
+ };
+ await batch.ExecuteNonQueryAsync();
+
+
+ The proposed ADO.NET API that is based on is not finalized. This API is experimental and may change in the future.
+
+
+
+ Initializes a new object. The property must be set before this object can be used.
+
+
+
+
+ Initializes a new object, setting the and if specified.
+
+ (Optional) The to use.
+ (Optional) The to use.
+
+
+
+ The collection of commands that will be executed in the batch.
+
+
+
+
+ Executes all the commands in the batch, returning a that can iterate
+ over the result sets. If multiple resultsets are returned, use
+ to access them.
+
+
+
+
+ Executes all the commands in the batch, returning a that can iterate
+ over the result sets. If multiple resultsets are returned, use
+ to access them.
+
+ A token to cancel the asynchronous operation.
+ A containing the result of the asynchronous operation.
+
+
+
+ lets you efficiently load a MySQL Server table with data from another source.
+ It is similar to the SqlBulkCopy class
+ for SQL Server.
+ Due to security features
+ in MySQL Server, the connection string must have AllowLoadLocalInfile=true in order
+ to use this class.
+ For data that is in CSV or TSV format, use to bulk load the file.
+ Example code:
+
+ // NOTE: to copy data between tables in the same database, use INSERT ... SELECT
+ // https://dev.mysql.com/doc/refman/8.0/en/insert-select.html
+ var dataTable = GetDataTableFromExternalSource();
+
+ using var connection = new MySqlConnection("...;AllowLoadLocalInfile=True");
+ await connection.OpenAsync();
+ var bulkCopy = new MySqlBulkCopy(connection);
+ bulkCopy.DestinationTableName = "some_table_name";
+ await bulkCopy.WriteToServerAsync(dataTable);
+
+
+ Note: This API is a unique feature of MySqlConnector; you must
+ switch to MySqlConnector in order to use it.
+ This API is experimental and may change in the future.
+
+
+
+
+ Initializes a object with the specified connection, and optionally the active transaction.
+
+ The to use.
+ (Optional) The to use.
+
+
+
+ The number of seconds for the operation to complete before it times out, or 0 for no timeout.
+
+
+
+
+ The name of the table to insert rows into.
+
+ This name needs to be quoted if it contains special characters.
+
+
+
+ If non-zero, this specifies the number of rows to be processed before generating a notification event.
+
+
+
+
+ This event is raised every time that the number of rows specified by the property have been processed.
+
+
+ Receipt of a RowsCopied event does not imply that any rows have been sent to the server or committed.
+ The property can be set to true by the event handler to abort the copy.
+
+
+
+
+ A collection of objects. If the columns being copied from the
+ data source line up one-to-one with the columns in the destination table then populating this collection is
+ unnecessary. Otherwise, this should be filled with a collection of objects
+ specifying how source columns are to be mapped onto destination columns. If one column mapping is specified,
+ then all must be specified.
+
+
+
+
+ Returns the number of rows that were copied (after WriteToServer(Async)
finishes).
+
+
+
+
+ Copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ This method is not available on netstandard1.3.
+
+
+
+ Asynchronously copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ This method is not available on netstandard1.3.
+
+
+
+ Copies all rows in the supplied sequence of objects to the destination table specified by the
+ property of the object. The number of columns
+ to be read from the objects must be specified in advance.
+
+ The collection of objects.
+ The number of columns to copy (in each row).
+ This method is not available on netstandard1.3.
+
+
+
+ Asynchronously copies all rows in the supplied sequence of objects to the destination table specified by the
+ property of the object. The number of columns
+ to be read from the objects must be specified in advance.
+
+ The collection of objects.
+ The number of columns to copy (in each row).
+ A token to cancel the asynchronous operation.
+ This method is not available on netstandard1.3.
+
+
+
+ Copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ The to copy from.
+
+
+
+ Asynchronously copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ The to copy from.
+ A token to cancel the asynchronous operation.
+
+
+
+ Use to specify how to map columns in the source data to
+ columns in the destination table when using .
+ Set to the index of the source column to map. Set to
+ either the name of a column in the destination table, or the name of a user-defined variable.
+ If a user-defined variable, you can use to specify a MySQL expression that assigns
+ its value to destination column.
+ Source columns that don't have an entry in will be ignored
+ (unless the collection is empty, in which case all columns will be mapped
+ one-to-one).
+ MySqlConnector will transmit all binary data as hex, so any expression that operates on it
+ must decode it with the UNHEX function first. (This will be performed automatically if no
+ is specified, but will be necessary to specify manually for more complex expressions.)
+ Example code:
+
+ new MySqlBulkCopyColumnMapping
+ {
+ SourceOrdinal = 2,
+ DestinationColumn = "user_name",
+ },
+ new MySqlBulkCopyColumnMapping
+ {
+ SourceOrdinal = 0,
+ DestinationColumn = "@tmp",
+ Expression = "column_value = @tmp * 2",
+ },
+
+
+
+
+
+ Initializes with the default values.
+
+
+
+
+ Initializes to the specified values.
+
+ The ordinal position of the source column.
+ The name of the destination column.
+ The optional expression to be used to set the destination column.
+
+
+
+ The ordinal position of the source column to map from.
+
+
+
+
+ The name of the destination column to copy to. To use an expression, this should be the name of a unique user-defined variable.
+
+
+
+
+ An optional expression for setting a destination column. To use an expression, the should
+ be set to the name of a user-defined variable and this expression should set a column using that variable.
+
+ To populate a binary column, you must set to a variable name, and to an
+ expression that uses UNHEX
to set the column value, e.g., `destColumn` = UNHEX(@variableName)
.
+
+
+
+ lets you efficiently load a MySQL Server Table with data from a CSV or TSV file or .
+ Example code:
+
+ using var connection = new MySqlConnection("...;AllowLoadLocalInfile=True");
+ await connection.OpenAsync();
+ var bulkLoader = new MySqlBulkLoader(connection)
+ {
+ FileName = @"C:\Path\To\file.csv",
+ TableName = "destination",
+ CharacterSet = "UTF8",
+ NumberOfLinesToSkip = 1,
+ FieldTerminator = ",",
+ FieldQuotationCharacter = '"',
+ FieldQuotationOptional = true,
+ Local = true,
+ }
+ var rowCount = await bulkLoader.LoadAsync();
+
+
+ Due to security features
+ in MySQL Server, the connection string must have AllowLoadLocalInfile=true in order to use a local source.
+
+
+
+
+ (Optional) The character set of the source data. By default, the database's character set is used.
+
+
+
+
+ (Optional) A list of the column names in the destination table that should be filled with data from the input file.
+
+
+
+
+ A value that specifies how conflicts are resolved (default ).
+
+
+
+
+ The to use.
+
+
+
+
+ (Optional) The character used to escape instances of within field values.
+
+
+
+
+ (Optional) A list of expressions used to set field values from the columns in the source data.
+
+
+
+
+ (Optional) The character used to enclose fields in the source data.
+
+
+
+
+ Whether quoting fields is optional (default false).
+
+
+
+
+ (Optional) The string fields are terminated with.
+
+
+
+
+ The name of the local (if is true) or remote (otherwise) file to load.
+ Either this or must be set.
+
+
+
+
+ (Optional) A prefix in each line that should be skipped when loading.
+
+
+
+
+ (Optional) The string lines are terminated with.
+
+
+
+
+ Whether a local file is being used (default true).
+
+
+
+
+ The number of lines to skip at the beginning of the file (default 0).
+
+
+
+
+ A giving the priority to load with (default ).
+
+
+
+
+ A containing the data to load. Either this or must be set.
+ The property must be true if this is set.
+
+
+
+
+ The name of the table to load into. If this is a reserved word or contains spaces, it must be quoted.
+
+
+
+
+ The timeout (in milliseconds) to use.
+
+
+
+
+ Initializes a new instance of the class with the specified .
+
+ The to use.
+
+
+
+ Loads all data in the source file or stream into the destination table.
+
+ The number of rows inserted.
+
+
+
+ Asynchronously loads all data in the source file or stream into the destination table.
+
+ A that will be completed with the number of rows inserted.
+
+
+
+ Asynchronously loads all data in the source file or stream into the destination table.
+
+ A token to cancel the asynchronous operation.
+ A that will be completed with the number of rows inserted.
+
+
+
+ Do not use certificate store
+
+
+
+
+ Use certificate store for the current user
+
+
+
+
+ User certificate store for the machine
+
+
+
+
+ represents a SQL statement or stored procedure name
+ to execute against a MySQL database.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class, setting to .
+
+ The text to assign to .
+
+
+
+ Initializes a new instance of the class with the specified and .
+
+ The to use.
+ The active , if any.
+
+
+
+ Initializes a new instance of the class with the specified command text and .
+
+ The text to assign to .
+ The to use.
+
+
+
+ Initializes a new instance of the class with the specified command text,, and .
+
+ The text to assign to .
+ The to use.
+ The active , if any.
+
+
+
+ The collection of objects for this command.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Holds the first automatically-generated ID for a value inserted in an AUTO_INCREMENT column in the last statement.
+
+
+ See LAST_INSERT_ID() for more information.
+
+
+
+
+ Registers as a callback with if cancellation is supported.
+
+ The .
+ An object that must be disposed to revoke the cancellation registration.
+ This method is more efficient than calling token.Register(Command.Cancel)
because it avoids
+ unnecessary allocations.
+
+
+
+ represents a connection to a MySQL database.
+
+
+
+
+ Begins a database transaction.
+
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction.
+
+ The for the transaction.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction.
+
+ The for the transaction.
+ If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ The for the transaction.
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ The for the transaction.
+ If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Resets the session state of the current open connection; this clears temporary tables and user-defined variables.
+
+ A token to cancel the asynchronous operation.
+ A ValueTask representing the asynchronous operation.
+ This is an optional feature of the MySQL protocol and may not be supported by all servers.
+ It's known to be supported by MySQL Server 5.7.3 (and later) and MariaDB 10.2.4 (and later).
+ Other MySQL-compatible servers or proxies may not support this command.
+
+
+
+ The connection ID from MySQL Server.
+
+
+
+
+ Clears the connection pool that belongs to.
+
+ The whose connection pool will be cleared.
+
+
+
+ Asynchronously clears the connection pool that belongs to.
+
+ The whose connection pool will be cleared.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+
+
+
+ Clears all connection pools.
+
+
+
+
+ Asynchronously clears all connection pools.
+
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+
+
+
+ Returns schema information for the data source of this .
+
+ A containing schema information.
+
+
+
+ Returns schema information for the data source of this .
+
+ The name of the schema to return.
+ A containing schema information.
+
+
+
+ Returns schema information for the data source of this .
+
+ The name of the schema to return.
+ The restrictions to apply to the schema; this parameter is currently ignored.
+ A containing schema information.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ The name of the schema to return.
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ The name of the schema to return.
+ The restrictions to apply to the schema; this parameter is currently ignored.
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Gets the time (in seconds) to wait while trying to establish a connection
+ before terminating the attempt and generating an error. This value
+ is controlled by ,
+ which defaults to 15 seconds.
+
+
+
+
+ Creates a object for executing batched commands.
+
+
+
+
+
+ Creates a object (that can be used with ).
+
+
+
+
+
+ Returns an unopened copy of this connection with a new connection string. If the Password
+ in is not set, the password from this connection will be used.
+ This allows creating a new connection with the same security information while changing other options,
+ such as database or pooling.
+
+ The new connection string to be used.
+ A new with different connection string options but
+ the same password as this connection (unless overridden by ).
+
+
+
+ Specifies the type of connection to make to the server.
+
+
+
+
+ TCP/IP connection.
+
+
+
+
+ Named pipe connection. Only works on Windows.
+
+
+
+
+ Unix domain socket connection. Only works on Unix/Linux.
+
+
+
+
+ Shared memory connection. Not currently supported.
+
+
+
+
+ The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error.
+ The default value is 15.
+
+
+
+
+ An implementation of that creates MySqlConnector objects.
+
+
+
+
+ Provides an instance of that can create MySqlConnector objects.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Returns false.
+
+ is not supported by MySqlConnector.
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Returns true.
+
+
+
+
+ Returns a that contains metadata about the columns in the result set.
+
+ A containing metadata about the columns in the result set.
+
+
+
+ Returns a that contains metadata about the columns in the result set.
+
+ A token to cancel the operation.
+ A containing metadata about the columns in the result set.
+ This method runs synchronously; prefer to call to avoid the overhead of allocating an unnecessary Task.
+
+
+
+ Returns metadata about the columns in the result set.
+
+ A containing metadata about the result set.
+
+
+
+ Returns metadata about the columns in the result set.
+
+ A token to cancel the operation.
+ A containing containing metadata about the result set.
+ This method runs synchronously; prefer to call to avoid the overhead of allocating an unnecessary Task.
+
+
+
+ The used when reading from the database.
+
+
+
+
+ Use when reading; allow any in command parameters.
+
+
+
+
+ Use when reading; reject in command parameters.
+
+
+
+
+ Use when reading; reject in command parameters.
+
+
+
+
+ MySQL Server error codes. Taken from Server Error Codes and Messages.
+
+
+
+
+ Not all rows from the source supplied to were copied to .
+
+
+
+
+ The timeout period specified by elapsed before the operation completed.
+
+
+
+
+ ER_HASHCHK
+
+
+
+
+ ER_NISAMCHK
+
+
+
+
+ ER_NO
+
+
+
+
+ ER_YES
+
+
+
+
+ ER_CANT_CREATE_FILE
+
+
+
+
+ ER_CANT_CREATE_TABLE
+
+
+
+
+ ER_CANT_CREATE_DB
+
+
+
+
+ ER_DB_CREATE_EXISTS
+
+
+
+
+ ER_DB_DROP_EXISTS
+
+
+
+
+ ER_DB_DROP_DELETE
+
+
+
+
+ ER_DB_DROP_RMDIR
+
+
+
+
+ ER_CANT_DELETE_FILE
+
+
+
+
+ ER_CANT_FIND_SYSTEM_REC
+
+
+
+
+ ER_CANT_GET_STAT
+
+
+
+
+ ER_CANT_GET_WD
+
+
+
+
+ ER_CANT_LOCK
+
+
+
+
+ ER_CANT_OPEN_FILE
+
+
+
+
+ ER_FILE_NOT_FOUND
+
+
+
+
+ ER_CANT_READ_DIR
+
+
+
+
+ ER_CANT_SET_WD
+
+
+
+
+ ER_CHECKREAD
+
+
+
+
+ ER_DISK_FULL
+
+
+
+
+ ER_DUP_KEY
+
+
+
+
+ ER_ERROR_ON_CLOSE
+
+
+
+
+ ER_ERROR_ON_READ
+
+
+
+
+ ER_ERROR_ON_RENAME
+
+
+
+
+ ER_ERROR_ON_WRITE
+
+
+
+
+ ER_FILE_USED
+
+
+
+
+ ER_FILSORT_ABORT
+
+
+
+
+ ER_FORM_NOT_FOUND
+
+
+
+
+ ER_GET_ERRNO
+
+
+
+
+ ER_ILLEGAL_HA
+
+
+
+
+ ER_KEY_NOT_FOUND
+
+
+
+
+ ER_NOT_FORM_FILE
+
+
+
+
+ ER_NOT_KEYFILE
+
+
+
+
+ ER_OLD_KEYFILE
+
+
+
+
+ ER_OPEN_AS_READONLY
+
+
+
+
+ ER_OUTOFMEMORY
+
+
+
+
+ ER_OUT_OF_SORTMEMORY
+
+
+
+
+ ER_UNEXPECTED_EOF
+
+
+
+
+ ER_CON_COUNT_ERROR
+
+
+
+
+ ER_OUT_OF_RESOURCES
+
+
+
+
+ ER_BAD_HOST_ERROR
+
+
+
+
+ ER_HANDSHAKE_ERROR
+
+
+
+
+ ER_DBACCESS_DENIED_ERROR
+
+
+
+
+ ER_ACCESS_DENIED_ERROR
+
+
+
+
+ ER_NO_DB_ERROR
+
+
+
+
+ ER_UNKNOWN_COM_ERROR
+
+
+
+
+ ER_BAD_NULL_ERROR
+
+
+
+
+ ER_BAD_DB_ERROR
+
+
+
+
+ ER_TABLE_EXISTS_ERROR
+
+
+
+
+ ER_BAD_TABLE_ERROR
+
+
+
+
+ ER_NON_UNIQ_ERROR
+
+
+
+
+ ER_SERVER_SHUTDOWN
+
+
+
+
+ ER_BAD_FIELD_ERROR
+
+
+
+
+ ER_WRONG_FIELD_WITH_GROUP
+
+
+
+
+ ER_WRONG_GROUP_FIELD
+
+
+
+
+ ER_WRONG_SUM_SELECT
+
+
+
+
+ ER_WRONG_VALUE_COUNT
+
+
+
+
+ ER_TOO_LONG_IDENT
+
+
+
+
+ ER_DUP_FIELDNAME
+
+
+
+
+ ER_DUP_KEYNAME
+
+
+
+
+ ER_DUP_ENTRY
+
+
+
+
+ ER_WRONG_FIELD_SPEC
+
+
+
+
+ You have an error in your SQL syntax (ER_PARSE_ERROR).
+
+
+
+
+ ER_EMPTY_QUERY
+
+
+
+
+ ER_NONUNIQ_TABLE
+
+
+
+
+ ER_INVALID_DEFAULT
+
+
+
+
+ ER_MULTIPLE_PRI_KEY
+
+
+
+
+ ER_TOO_MANY_KEYS
+
+
+
+
+ ER_TOO_MANY_KEY_PARTS
+
+
+
+
+ ER_TOO_LONG_KEY
+
+
+
+
+ ER_KEY_COLUMN_DOES_NOT_EXITS
+
+
+
+
+ ER_BLOB_USED_AS_KEY
+
+
+
+
+ ER_TOO_BIG_FIELDLENGTH
+
+
+
+
+ ER_WRONG_AUTO_KEY
+
+
+
+
+ ER_READY
+
+
+
+
+ ER_NORMAL_SHUTDOWN
+
+
+
+
+ ER_GOT_SIGNAL
+
+
+
+
+ ER_SHUTDOWN_COMPLETE
+
+
+
+
+ ER_FORCING_CLOSE
+
+
+
+
+ ER_IPSOCK_ERROR
+
+
+
+
+ ER_NO_SUCH_INDEX
+
+
+
+
+ ER_WRONG_FIELD_TERMINATORS
+
+
+
+
+ ER_BLOBS_AND_NO_TERMINATED
+
+
+
+
+ ER_TEXTFILE_NOT_READABLE
+
+
+
+
+ ER_FILE_EXISTS_ERROR
+
+
+
+
+ ER_LOAD_INFO
+
+
+
+
+ ER_ALTER_INFO
+
+
+
+
+ ER_WRONG_SUB_KEY
+
+
+
+
+ ER_CANT_REMOVE_ALL_FIELDS
+
+
+
+
+ ER_CANT_DROP_FIELD_OR_KEY
+
+
+
+
+ ER_INSERT_INFO
+
+
+
+
+ ER_UPDATE_TABLE_USED
+
+
+
+
+ ER_NO_SUCH_THREAD
+
+
+
+
+ ER_KILL_DENIED_ERROR
+
+
+
+
+ ER_NO_TABLES_USED
+
+
+
+
+ ER_TOO_BIG_SET
+
+
+
+
+ ER_NO_UNIQUE_LOGFILE
+
+
+
+
+ ER_TABLE_NOT_LOCKED_FOR_WRITE
+
+
+
+
+ ER_TABLE_NOT_LOCKED
+
+
+
+
+ ER_BLOB_CANT_HAVE_DEFAULT
+
+
+
+
+ ER_WRONG_DB_NAME
+
+
+
+
+ ER_WRONG_TABLE_NAME
+
+
+
+
+ ER_TOO_BIG_SELECT
+
+
+
+
+ ER_UNKNOWN_ERROR
+
+
+
+
+ ER_UNKNOWN_PROCEDURE
+
+
+
+
+ ER_WRONG_PARAMCOUNT_TO_PROCEDURE
+
+
+
+
+ ER_WRONG_PARAMETERS_TO_PROCEDURE
+
+
+
+
+ ER_UNKNOWN_TABLE
+
+
+
+
+ ER_FIELD_SPECIFIED_TWICE
+
+
+
+
+ ER_INVALID_GROUP_FUNC_USE
+
+
+
+
+ ER_UNSUPPORTED_EXTENSION
+
+
+
+
+ ER_TABLE_MUST_HAVE_COLUMNS
+
+
+
+
+ ER_RECORD_FILE_FULL
+
+
+
+
+ ER_UNKNOWN_CHARACTER_SET
+
+
+
+
+ ER_TOO_MANY_TABLES
+
+
+
+
+ ER_TOO_MANY_FIELDS
+
+
+
+
+ ER_TOO_BIG_ROWSIZE
+
+
+
+
+ ER_STACK_OVERRUN
+
+
+
+
+ ER_WRONG_OUTER_JOIN
+
+
+
+
+ ER_NULL_COLUMN_IN_INDEX
+
+
+
+
+ ER_CANT_FIND_UDF
+
+
+
+
+ ER_CANT_INITIALIZE_UDF
+
+
+
+
+ ER_UDF_NO_PATHS
+
+
+
+
+ ER_UDF_EXISTS
+
+
+
+
+ ER_CANT_OPEN_LIBRARY
+
+
+
+
+ ER_CANT_FIND_DL_ENTRY
+
+
+
+
+ ER_FUNCTION_NOT_DEFINED
+
+
+
+
+ ER_HOST_IS_BLOCKED
+
+
+
+
+ ER_HOST_NOT_PRIVILEGED
+
+
+
+
+ ER_PASSWORD_ANONYMOUS_USER
+
+
+
+
+ ER_PASSWORD_NOT_ALLOWED
+
+
+
+
+ ER_PASSWORD_NO_MATCH
+
+
+
+
+ ER_UPDATE_INFO
+
+
+
+
+ ER_CANT_CREATE_THREAD
+
+
+
+
+ ER_WRONG_VALUE_COUNT_ON_ROW
+
+
+
+
+ ER_CANT_REOPEN_TABLE
+
+
+
+
+ ER_INVALID_USE_OF_NULL
+
+
+
+
+ ER_REGEXP_ERROR
+
+
+
+
+ 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_UNUSED1
+
+
+
+
+ ER_UNUSED2
+
+
+
+
+ ER_ABORTING_CONNECTION
+
+
+
+
+ ER_NET_PACKET_TOO_LARGE
+
+
+
+
+ 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_UNUSED3
+
+
+
+
+ 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
+
+
+
+
+ Query execution was interrupted (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_OBSOLETE_COL_COUNT_DOESNT_MATCH_CORRUPTED
+
+
+
+
+ ER_OBSOLETE_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_OLD_UNUSED
+
+
+
+
+ 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_TX_CHARACTERISTICS
+
+
+
+
+ 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_NEVER_USED
+
+
+
+
+ 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_CANT_EXECUTE_IN_READ_ONLY_TRANSACTION
+
+
+
+
+ is thrown when MySQL Server returns an error code, or there is a
+ communication error with the server.
+
+
+
+
+ A value identifying the kind of error. Prefer to use the property.
+
+
+
+
+ A value identifying the kind of error.
+
+
+
+
+ A SQLSTATE code identifying the kind of error.
+
+ See SQLSTATE for more information.
+
+
+
+ Represents MySQL's internal GEOMETRY format: https://dev.mysql.com/doc/refman/8.0/en/gis-data-formats.html#gis-internal-format
+
+
+
+
+ Constructs a from a SRID and Well-known Binary bytes.
+
+ The SRID (Spatial Reference System ID).
+ The Well-known Binary serialization of the geometry.
+ A new containing the specified geometry.
+
+
+
+ Constructs a from MySQL's internal format.
+
+ The raw bytes of MySQL's internal GEOMETRY format.
+ A new containing the specified geometry.
+ See Internal Geometry Storage Format.
+
+
+
+ The Spatial Reference System ID of this geometry.
+
+
+
+
+ The Well-known Binary serialization of this geometry.
+
+
+
+
+ The internal MySQL form of this geometry.
+
+
+
+
+ Determines which column type (if any) should be read as a System.Guid.
+
+
+
+
+ Same as Char36 if OldGuids=False; same as LittleEndianBinary16 if OldGuids=True.
+
+
+
+
+ No column types are read/written as a Guid
.
+
+
+
+
+ All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens,
+ which matches UUID().
+
+
+
+
+ All CHAR(32) columns are read/written as a Guid using lowercase hex without hyphens.
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using big-endian byte order,
+ which matches UUID_TO_BIN(x).
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using big-endian byte order with time parts swapped,
+ which matches UUID_TO_BIN(x,1).
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using little-endian byte order, i.e. the byte order
+ used by and .
+
+
+
+
+ Escapes single and double quotes, and backslashes in .
+
+
+
+
+ Each new connection opened for a connection pool uses the next host name (sequentially with wraparound).
+
+
+
+
+ Each new connection tries to connect to the first host; subsequent hosts are used only if connecting to the first one fails.
+
+
+
+
+ Servers are tried in random order.
+
+
+
+
+ Servers are tried in ascending order of number of currently-open connections.
+
+
+
+
+ Gets or sets a value that indicates whether the bulk copy operation should be aborted.
+
+
+
+
+ Gets a value that returns the number of rows copied during the current bulk copy operation.
+
+
+
+
+ Represents the method that handles the event of a .
+
+
+
+
+ SSL connection options.
+
+
+
+
+ Do not use SSL.
+
+
+
+
+ Use SSL if the server supports it.
+
+
+
+
+ Always use SSL. Deny connection if server does not support SSL.
+
+
+
+
+ Always use SSL. Validate the Certificate Authority but tolerate name mismatch.
+
+
+
+
+ Always use SSL. Fail if the host name is not correct.
+
+
+
+
+ Removes the named transaction savepoint with the specified . No commit or rollback occurs.
+
+ The savepoint name.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously removes the named transaction savepoint with the specified . No commit or rollback occurs.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Rolls back the current transaction to the savepoint with the specified without aborting the transaction.
+
+ The savepoint name.
+ The name must have been created with , but not released by calling .
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously rolls back the current transaction to the savepoint with the specified without aborting the transaction.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The name must have been created with , but not released by calling .
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Sets a named transaction savepoint with the specified . If the current transaction
+ already has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+ The savepoint name.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously sets a named transaction savepoint with the specified . If the current transaction
+ already has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ MySQL character set codes.
+
+ Obtained from SELECT id, collation_name FROM information_schema.collations ORDER BY id; on MySQL 8.0.16.
+
+
+
+ Field cannot be NULL.
+
+
+
+
+ Field is part of a primary key.
+
+
+
+
+ Field is part of a unique key.
+
+
+
+
+ Field is part of a nonunique key.
+
+
+
+
+ Field is a BLOB or TEXT (deprecated).
+
+
+
+
+ Field has the UNSIGNED attribute.
+
+
+
+
+ Field has the ZEROFILL attribute.
+
+
+
+
+ Field has the BINARY attribute.
+
+
+
+
+ Field is an ENUM.
+
+
+
+
+ Field has the AUTO_INCREMENT attribute.
+
+
+
+
+ Field is a TIMESTAMP (deprecated).
+
+
+
+
+ Field is a SET.
+
+
+
+
+ Field is numeric.
+
+
+
+
+ See MySQL documentation.
+
+
+
+
+ Returns true if contains an EOF packet.
+ Note that EOF packets can appear in places where a length-encoded integer (which starts with the same signature byte) may appear, so the length
+ has to be checked to verify that it is an EOF packet.
+
+ The payload to examine.
+ true if this is an EOF packet; otherwise, false.
+
+
+
+ The MySQL Capability flags.
+
+
+
+
+ No specified capabilities.
+
+
+
+
+ Use the improved version of Old Password Authentication.
+
+
+
+
+ Send found rows instead of affected rows in EOF_Packet.
+
+
+
+
+ Longer flags in Protocol::ColumnDefinition320.
+
+
+
+
+ Database (schema) name can be specified on connect in Handshake Response Packet.
+
+
+
+
+ Do not permit database.table.column.
+
+
+
+
+ Supports compression.
+
+
+
+
+ Special handling of ODBC behavior.
+
+
+
+
+ Enables the LOCAL INFILE request of LOAD DATA|XML.
+
+
+
+
+ Parser can ignore spaces before '('.
+
+
+
+
+ Supports the 4.1 protocol.
+
+
+
+
+ Server: Supports interactive and noninteractive clients. Client: The session wait_timeout
variable is set to the value of the session interactive_timeout
variable.
+
+
+
+
+ Supports SSL.
+
+
+
+
+ Can send status flags in EOF_Packet.
+
+
+
+
+ Supports Authentication::Native41.
+
+
+
+
+ Can handle multiple statements per COM_QUERY and COM_STMT_PREPARE.
+
+
+
+
+ Can send multiple resultsets for COM_QUERY.
+
+
+
+
+ Can send multiple resultsets for COM_STMT_EXECUTE.
+
+
+
+
+ Sends extra data in Initial Handshake Packet and supports the pluggable authentication protocol.
+
+
+
+
+ Permits connection attributes in Protocol::HandshakeResponse41.
+
+
+
+
+ Understands length-encoded integer for auth response data in Protocol::HandshakeResponse41.
+
+
+
+
+ Announces support for expired password extension.
+
+
+
+
+ Can set SERVER_SESSION_STATE_CHANGED in the Status Flags and send session-state change data after a OK packet.
+
+
+
+
+ Can send OK after a Text Resultset.
+
+
+
+
+ Client supports progress indicator.
+
+
+
+
+ Client supports COM_MULTI (i.e., CommandKind.Multi)
+
+
+
+
+ Support of array binding.
+
+
+
+
+ is a class that holds an instance of .
+ Its primary difference from is that it's a reference type, so mutations
+ to this object are visible to other objects that hold a reference to it.
+
+
+
+
+ Hashes a password with the "Secure Password Authentication" method.
+
+ The 20-byte random challenge (from the "auth-plugin-data" in the initial handshake).
+ The password to hash.
+ A 20-byte password hash.
+ See Secure Password Authentication.
+
+
+
+ Helper class to translate NegotiateStream framing for SPNEGO token
+ into MySQL protocol packets.
+
+ Serves as underlying stream for System.Net.NegotiateStream
+ to perform MariaDB's auth_gssapi_client authentication.
+
+ NegotiateStream protocol is described in e.g here
+ https://winprotocoldoc.blob.core.windows.net/productionwindowsarchives/MS-NNS/[MS-NNS].pdf
+ We only use Handshake Messages for authentication.
+
+
+
+
+ The remaining timeout (in milliseconds) for the next I/O read. Use to represent no (or, infinite) timeout.
+
+
+
+
+ Reads data from this byte handler.
+
+ The buffer to read into.
+ The to use when reading data.
+ A holding the number of bytes read. If reading failed, this will be zero.
+
+
+
+ Writes data to this byte handler.
+
+ The data to write.
+ The to use when writing.
+ A . The value of this object is not defined.
+
+
+
+ Specifies whether to perform synchronous or asynchronous I/O.
+
+
+
+
+ Use synchronous I/O.
+
+
+
+
+ Use asynchronous I/O.
+
+
+
+
+ Starts a new "conversation" with the MySQL Server. This resets the "sequence id"
+ and should be called when a new command begins.
+
+
+
+
+ Gets or sets the underlying that data is read from and written to.
+
+
+
+
+ Reads the next payload.
+
+ An that will cache any buffers allocated during this
+ read. (To disable caching, pass new ArraySegmentHolder<byte>
so the cache will be garbage-collected
+ when this method returns.)
+ The to use if there is a protocol error.
+ The to use when reading data.
+ An containing the data that was read. This
+ will be valid to read from until the next time or
+ is called.
+
+
+
+ Writes a payload.
+
+ The data to write.
+ The to use when writing.
+ A . The value of this object is not defined.
+
+
+
+ Specifies how to handle protocol errors.
+
+
+
+
+ Throw an exception when there is a protocol error. This is the default.
+
+
+
+
+ Ignore any protocol errors.
+
+
+
+
+ A transaction is active.
+
+
+
+
+ Auto-commit is enabled
+
+
+
+
+ Used by Binary Protocol Resultset to signal that COM_STMT_FETCH must be used to fetch the row-data.
+
+
+
+
+ In a read-only transaction.
+
+
+
+
+ Connection state information has changed.
+
+
+
+
+ SESSION_TRACK_SYSTEM_VARIABLES: one or more system variables changed
+
+
+
+
+ SESSION_TRACK_SCHEMA: schema changed
+
+
+
+
+ SESSION_TRACK_STATE_CHANGE: "track state change" changed
+
+
+
+
+ SESSION_TRACK_GTIDS: "track GTIDs" changed
+
+
+
+
+ A sentinel value indicating no (or infinite) timeout.
+
+
+
+
+ A wrapper around a resizable array. This type is intended to be used with .
+
+
+
+
+ Do not call this method directly; use .
+
+
+
+
+ An that supports having its underlying array reallocated and resized.
+
+
+
+
+ Adds a timer that will invoke in approximately milliseconds.
+
+ The time (in milliseconds) to wait before invoking .
+ The callback to invoke.
+ A timer ID that can be passed to to cancel the timer.
+
+
+
+ Cancels the timer with the specified ID.
+
+ The timer ID (returned from ).
+ true if the timer was removed; otherwise, false. This method will return false if the specified timer has already fired.
+
+
+
+ Loads a RSA key from a PEM string.
+
+ The key, in PEM format.
+ An RSA key.
+
+
+
+ Returns a new that starts at index into .
+
+ The from which to create a slice.
+ The non-negative, zero-based starting index of the new slice (relative to of .
+ A new starting at the th element of and continuing to the end of .
+
+
+
+ Returns a new that starts at index into and has a length of .
+
+ The from which to create a slice.
+ The non-negative, zero-based starting index of the new slice (relative to of .
+ The non-negative length of the new slice.
+ A new of length , starting at the th element of .
+
+
+
+ Returns a new that is a slice of starting at .
+
+ The array to slice.
+ The offset at which to slice.
+ The length of the slice.
+ A new that is a slice of from to the end.
+
+
+
+ Finds the next index of in , starting at index .
+
+ The array to search.
+ The offset at which to start searching.
+ The pattern to find in .
+ The offset of within , or -1 if was not found.
+
+
+
+ Resizes to hold at least items.
+
+ may be null, in which case a new will be allocated.
+
+
+ Specifies that null is allowed as an input even if the corresponding type disallows it.
+
+
+ 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.
+
+
+
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net461/MySqlConnector.dll b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net461/MySqlConnector.dll
new file mode 100644
index 0000000..5a20ab1
Binary files /dev/null and b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net461/MySqlConnector.dll differ
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net461/MySqlConnector.xml b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net461/MySqlConnector.xml
new file mode 100644
index 0000000..3cec9a9
--- /dev/null
+++ b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net461/MySqlConnector.xml
@@ -0,0 +1,5042 @@
+
+
+
+ MySqlConnector
+
+
+
+
+ A registry of known authentication plugins.
+
+
+
+
+ Registers the specified authentication plugin. The name of this plugin must be unique.
+
+ The authentication plugin.
+
+
+
+ The primary interface implemented by an authentication plugin.
+
+
+
+
+ The authentication plugin name.
+
+
+
+
+ Creates the authentication response.
+
+ The client's password.
+ The authentication data supplied by the server; this is the auth method data
+ from the Authentication
+ Method Switch Request Packet.
+
+
+
+
+ encapsulates a list of and the current position within that list.
+
+
+
+
+ The commands in the list.
+
+
+
+
+ The index of the current command.
+
+
+
+
+ If the current command is a prepared statement, the index of the current prepared statement for that command.
+
+
+
+
+ Returns true if the connection pool is empty, i.e., all connections are in use. Note that in a highly-multithreaded
+ environment, the value of this property may be stale by the time it's returned.
+
+
+
+
+ Returns the stored procedure cache for this , lazily creating it on demand.
+ This method may return a different object after has been called. The returned
+ object is shared between multiple threads and is only safe to use after taking a lock on the
+ object itself.
+
+
+
+
+ Examines all the objects in to determine if any
+ have an owning that has been garbage-collected. If so, assumes that the connection
+ was not properly disposed and returns the session to the pool.
+
+
+
+
+ The that was used to create this .!--
+ This object must not be mutated.
+
+
+
+
+ provides an internal abstraction over operations that can be cancelled: and .
+
+
+
+
+ Returns a unique ID for all implementations of .
+
+
+
+
+
+ Causes the effective command timeout to be reset back to the value specified by .
+
+ As per the MSDN documentation,
+ "This property is the cumulative time-out (for all network packets that are read during the invocation of a method) for all network reads during command
+ execution or processing of the results. A time-out can still occur after the first row is returned, and does not include user processing time, only network
+ read time. For example, with a 30 second time out, if Read requires two network packets, then it has 30 seconds to read both network packets. If you call
+ Read again, it will have another 30 seconds to read any data that it requires."
+ The method is called by public ADO.NET API methods to reset the effective time remaining at the beginning of a new
+ method call.
+
+
+
+ creates the data for an "execute query" command for one or more objects in a command list.
+
+
+
+
+ Writes the payload for an "execute query" command to .
+
+ The command list and its current position. This will be updated to the position of the next command to write (or past the end if there are no more commands).
+ A for all the stored procedures in the command list, if any.
+ The to write the payload to.
+ true if a command was written; otherwise, false (if there were no more commands in the list).
+
+
+
+ Returns an containing in the order they
+ should be tried to satisfy the load balancing policy.
+
+
+
+
+ provides an internal abstraction over and .
+
+
+
+
+ provides an abstraction over iterating through a sequence of
+ rows, where each row can fill an array of field values.
+
+
+
+
+ represents an individual SQL statement that's been parsed
+ from a string possibly containing multiple semicolon-delimited SQL statements.
+
+
+
+
+ The bytes for this statement that will be written on the wire.
+
+
+
+
+ The names of the parameters (if known) of the parameters in the prepared statement. There
+ is one entry in this list for each parameter, which will be null if the name is unknown.
+
+
+
+
+ The indexes of the parameters in the prepared statement. There is one entry in this list for
+ each parameter; it will be -1 if the parameter is named.
+
+
+
+
+ wraps a collection of objects.
+ It implements to return the memory backing the statements to a shared pool.
+
+
+
+
+ is a statement that has been prepared on the MySQL Server.
+
+
+
+
+ Disposes and sets to null, ignoring any
+ or that is thrown.
+
+ An type.
+ The object to dispose.
+
+
+
+ Writes the text of to , encoded in UTF-8.
+
+ The command.
+ The cached procedures.
+ The output writer.
+ true if a complete command was written; otherwise, false.
+
+
+
+ The statement is complete (apart from potentially needing a semicolon or newline).
+
+
+
+
+ The statement needs a newline (e.g., to terminate a final comment).
+
+
+
+
+ The statement needs a semicolon (if another statement is going to be concatenated to it).
+
+
+
+
+ Implementations of write logs to a particular target.
+
+
+
+
+ Returns true if logging for this logger is enabled at the specified level.
+
+ The log level.
+ true if logging is enabled; otherwise, false.
+
+
+
+ Writes a log message to the target.
+
+ The log level.
+ The log message. See documentation for for notes on interpreting {0} within this string.
+ If not null or empty, then includes formatting placeholders (e.g., {0})
+ which must be replaced with the arguments in , using or similar.
+ If null or an empty array, then is a literal string; any curly braces within it must be treated as literal characters,
+ not formatting placeholders.
+ If not null, an associated with the log message.
+ This method may be called from multiple threads and must be thread-safe. This method may be called
+ even if would return false for ; the implementation must
+ check if logging is enabled for that level.
+
+
+
+ Implementations of create logger instances.
+
+
+
+
+ Creates a logger with the specified name. This method may be called from multiple threads and must be thread-safe.
+
+
+
+
+ Controls logging for MySqlConnector.
+
+
+
+
+ Allows the to be set for this library. can
+ be set once, and must be set before any other library methods are used.
+
+
+
+
+ is an implementation of that does nothing.
+
+ This is the default logging implementation unless is set.
+
+
+
+ Returns false.
+
+
+
+
+ Ignores the specified log message.
+
+
+
+
+ Returns a singleton instance of .
+
+
+
+
+ Creates loggers that do nothing.
+
+
+
+
+ Returns a .
+
+
+
+
+ implements the new
+ ADO.NET batching API.
+ It is currently experimental and may change in the future.
+ When using MariaDB (10.2 or later), the commands will be sent in a single batch, reducing network
+ round-trip time. With other MySQL Servers, this may be no more efficient than executing the commands
+ individually.
+ Example usage:
+
+ using var connection = new MySqlConnection("...connection string...");
+ await connection.OpenAsync();
+
+ using var batch = new MySqlBatch(connection)
+ {
+ BatchCommands =
+ {
+ new MySqlBatchCommand("INSERT INTO departments(name) VALUES(@name);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Sales"),
+ },
+ },
+ new MySqlBatchCommand("SET @dept_id = last_insert_id()"),
+ new MySqlBatchCommand("INSERT INTO employees(name, department_id) VALUES(@name, @dept_id);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Jim Halpert"),
+ },
+ },
+ new MySqlBatchCommand("INSERT INTO employees(name, department_id) VALUES(@name, @dept_id);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Dwight Schrute"),
+ },
+ },
+ },
+ };
+ await batch.ExecuteNonQueryAsync();
+
+
+ The proposed ADO.NET API that is based on is not finalized. This API is experimental and may change in the future.
+
+
+
+ Initializes a new object. The property must be set before this object can be used.
+
+
+
+
+ Initializes a new object, setting the and if specified.
+
+ (Optional) The to use.
+ (Optional) The to use.
+
+
+
+ The collection of commands that will be executed in the batch.
+
+
+
+
+ Executes all the commands in the batch, returning a that can iterate
+ over the result sets. If multiple resultsets are returned, use
+ to access them.
+
+
+
+
+ Executes all the commands in the batch, returning a that can iterate
+ over the result sets. If multiple resultsets are returned, use
+ to access them.
+
+ A token to cancel the asynchronous operation.
+ A containing the result of the asynchronous operation.
+
+
+
+ lets you efficiently load a MySQL Server table with data from another source.
+ It is similar to the SqlBulkCopy class
+ for SQL Server.
+ Due to security features
+ in MySQL Server, the connection string must have AllowLoadLocalInfile=true in order
+ to use this class.
+ For data that is in CSV or TSV format, use to bulk load the file.
+ Example code:
+
+ // NOTE: to copy data between tables in the same database, use INSERT ... SELECT
+ // https://dev.mysql.com/doc/refman/8.0/en/insert-select.html
+ var dataTable = GetDataTableFromExternalSource();
+
+ using var connection = new MySqlConnection("...;AllowLoadLocalInfile=True");
+ await connection.OpenAsync();
+ var bulkCopy = new MySqlBulkCopy(connection);
+ bulkCopy.DestinationTableName = "some_table_name";
+ await bulkCopy.WriteToServerAsync(dataTable);
+
+
+ Note: This API is a unique feature of MySqlConnector; you must
+ switch to MySqlConnector in order to use it.
+ This API is experimental and may change in the future.
+
+
+
+
+ Initializes a object with the specified connection, and optionally the active transaction.
+
+ The to use.
+ (Optional) The to use.
+
+
+
+ The number of seconds for the operation to complete before it times out, or 0 for no timeout.
+
+
+
+
+ The name of the table to insert rows into.
+
+ This name needs to be quoted if it contains special characters.
+
+
+
+ If non-zero, this specifies the number of rows to be processed before generating a notification event.
+
+
+
+
+ This event is raised every time that the number of rows specified by the property have been processed.
+
+
+ Receipt of a RowsCopied event does not imply that any rows have been sent to the server or committed.
+ The property can be set to true by the event handler to abort the copy.
+
+
+
+
+ A collection of objects. If the columns being copied from the
+ data source line up one-to-one with the columns in the destination table then populating this collection is
+ unnecessary. Otherwise, this should be filled with a collection of objects
+ specifying how source columns are to be mapped onto destination columns. If one column mapping is specified,
+ then all must be specified.
+
+
+
+
+ Returns the number of rows that were copied (after WriteToServer(Async)
finishes).
+
+
+
+
+ Copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ This method is not available on netstandard1.3.
+
+
+
+ Asynchronously copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ This method is not available on netstandard1.3.
+
+
+
+ Copies all rows in the supplied sequence of objects to the destination table specified by the
+ property of the object. The number of columns
+ to be read from the objects must be specified in advance.
+
+ The collection of objects.
+ The number of columns to copy (in each row).
+ This method is not available on netstandard1.3.
+
+
+
+ Asynchronously copies all rows in the supplied sequence of objects to the destination table specified by the
+ property of the object. The number of columns
+ to be read from the objects must be specified in advance.
+
+ The collection of objects.
+ The number of columns to copy (in each row).
+ A token to cancel the asynchronous operation.
+ This method is not available on netstandard1.3.
+
+
+
+ Copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ The to copy from.
+
+
+
+ Asynchronously copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ The to copy from.
+ A token to cancel the asynchronous operation.
+
+
+
+ Use to specify how to map columns in the source data to
+ columns in the destination table when using .
+ Set to the index of the source column to map. Set to
+ either the name of a column in the destination table, or the name of a user-defined variable.
+ If a user-defined variable, you can use to specify a MySQL expression that assigns
+ its value to destination column.
+ Source columns that don't have an entry in will be ignored
+ (unless the collection is empty, in which case all columns will be mapped
+ one-to-one).
+ MySqlConnector will transmit all binary data as hex, so any expression that operates on it
+ must decode it with the UNHEX function first. (This will be performed automatically if no
+ is specified, but will be necessary to specify manually for more complex expressions.)
+ Example code:
+
+ new MySqlBulkCopyColumnMapping
+ {
+ SourceOrdinal = 2,
+ DestinationColumn = "user_name",
+ },
+ new MySqlBulkCopyColumnMapping
+ {
+ SourceOrdinal = 0,
+ DestinationColumn = "@tmp",
+ Expression = "column_value = @tmp * 2",
+ },
+
+
+
+
+
+ Initializes with the default values.
+
+
+
+
+ Initializes to the specified values.
+
+ The ordinal position of the source column.
+ The name of the destination column.
+ The optional expression to be used to set the destination column.
+
+
+
+ The ordinal position of the source column to map from.
+
+
+
+
+ The name of the destination column to copy to. To use an expression, this should be the name of a unique user-defined variable.
+
+
+
+
+ An optional expression for setting a destination column. To use an expression, the should
+ be set to the name of a user-defined variable and this expression should set a column using that variable.
+
+ To populate a binary column, you must set to a variable name, and to an
+ expression that uses UNHEX
to set the column value, e.g., `destColumn` = UNHEX(@variableName)
.
+
+
+
+ lets you efficiently load a MySQL Server Table with data from a CSV or TSV file or .
+ Example code:
+
+ using var connection = new MySqlConnection("...;AllowLoadLocalInfile=True");
+ await connection.OpenAsync();
+ var bulkLoader = new MySqlBulkLoader(connection)
+ {
+ FileName = @"C:\Path\To\file.csv",
+ TableName = "destination",
+ CharacterSet = "UTF8",
+ NumberOfLinesToSkip = 1,
+ FieldTerminator = ",",
+ FieldQuotationCharacter = '"',
+ FieldQuotationOptional = true,
+ Local = true,
+ }
+ var rowCount = await bulkLoader.LoadAsync();
+
+
+ Due to security features
+ in MySQL Server, the connection string must have AllowLoadLocalInfile=true in order to use a local source.
+
+
+
+
+ (Optional) The character set of the source data. By default, the database's character set is used.
+
+
+
+
+ (Optional) A list of the column names in the destination table that should be filled with data from the input file.
+
+
+
+
+ A value that specifies how conflicts are resolved (default ).
+
+
+
+
+ The to use.
+
+
+
+
+ (Optional) The character used to escape instances of within field values.
+
+
+
+
+ (Optional) A list of expressions used to set field values from the columns in the source data.
+
+
+
+
+ (Optional) The character used to enclose fields in the source data.
+
+
+
+
+ Whether quoting fields is optional (default false).
+
+
+
+
+ (Optional) The string fields are terminated with.
+
+
+
+
+ The name of the local (if is true) or remote (otherwise) file to load.
+ Either this or must be set.
+
+
+
+
+ (Optional) A prefix in each line that should be skipped when loading.
+
+
+
+
+ (Optional) The string lines are terminated with.
+
+
+
+
+ Whether a local file is being used (default true).
+
+
+
+
+ The number of lines to skip at the beginning of the file (default 0).
+
+
+
+
+ A giving the priority to load with (default ).
+
+
+
+
+ A containing the data to load. Either this or must be set.
+ The property must be true if this is set.
+
+
+
+
+ The name of the table to load into. If this is a reserved word or contains spaces, it must be quoted.
+
+
+
+
+ The timeout (in milliseconds) to use.
+
+
+
+
+ Initializes a new instance of the class with the specified .
+
+ The to use.
+
+
+
+ Loads all data in the source file or stream into the destination table.
+
+ The number of rows inserted.
+
+
+
+ Asynchronously loads all data in the source file or stream into the destination table.
+
+ A that will be completed with the number of rows inserted.
+
+
+
+ Asynchronously loads all data in the source file or stream into the destination table.
+
+ A token to cancel the asynchronous operation.
+ A that will be completed with the number of rows inserted.
+
+
+
+ Do not use certificate store
+
+
+
+
+ Use certificate store for the current user
+
+
+
+
+ User certificate store for the machine
+
+
+
+
+ represents a SQL statement or stored procedure name
+ to execute against a MySQL database.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class, setting to .
+
+ The text to assign to .
+
+
+
+ Initializes a new instance of the class with the specified and .
+
+ The to use.
+ The active , if any.
+
+
+
+ Initializes a new instance of the class with the specified command text and .
+
+ The text to assign to .
+ The to use.
+
+
+
+ Initializes a new instance of the class with the specified command text,, and .
+
+ The text to assign to .
+ The to use.
+ The active , if any.
+
+
+
+ The collection of objects for this command.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Holds the first automatically-generated ID for a value inserted in an AUTO_INCREMENT column in the last statement.
+
+
+ See LAST_INSERT_ID() for more information.
+
+
+
+
+ Registers as a callback with if cancellation is supported.
+
+ The .
+ An object that must be disposed to revoke the cancellation registration.
+ This method is more efficient than calling token.Register(Command.Cancel)
because it avoids
+ unnecessary allocations.
+
+
+
+ represents a connection to a MySQL database.
+
+
+
+
+ Begins a database transaction.
+
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction.
+
+ The for the transaction.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction.
+
+ The for the transaction.
+ If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ The for the transaction.
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ The for the transaction.
+ If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Resets the session state of the current open connection; this clears temporary tables and user-defined variables.
+
+ A token to cancel the asynchronous operation.
+ A ValueTask representing the asynchronous operation.
+ This is an optional feature of the MySQL protocol and may not be supported by all servers.
+ It's known to be supported by MySQL Server 5.7.3 (and later) and MariaDB 10.2.4 (and later).
+ Other MySQL-compatible servers or proxies may not support this command.
+
+
+
+ The connection ID from MySQL Server.
+
+
+
+
+ Clears the connection pool that belongs to.
+
+ The whose connection pool will be cleared.
+
+
+
+ Asynchronously clears the connection pool that belongs to.
+
+ The whose connection pool will be cleared.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+
+
+
+ Clears all connection pools.
+
+
+
+
+ Asynchronously clears all connection pools.
+
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+
+
+
+ Returns schema information for the data source of this .
+
+ A containing schema information.
+
+
+
+ Returns schema information for the data source of this .
+
+ The name of the schema to return.
+ A containing schema information.
+
+
+
+ Returns schema information for the data source of this .
+
+ The name of the schema to return.
+ The restrictions to apply to the schema; this parameter is currently ignored.
+ A containing schema information.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ The name of the schema to return.
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ The name of the schema to return.
+ The restrictions to apply to the schema; this parameter is currently ignored.
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Gets the time (in seconds) to wait while trying to establish a connection
+ before terminating the attempt and generating an error. This value
+ is controlled by ,
+ which defaults to 15 seconds.
+
+
+
+
+ Creates a object for executing batched commands.
+
+
+
+
+
+ Creates a object (that can be used with ).
+
+
+
+
+
+ Returns an unopened copy of this connection with a new connection string. If the Password
+ in is not set, the password from this connection will be used.
+ This allows creating a new connection with the same security information while changing other options,
+ such as database or pooling.
+
+ The new connection string to be used.
+ A new with different connection string options but
+ the same password as this connection (unless overridden by ).
+
+
+
+ Specifies the type of connection to make to the server.
+
+
+
+
+ TCP/IP connection.
+
+
+
+
+ Named pipe connection. Only works on Windows.
+
+
+
+
+ Unix domain socket connection. Only works on Unix/Linux.
+
+
+
+
+ Shared memory connection. Not currently supported.
+
+
+
+
+ The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error.
+ The default value is 15.
+
+
+
+
+ An implementation of that creates MySqlConnector objects.
+
+
+
+
+ Provides an instance of that can create MySqlConnector objects.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Returns false.
+
+ is not supported by MySqlConnector.
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Returns true.
+
+
+
+
+ Returns a that contains metadata about the columns in the result set.
+
+ A containing metadata about the columns in the result set.
+
+
+
+ Returns a that contains metadata about the columns in the result set.
+
+ A token to cancel the operation.
+ A containing metadata about the columns in the result set.
+ This method runs synchronously; prefer to call to avoid the overhead of allocating an unnecessary Task.
+
+
+
+ Returns metadata about the columns in the result set.
+
+ A containing metadata about the result set.
+
+
+
+ Returns metadata about the columns in the result set.
+
+ A token to cancel the operation.
+ A containing containing metadata about the result set.
+ This method runs synchronously; prefer to call to avoid the overhead of allocating an unnecessary Task.
+
+
+
+ The used when reading from the database.
+
+
+
+
+ Use when reading; allow any in command parameters.
+
+
+
+
+ Use when reading; reject in command parameters.
+
+
+
+
+ Use when reading; reject in command parameters.
+
+
+
+
+ MySQL Server error codes. Taken from Server Error Codes and Messages.
+
+
+
+
+ Not all rows from the source supplied to were copied to .
+
+
+
+
+ The timeout period specified by elapsed before the operation completed.
+
+
+
+
+ ER_HASHCHK
+
+
+
+
+ ER_NISAMCHK
+
+
+
+
+ ER_NO
+
+
+
+
+ ER_YES
+
+
+
+
+ ER_CANT_CREATE_FILE
+
+
+
+
+ ER_CANT_CREATE_TABLE
+
+
+
+
+ ER_CANT_CREATE_DB
+
+
+
+
+ ER_DB_CREATE_EXISTS
+
+
+
+
+ ER_DB_DROP_EXISTS
+
+
+
+
+ ER_DB_DROP_DELETE
+
+
+
+
+ ER_DB_DROP_RMDIR
+
+
+
+
+ ER_CANT_DELETE_FILE
+
+
+
+
+ ER_CANT_FIND_SYSTEM_REC
+
+
+
+
+ ER_CANT_GET_STAT
+
+
+
+
+ ER_CANT_GET_WD
+
+
+
+
+ ER_CANT_LOCK
+
+
+
+
+ ER_CANT_OPEN_FILE
+
+
+
+
+ ER_FILE_NOT_FOUND
+
+
+
+
+ ER_CANT_READ_DIR
+
+
+
+
+ ER_CANT_SET_WD
+
+
+
+
+ ER_CHECKREAD
+
+
+
+
+ ER_DISK_FULL
+
+
+
+
+ ER_DUP_KEY
+
+
+
+
+ ER_ERROR_ON_CLOSE
+
+
+
+
+ ER_ERROR_ON_READ
+
+
+
+
+ ER_ERROR_ON_RENAME
+
+
+
+
+ ER_ERROR_ON_WRITE
+
+
+
+
+ ER_FILE_USED
+
+
+
+
+ ER_FILSORT_ABORT
+
+
+
+
+ ER_FORM_NOT_FOUND
+
+
+
+
+ ER_GET_ERRNO
+
+
+
+
+ ER_ILLEGAL_HA
+
+
+
+
+ ER_KEY_NOT_FOUND
+
+
+
+
+ ER_NOT_FORM_FILE
+
+
+
+
+ ER_NOT_KEYFILE
+
+
+
+
+ ER_OLD_KEYFILE
+
+
+
+
+ ER_OPEN_AS_READONLY
+
+
+
+
+ ER_OUTOFMEMORY
+
+
+
+
+ ER_OUT_OF_SORTMEMORY
+
+
+
+
+ ER_UNEXPECTED_EOF
+
+
+
+
+ ER_CON_COUNT_ERROR
+
+
+
+
+ ER_OUT_OF_RESOURCES
+
+
+
+
+ ER_BAD_HOST_ERROR
+
+
+
+
+ ER_HANDSHAKE_ERROR
+
+
+
+
+ ER_DBACCESS_DENIED_ERROR
+
+
+
+
+ ER_ACCESS_DENIED_ERROR
+
+
+
+
+ ER_NO_DB_ERROR
+
+
+
+
+ ER_UNKNOWN_COM_ERROR
+
+
+
+
+ ER_BAD_NULL_ERROR
+
+
+
+
+ ER_BAD_DB_ERROR
+
+
+
+
+ ER_TABLE_EXISTS_ERROR
+
+
+
+
+ ER_BAD_TABLE_ERROR
+
+
+
+
+ ER_NON_UNIQ_ERROR
+
+
+
+
+ ER_SERVER_SHUTDOWN
+
+
+
+
+ ER_BAD_FIELD_ERROR
+
+
+
+
+ ER_WRONG_FIELD_WITH_GROUP
+
+
+
+
+ ER_WRONG_GROUP_FIELD
+
+
+
+
+ ER_WRONG_SUM_SELECT
+
+
+
+
+ ER_WRONG_VALUE_COUNT
+
+
+
+
+ ER_TOO_LONG_IDENT
+
+
+
+
+ ER_DUP_FIELDNAME
+
+
+
+
+ ER_DUP_KEYNAME
+
+
+
+
+ ER_DUP_ENTRY
+
+
+
+
+ ER_WRONG_FIELD_SPEC
+
+
+
+
+ You have an error in your SQL syntax (ER_PARSE_ERROR).
+
+
+
+
+ ER_EMPTY_QUERY
+
+
+
+
+ ER_NONUNIQ_TABLE
+
+
+
+
+ ER_INVALID_DEFAULT
+
+
+
+
+ ER_MULTIPLE_PRI_KEY
+
+
+
+
+ ER_TOO_MANY_KEYS
+
+
+
+
+ ER_TOO_MANY_KEY_PARTS
+
+
+
+
+ ER_TOO_LONG_KEY
+
+
+
+
+ ER_KEY_COLUMN_DOES_NOT_EXITS
+
+
+
+
+ ER_BLOB_USED_AS_KEY
+
+
+
+
+ ER_TOO_BIG_FIELDLENGTH
+
+
+
+
+ ER_WRONG_AUTO_KEY
+
+
+
+
+ ER_READY
+
+
+
+
+ ER_NORMAL_SHUTDOWN
+
+
+
+
+ ER_GOT_SIGNAL
+
+
+
+
+ ER_SHUTDOWN_COMPLETE
+
+
+
+
+ ER_FORCING_CLOSE
+
+
+
+
+ ER_IPSOCK_ERROR
+
+
+
+
+ ER_NO_SUCH_INDEX
+
+
+
+
+ ER_WRONG_FIELD_TERMINATORS
+
+
+
+
+ ER_BLOBS_AND_NO_TERMINATED
+
+
+
+
+ ER_TEXTFILE_NOT_READABLE
+
+
+
+
+ ER_FILE_EXISTS_ERROR
+
+
+
+
+ ER_LOAD_INFO
+
+
+
+
+ ER_ALTER_INFO
+
+
+
+
+ ER_WRONG_SUB_KEY
+
+
+
+
+ ER_CANT_REMOVE_ALL_FIELDS
+
+
+
+
+ ER_CANT_DROP_FIELD_OR_KEY
+
+
+
+
+ ER_INSERT_INFO
+
+
+
+
+ ER_UPDATE_TABLE_USED
+
+
+
+
+ ER_NO_SUCH_THREAD
+
+
+
+
+ ER_KILL_DENIED_ERROR
+
+
+
+
+ ER_NO_TABLES_USED
+
+
+
+
+ ER_TOO_BIG_SET
+
+
+
+
+ ER_NO_UNIQUE_LOGFILE
+
+
+
+
+ ER_TABLE_NOT_LOCKED_FOR_WRITE
+
+
+
+
+ ER_TABLE_NOT_LOCKED
+
+
+
+
+ ER_BLOB_CANT_HAVE_DEFAULT
+
+
+
+
+ ER_WRONG_DB_NAME
+
+
+
+
+ ER_WRONG_TABLE_NAME
+
+
+
+
+ ER_TOO_BIG_SELECT
+
+
+
+
+ ER_UNKNOWN_ERROR
+
+
+
+
+ ER_UNKNOWN_PROCEDURE
+
+
+
+
+ ER_WRONG_PARAMCOUNT_TO_PROCEDURE
+
+
+
+
+ ER_WRONG_PARAMETERS_TO_PROCEDURE
+
+
+
+
+ ER_UNKNOWN_TABLE
+
+
+
+
+ ER_FIELD_SPECIFIED_TWICE
+
+
+
+
+ ER_INVALID_GROUP_FUNC_USE
+
+
+
+
+ ER_UNSUPPORTED_EXTENSION
+
+
+
+
+ ER_TABLE_MUST_HAVE_COLUMNS
+
+
+
+
+ ER_RECORD_FILE_FULL
+
+
+
+
+ ER_UNKNOWN_CHARACTER_SET
+
+
+
+
+ ER_TOO_MANY_TABLES
+
+
+
+
+ ER_TOO_MANY_FIELDS
+
+
+
+
+ ER_TOO_BIG_ROWSIZE
+
+
+
+
+ ER_STACK_OVERRUN
+
+
+
+
+ ER_WRONG_OUTER_JOIN
+
+
+
+
+ ER_NULL_COLUMN_IN_INDEX
+
+
+
+
+ ER_CANT_FIND_UDF
+
+
+
+
+ ER_CANT_INITIALIZE_UDF
+
+
+
+
+ ER_UDF_NO_PATHS
+
+
+
+
+ ER_UDF_EXISTS
+
+
+
+
+ ER_CANT_OPEN_LIBRARY
+
+
+
+
+ ER_CANT_FIND_DL_ENTRY
+
+
+
+
+ ER_FUNCTION_NOT_DEFINED
+
+
+
+
+ ER_HOST_IS_BLOCKED
+
+
+
+
+ ER_HOST_NOT_PRIVILEGED
+
+
+
+
+ ER_PASSWORD_ANONYMOUS_USER
+
+
+
+
+ ER_PASSWORD_NOT_ALLOWED
+
+
+
+
+ ER_PASSWORD_NO_MATCH
+
+
+
+
+ ER_UPDATE_INFO
+
+
+
+
+ ER_CANT_CREATE_THREAD
+
+
+
+
+ ER_WRONG_VALUE_COUNT_ON_ROW
+
+
+
+
+ ER_CANT_REOPEN_TABLE
+
+
+
+
+ ER_INVALID_USE_OF_NULL
+
+
+
+
+ ER_REGEXP_ERROR
+
+
+
+
+ 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_UNUSED1
+
+
+
+
+ ER_UNUSED2
+
+
+
+
+ ER_ABORTING_CONNECTION
+
+
+
+
+ ER_NET_PACKET_TOO_LARGE
+
+
+
+
+ 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_UNUSED3
+
+
+
+
+ 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
+
+
+
+
+ Query execution was interrupted (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_OBSOLETE_COL_COUNT_DOESNT_MATCH_CORRUPTED
+
+
+
+
+ ER_OBSOLETE_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_OLD_UNUSED
+
+
+
+
+ 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_TX_CHARACTERISTICS
+
+
+
+
+ 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_NEVER_USED
+
+
+
+
+ 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_CANT_EXECUTE_IN_READ_ONLY_TRANSACTION
+
+
+
+
+ is thrown when MySQL Server returns an error code, or there is a
+ communication error with the server.
+
+
+
+
+ A value identifying the kind of error. Prefer to use the property.
+
+
+
+
+ A value identifying the kind of error.
+
+
+
+
+ A SQLSTATE code identifying the kind of error.
+
+ See SQLSTATE for more information.
+
+
+
+ Represents MySQL's internal GEOMETRY format: https://dev.mysql.com/doc/refman/8.0/en/gis-data-formats.html#gis-internal-format
+
+
+
+
+ Constructs a from a SRID and Well-known Binary bytes.
+
+ The SRID (Spatial Reference System ID).
+ The Well-known Binary serialization of the geometry.
+ A new containing the specified geometry.
+
+
+
+ Constructs a from MySQL's internal format.
+
+ The raw bytes of MySQL's internal GEOMETRY format.
+ A new containing the specified geometry.
+ See Internal Geometry Storage Format.
+
+
+
+ The Spatial Reference System ID of this geometry.
+
+
+
+
+ The Well-known Binary serialization of this geometry.
+
+
+
+
+ The internal MySQL form of this geometry.
+
+
+
+
+ Determines which column type (if any) should be read as a System.Guid.
+
+
+
+
+ Same as Char36 if OldGuids=False; same as LittleEndianBinary16 if OldGuids=True.
+
+
+
+
+ No column types are read/written as a Guid
.
+
+
+
+
+ All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens,
+ which matches UUID().
+
+
+
+
+ All CHAR(32) columns are read/written as a Guid using lowercase hex without hyphens.
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using big-endian byte order,
+ which matches UUID_TO_BIN(x).
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using big-endian byte order with time parts swapped,
+ which matches UUID_TO_BIN(x,1).
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using little-endian byte order, i.e. the byte order
+ used by and .
+
+
+
+
+ Escapes single and double quotes, and backslashes in .
+
+
+
+
+ Each new connection opened for a connection pool uses the next host name (sequentially with wraparound).
+
+
+
+
+ Each new connection tries to connect to the first host; subsequent hosts are used only if connecting to the first one fails.
+
+
+
+
+ Servers are tried in random order.
+
+
+
+
+ Servers are tried in ascending order of number of currently-open connections.
+
+
+
+
+ Gets or sets a value that indicates whether the bulk copy operation should be aborted.
+
+
+
+
+ Gets a value that returns the number of rows copied during the current bulk copy operation.
+
+
+
+
+ Represents the method that handles the event of a .
+
+
+
+
+ SSL connection options.
+
+
+
+
+ Do not use SSL.
+
+
+
+
+ Use SSL if the server supports it.
+
+
+
+
+ Always use SSL. Deny connection if server does not support SSL.
+
+
+
+
+ Always use SSL. Validate the Certificate Authority but tolerate name mismatch.
+
+
+
+
+ Always use SSL. Fail if the host name is not correct.
+
+
+
+
+ Removes the named transaction savepoint with the specified . No commit or rollback occurs.
+
+ The savepoint name.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously removes the named transaction savepoint with the specified . No commit or rollback occurs.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Rolls back the current transaction to the savepoint with the specified without aborting the transaction.
+
+ The savepoint name.
+ The name must have been created with , but not released by calling .
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously rolls back the current transaction to the savepoint with the specified without aborting the transaction.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The name must have been created with , but not released by calling .
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Sets a named transaction savepoint with the specified . If the current transaction
+ already has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+ The savepoint name.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously sets a named transaction savepoint with the specified . If the current transaction
+ already has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ MySQL character set codes.
+
+ Obtained from SELECT id, collation_name FROM information_schema.collations ORDER BY id; on MySQL 8.0.16.
+
+
+
+ Field cannot be NULL.
+
+
+
+
+ Field is part of a primary key.
+
+
+
+
+ Field is part of a unique key.
+
+
+
+
+ Field is part of a nonunique key.
+
+
+
+
+ Field is a BLOB or TEXT (deprecated).
+
+
+
+
+ Field has the UNSIGNED attribute.
+
+
+
+
+ Field has the ZEROFILL attribute.
+
+
+
+
+ Field has the BINARY attribute.
+
+
+
+
+ Field is an ENUM.
+
+
+
+
+ Field has the AUTO_INCREMENT attribute.
+
+
+
+
+ Field is a TIMESTAMP (deprecated).
+
+
+
+
+ Field is a SET.
+
+
+
+
+ Field is numeric.
+
+
+
+
+ See MySQL documentation.
+
+
+
+
+ Returns true if contains an EOF packet.
+ Note that EOF packets can appear in places where a length-encoded integer (which starts with the same signature byte) may appear, so the length
+ has to be checked to verify that it is an EOF packet.
+
+ The payload to examine.
+ true if this is an EOF packet; otherwise, false.
+
+
+
+ The MySQL Capability flags.
+
+
+
+
+ No specified capabilities.
+
+
+
+
+ Use the improved version of Old Password Authentication.
+
+
+
+
+ Send found rows instead of affected rows in EOF_Packet.
+
+
+
+
+ Longer flags in Protocol::ColumnDefinition320.
+
+
+
+
+ Database (schema) name can be specified on connect in Handshake Response Packet.
+
+
+
+
+ Do not permit database.table.column.
+
+
+
+
+ Supports compression.
+
+
+
+
+ Special handling of ODBC behavior.
+
+
+
+
+ Enables the LOCAL INFILE request of LOAD DATA|XML.
+
+
+
+
+ Parser can ignore spaces before '('.
+
+
+
+
+ Supports the 4.1 protocol.
+
+
+
+
+ Server: Supports interactive and noninteractive clients. Client: The session wait_timeout
variable is set to the value of the session interactive_timeout
variable.
+
+
+
+
+ Supports SSL.
+
+
+
+
+ Can send status flags in EOF_Packet.
+
+
+
+
+ Supports Authentication::Native41.
+
+
+
+
+ Can handle multiple statements per COM_QUERY and COM_STMT_PREPARE.
+
+
+
+
+ Can send multiple resultsets for COM_QUERY.
+
+
+
+
+ Can send multiple resultsets for COM_STMT_EXECUTE.
+
+
+
+
+ Sends extra data in Initial Handshake Packet and supports the pluggable authentication protocol.
+
+
+
+
+ Permits connection attributes in Protocol::HandshakeResponse41.
+
+
+
+
+ Understands length-encoded integer for auth response data in Protocol::HandshakeResponse41.
+
+
+
+
+ Announces support for expired password extension.
+
+
+
+
+ Can set SERVER_SESSION_STATE_CHANGED in the Status Flags and send session-state change data after a OK packet.
+
+
+
+
+ Can send OK after a Text Resultset.
+
+
+
+
+ Client supports progress indicator.
+
+
+
+
+ Client supports COM_MULTI (i.e., CommandKind.Multi)
+
+
+
+
+ Support of array binding.
+
+
+
+
+ is a class that holds an instance of .
+ Its primary difference from is that it's a reference type, so mutations
+ to this object are visible to other objects that hold a reference to it.
+
+
+
+
+ Hashes a password with the "Secure Password Authentication" method.
+
+ The 20-byte random challenge (from the "auth-plugin-data" in the initial handshake).
+ The password to hash.
+ A 20-byte password hash.
+ See Secure Password Authentication.
+
+
+
+ Helper class to translate NegotiateStream framing for SPNEGO token
+ into MySQL protocol packets.
+
+ Serves as underlying stream for System.Net.NegotiateStream
+ to perform MariaDB's auth_gssapi_client authentication.
+
+ NegotiateStream protocol is described in e.g here
+ https://winprotocoldoc.blob.core.windows.net/productionwindowsarchives/MS-NNS/[MS-NNS].pdf
+ We only use Handshake Messages for authentication.
+
+
+
+
+ The remaining timeout (in milliseconds) for the next I/O read. Use to represent no (or, infinite) timeout.
+
+
+
+
+ Reads data from this byte handler.
+
+ The buffer to read into.
+ The to use when reading data.
+ A holding the number of bytes read. If reading failed, this will be zero.
+
+
+
+ Writes data to this byte handler.
+
+ The data to write.
+ The to use when writing.
+ A . The value of this object is not defined.
+
+
+
+ Specifies whether to perform synchronous or asynchronous I/O.
+
+
+
+
+ Use synchronous I/O.
+
+
+
+
+ Use asynchronous I/O.
+
+
+
+
+ Starts a new "conversation" with the MySQL Server. This resets the "sequence id"
+ and should be called when a new command begins.
+
+
+
+
+ Gets or sets the underlying that data is read from and written to.
+
+
+
+
+ Reads the next payload.
+
+ An that will cache any buffers allocated during this
+ read. (To disable caching, pass new ArraySegmentHolder<byte>
so the cache will be garbage-collected
+ when this method returns.)
+ The to use if there is a protocol error.
+ The to use when reading data.
+ An containing the data that was read. This
+ will be valid to read from until the next time or
+ is called.
+
+
+
+ Writes a payload.
+
+ The data to write.
+ The to use when writing.
+ A . The value of this object is not defined.
+
+
+
+ Specifies how to handle protocol errors.
+
+
+
+
+ Throw an exception when there is a protocol error. This is the default.
+
+
+
+
+ Ignore any protocol errors.
+
+
+
+
+ A transaction is active.
+
+
+
+
+ Auto-commit is enabled
+
+
+
+
+ Used by Binary Protocol Resultset to signal that COM_STMT_FETCH must be used to fetch the row-data.
+
+
+
+
+ In a read-only transaction.
+
+
+
+
+ Connection state information has changed.
+
+
+
+
+ SESSION_TRACK_SYSTEM_VARIABLES: one or more system variables changed
+
+
+
+
+ SESSION_TRACK_SCHEMA: schema changed
+
+
+
+
+ SESSION_TRACK_STATE_CHANGE: "track state change" changed
+
+
+
+
+ SESSION_TRACK_GTIDS: "track GTIDs" changed
+
+
+
+
+ A sentinel value indicating no (or infinite) timeout.
+
+
+
+
+ A wrapper around a resizable array. This type is intended to be used with .
+
+
+
+
+ Do not call this method directly; use .
+
+
+
+
+ An that supports having its underlying array reallocated and resized.
+
+
+
+
+ Adds a timer that will invoke in approximately milliseconds.
+
+ The time (in milliseconds) to wait before invoking .
+ The callback to invoke.
+ A timer ID that can be passed to to cancel the timer.
+
+
+
+ Cancels the timer with the specified ID.
+
+ The timer ID (returned from ).
+ true if the timer was removed; otherwise, false. This method will return false if the specified timer has already fired.
+
+
+
+ Loads a RSA key from a PEM string.
+
+ The key, in PEM format.
+ An RSA key.
+
+
+
+ Returns a new that starts at index into .
+
+ The from which to create a slice.
+ The non-negative, zero-based starting index of the new slice (relative to of .
+ A new starting at the th element of and continuing to the end of .
+
+
+
+ Returns a new that starts at index into and has a length of .
+
+ The from which to create a slice.
+ The non-negative, zero-based starting index of the new slice (relative to of .
+ The non-negative length of the new slice.
+ A new of length , starting at the th element of .
+
+
+
+ Returns a new that is a slice of starting at .
+
+ The array to slice.
+ The offset at which to slice.
+ The length of the slice.
+ A new that is a slice of from to the end.
+
+
+
+ Finds the next index of in , starting at index .
+
+ The array to search.
+ The offset at which to start searching.
+ The pattern to find in .
+ The offset of within , or -1 if was not found.
+
+
+
+ Resizes to hold at least items.
+
+ may be null, in which case a new will be allocated.
+
+
+ Specifies that null is allowed as an input even if the corresponding type disallows it.
+
+
+ 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.
+
+
+
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net471/MySqlConnector.dll b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net471/MySqlConnector.dll
new file mode 100644
index 0000000..d7265ed
Binary files /dev/null and b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net471/MySqlConnector.dll differ
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net471/MySqlConnector.xml b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net471/MySqlConnector.xml
new file mode 100644
index 0000000..3cec9a9
--- /dev/null
+++ b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net471/MySqlConnector.xml
@@ -0,0 +1,5042 @@
+
+
+
+ MySqlConnector
+
+
+
+
+ A registry of known authentication plugins.
+
+
+
+
+ Registers the specified authentication plugin. The name of this plugin must be unique.
+
+ The authentication plugin.
+
+
+
+ The primary interface implemented by an authentication plugin.
+
+
+
+
+ The authentication plugin name.
+
+
+
+
+ Creates the authentication response.
+
+ The client's password.
+ The authentication data supplied by the server; this is the auth method data
+ from the Authentication
+ Method Switch Request Packet.
+
+
+
+
+ encapsulates a list of and the current position within that list.
+
+
+
+
+ The commands in the list.
+
+
+
+
+ The index of the current command.
+
+
+
+
+ If the current command is a prepared statement, the index of the current prepared statement for that command.
+
+
+
+
+ Returns true if the connection pool is empty, i.e., all connections are in use. Note that in a highly-multithreaded
+ environment, the value of this property may be stale by the time it's returned.
+
+
+
+
+ Returns the stored procedure cache for this , lazily creating it on demand.
+ This method may return a different object after has been called. The returned
+ object is shared between multiple threads and is only safe to use after taking a lock on the
+ object itself.
+
+
+
+
+ Examines all the objects in to determine if any
+ have an owning that has been garbage-collected. If so, assumes that the connection
+ was not properly disposed and returns the session to the pool.
+
+
+
+
+ The that was used to create this .!--
+ This object must not be mutated.
+
+
+
+
+ provides an internal abstraction over operations that can be cancelled: and .
+
+
+
+
+ Returns a unique ID for all implementations of .
+
+
+
+
+
+ Causes the effective command timeout to be reset back to the value specified by .
+
+ As per the MSDN documentation,
+ "This property is the cumulative time-out (for all network packets that are read during the invocation of a method) for all network reads during command
+ execution or processing of the results. A time-out can still occur after the first row is returned, and does not include user processing time, only network
+ read time. For example, with a 30 second time out, if Read requires two network packets, then it has 30 seconds to read both network packets. If you call
+ Read again, it will have another 30 seconds to read any data that it requires."
+ The method is called by public ADO.NET API methods to reset the effective time remaining at the beginning of a new
+ method call.
+
+
+
+ creates the data for an "execute query" command for one or more objects in a command list.
+
+
+
+
+ Writes the payload for an "execute query" command to .
+
+ The command list and its current position. This will be updated to the position of the next command to write (or past the end if there are no more commands).
+ A for all the stored procedures in the command list, if any.
+ The to write the payload to.
+ true if a command was written; otherwise, false (if there were no more commands in the list).
+
+
+
+ Returns an containing in the order they
+ should be tried to satisfy the load balancing policy.
+
+
+
+
+ provides an internal abstraction over and .
+
+
+
+
+ provides an abstraction over iterating through a sequence of
+ rows, where each row can fill an array of field values.
+
+
+
+
+ represents an individual SQL statement that's been parsed
+ from a string possibly containing multiple semicolon-delimited SQL statements.
+
+
+
+
+ The bytes for this statement that will be written on the wire.
+
+
+
+
+ The names of the parameters (if known) of the parameters in the prepared statement. There
+ is one entry in this list for each parameter, which will be null if the name is unknown.
+
+
+
+
+ The indexes of the parameters in the prepared statement. There is one entry in this list for
+ each parameter; it will be -1 if the parameter is named.
+
+
+
+
+ wraps a collection of objects.
+ It implements to return the memory backing the statements to a shared pool.
+
+
+
+
+ is a statement that has been prepared on the MySQL Server.
+
+
+
+
+ Disposes and sets to null, ignoring any
+ or that is thrown.
+
+ An type.
+ The object to dispose.
+
+
+
+ Writes the text of to , encoded in UTF-8.
+
+ The command.
+ The cached procedures.
+ The output writer.
+ true if a complete command was written; otherwise, false.
+
+
+
+ The statement is complete (apart from potentially needing a semicolon or newline).
+
+
+
+
+ The statement needs a newline (e.g., to terminate a final comment).
+
+
+
+
+ The statement needs a semicolon (if another statement is going to be concatenated to it).
+
+
+
+
+ Implementations of write logs to a particular target.
+
+
+
+
+ Returns true if logging for this logger is enabled at the specified level.
+
+ The log level.
+ true if logging is enabled; otherwise, false.
+
+
+
+ Writes a log message to the target.
+
+ The log level.
+ The log message. See documentation for for notes on interpreting {0} within this string.
+ If not null or empty, then includes formatting placeholders (e.g., {0})
+ which must be replaced with the arguments in , using or similar.
+ If null or an empty array, then is a literal string; any curly braces within it must be treated as literal characters,
+ not formatting placeholders.
+ If not null, an associated with the log message.
+ This method may be called from multiple threads and must be thread-safe. This method may be called
+ even if would return false for ; the implementation must
+ check if logging is enabled for that level.
+
+
+
+ Implementations of create logger instances.
+
+
+
+
+ Creates a logger with the specified name. This method may be called from multiple threads and must be thread-safe.
+
+
+
+
+ Controls logging for MySqlConnector.
+
+
+
+
+ Allows the to be set for this library. can
+ be set once, and must be set before any other library methods are used.
+
+
+
+
+ is an implementation of that does nothing.
+
+ This is the default logging implementation unless is set.
+
+
+
+ Returns false.
+
+
+
+
+ Ignores the specified log message.
+
+
+
+
+ Returns a singleton instance of .
+
+
+
+
+ Creates loggers that do nothing.
+
+
+
+
+ Returns a .
+
+
+
+
+ implements the new
+ ADO.NET batching API.
+ It is currently experimental and may change in the future.
+ When using MariaDB (10.2 or later), the commands will be sent in a single batch, reducing network
+ round-trip time. With other MySQL Servers, this may be no more efficient than executing the commands
+ individually.
+ Example usage:
+
+ using var connection = new MySqlConnection("...connection string...");
+ await connection.OpenAsync();
+
+ using var batch = new MySqlBatch(connection)
+ {
+ BatchCommands =
+ {
+ new MySqlBatchCommand("INSERT INTO departments(name) VALUES(@name);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Sales"),
+ },
+ },
+ new MySqlBatchCommand("SET @dept_id = last_insert_id()"),
+ new MySqlBatchCommand("INSERT INTO employees(name, department_id) VALUES(@name, @dept_id);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Jim Halpert"),
+ },
+ },
+ new MySqlBatchCommand("INSERT INTO employees(name, department_id) VALUES(@name, @dept_id);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Dwight Schrute"),
+ },
+ },
+ },
+ };
+ await batch.ExecuteNonQueryAsync();
+
+
+ The proposed ADO.NET API that is based on is not finalized. This API is experimental and may change in the future.
+
+
+
+ Initializes a new object. The property must be set before this object can be used.
+
+
+
+
+ Initializes a new object, setting the and if specified.
+
+ (Optional) The to use.
+ (Optional) The to use.
+
+
+
+ The collection of commands that will be executed in the batch.
+
+
+
+
+ Executes all the commands in the batch, returning a that can iterate
+ over the result sets. If multiple resultsets are returned, use
+ to access them.
+
+
+
+
+ Executes all the commands in the batch, returning a that can iterate
+ over the result sets. If multiple resultsets are returned, use
+ to access them.
+
+ A token to cancel the asynchronous operation.
+ A containing the result of the asynchronous operation.
+
+
+
+ lets you efficiently load a MySQL Server table with data from another source.
+ It is similar to the SqlBulkCopy class
+ for SQL Server.
+ Due to security features
+ in MySQL Server, the connection string must have AllowLoadLocalInfile=true in order
+ to use this class.
+ For data that is in CSV or TSV format, use to bulk load the file.
+ Example code:
+
+ // NOTE: to copy data between tables in the same database, use INSERT ... SELECT
+ // https://dev.mysql.com/doc/refman/8.0/en/insert-select.html
+ var dataTable = GetDataTableFromExternalSource();
+
+ using var connection = new MySqlConnection("...;AllowLoadLocalInfile=True");
+ await connection.OpenAsync();
+ var bulkCopy = new MySqlBulkCopy(connection);
+ bulkCopy.DestinationTableName = "some_table_name";
+ await bulkCopy.WriteToServerAsync(dataTable);
+
+
+ Note: This API is a unique feature of MySqlConnector; you must
+ switch to MySqlConnector in order to use it.
+ This API is experimental and may change in the future.
+
+
+
+
+ Initializes a object with the specified connection, and optionally the active transaction.
+
+ The to use.
+ (Optional) The to use.
+
+
+
+ The number of seconds for the operation to complete before it times out, or 0 for no timeout.
+
+
+
+
+ The name of the table to insert rows into.
+
+ This name needs to be quoted if it contains special characters.
+
+
+
+ If non-zero, this specifies the number of rows to be processed before generating a notification event.
+
+
+
+
+ This event is raised every time that the number of rows specified by the property have been processed.
+
+
+ Receipt of a RowsCopied event does not imply that any rows have been sent to the server or committed.
+ The property can be set to true by the event handler to abort the copy.
+
+
+
+
+ A collection of objects. If the columns being copied from the
+ data source line up one-to-one with the columns in the destination table then populating this collection is
+ unnecessary. Otherwise, this should be filled with a collection of objects
+ specifying how source columns are to be mapped onto destination columns. If one column mapping is specified,
+ then all must be specified.
+
+
+
+
+ Returns the number of rows that were copied (after WriteToServer(Async)
finishes).
+
+
+
+
+ Copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ This method is not available on netstandard1.3.
+
+
+
+ Asynchronously copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ This method is not available on netstandard1.3.
+
+
+
+ Copies all rows in the supplied sequence of objects to the destination table specified by the
+ property of the object. The number of columns
+ to be read from the objects must be specified in advance.
+
+ The collection of objects.
+ The number of columns to copy (in each row).
+ This method is not available on netstandard1.3.
+
+
+
+ Asynchronously copies all rows in the supplied sequence of objects to the destination table specified by the
+ property of the object. The number of columns
+ to be read from the objects must be specified in advance.
+
+ The collection of objects.
+ The number of columns to copy (in each row).
+ A token to cancel the asynchronous operation.
+ This method is not available on netstandard1.3.
+
+
+
+ Copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ The to copy from.
+
+
+
+ Asynchronously copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ The to copy from.
+ A token to cancel the asynchronous operation.
+
+
+
+ Use to specify how to map columns in the source data to
+ columns in the destination table when using .
+ Set to the index of the source column to map. Set to
+ either the name of a column in the destination table, or the name of a user-defined variable.
+ If a user-defined variable, you can use to specify a MySQL expression that assigns
+ its value to destination column.
+ Source columns that don't have an entry in will be ignored
+ (unless the collection is empty, in which case all columns will be mapped
+ one-to-one).
+ MySqlConnector will transmit all binary data as hex, so any expression that operates on it
+ must decode it with the UNHEX function first. (This will be performed automatically if no
+ is specified, but will be necessary to specify manually for more complex expressions.)
+ Example code:
+
+ new MySqlBulkCopyColumnMapping
+ {
+ SourceOrdinal = 2,
+ DestinationColumn = "user_name",
+ },
+ new MySqlBulkCopyColumnMapping
+ {
+ SourceOrdinal = 0,
+ DestinationColumn = "@tmp",
+ Expression = "column_value = @tmp * 2",
+ },
+
+
+
+
+
+ Initializes with the default values.
+
+
+
+
+ Initializes to the specified values.
+
+ The ordinal position of the source column.
+ The name of the destination column.
+ The optional expression to be used to set the destination column.
+
+
+
+ The ordinal position of the source column to map from.
+
+
+
+
+ The name of the destination column to copy to. To use an expression, this should be the name of a unique user-defined variable.
+
+
+
+
+ An optional expression for setting a destination column. To use an expression, the should
+ be set to the name of a user-defined variable and this expression should set a column using that variable.
+
+ To populate a binary column, you must set to a variable name, and to an
+ expression that uses UNHEX
to set the column value, e.g., `destColumn` = UNHEX(@variableName)
.
+
+
+
+ lets you efficiently load a MySQL Server Table with data from a CSV or TSV file or .
+ Example code:
+
+ using var connection = new MySqlConnection("...;AllowLoadLocalInfile=True");
+ await connection.OpenAsync();
+ var bulkLoader = new MySqlBulkLoader(connection)
+ {
+ FileName = @"C:\Path\To\file.csv",
+ TableName = "destination",
+ CharacterSet = "UTF8",
+ NumberOfLinesToSkip = 1,
+ FieldTerminator = ",",
+ FieldQuotationCharacter = '"',
+ FieldQuotationOptional = true,
+ Local = true,
+ }
+ var rowCount = await bulkLoader.LoadAsync();
+
+
+ Due to security features
+ in MySQL Server, the connection string must have AllowLoadLocalInfile=true in order to use a local source.
+
+
+
+
+ (Optional) The character set of the source data. By default, the database's character set is used.
+
+
+
+
+ (Optional) A list of the column names in the destination table that should be filled with data from the input file.
+
+
+
+
+ A value that specifies how conflicts are resolved (default ).
+
+
+
+
+ The to use.
+
+
+
+
+ (Optional) The character used to escape instances of within field values.
+
+
+
+
+ (Optional) A list of expressions used to set field values from the columns in the source data.
+
+
+
+
+ (Optional) The character used to enclose fields in the source data.
+
+
+
+
+ Whether quoting fields is optional (default false).
+
+
+
+
+ (Optional) The string fields are terminated with.
+
+
+
+
+ The name of the local (if is true) or remote (otherwise) file to load.
+ Either this or must be set.
+
+
+
+
+ (Optional) A prefix in each line that should be skipped when loading.
+
+
+
+
+ (Optional) The string lines are terminated with.
+
+
+
+
+ Whether a local file is being used (default true).
+
+
+
+
+ The number of lines to skip at the beginning of the file (default 0).
+
+
+
+
+ A giving the priority to load with (default ).
+
+
+
+
+ A containing the data to load. Either this or must be set.
+ The property must be true if this is set.
+
+
+
+
+ The name of the table to load into. If this is a reserved word or contains spaces, it must be quoted.
+
+
+
+
+ The timeout (in milliseconds) to use.
+
+
+
+
+ Initializes a new instance of the class with the specified .
+
+ The to use.
+
+
+
+ Loads all data in the source file or stream into the destination table.
+
+ The number of rows inserted.
+
+
+
+ Asynchronously loads all data in the source file or stream into the destination table.
+
+ A that will be completed with the number of rows inserted.
+
+
+
+ Asynchronously loads all data in the source file or stream into the destination table.
+
+ A token to cancel the asynchronous operation.
+ A that will be completed with the number of rows inserted.
+
+
+
+ Do not use certificate store
+
+
+
+
+ Use certificate store for the current user
+
+
+
+
+ User certificate store for the machine
+
+
+
+
+ represents a SQL statement or stored procedure name
+ to execute against a MySQL database.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class, setting to .
+
+ The text to assign to .
+
+
+
+ Initializes a new instance of the class with the specified and .
+
+ The to use.
+ The active , if any.
+
+
+
+ Initializes a new instance of the class with the specified command text and .
+
+ The text to assign to .
+ The to use.
+
+
+
+ Initializes a new instance of the class with the specified command text,, and .
+
+ The text to assign to .
+ The to use.
+ The active , if any.
+
+
+
+ The collection of objects for this command.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Holds the first automatically-generated ID for a value inserted in an AUTO_INCREMENT column in the last statement.
+
+
+ See LAST_INSERT_ID() for more information.
+
+
+
+
+ Registers as a callback with if cancellation is supported.
+
+ The .
+ An object that must be disposed to revoke the cancellation registration.
+ This method is more efficient than calling token.Register(Command.Cancel)
because it avoids
+ unnecessary allocations.
+
+
+
+ represents a connection to a MySQL database.
+
+
+
+
+ Begins a database transaction.
+
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction.
+
+ The for the transaction.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction.
+
+ The for the transaction.
+ If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ The for the transaction.
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ The for the transaction.
+ If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Resets the session state of the current open connection; this clears temporary tables and user-defined variables.
+
+ A token to cancel the asynchronous operation.
+ A ValueTask representing the asynchronous operation.
+ This is an optional feature of the MySQL protocol and may not be supported by all servers.
+ It's known to be supported by MySQL Server 5.7.3 (and later) and MariaDB 10.2.4 (and later).
+ Other MySQL-compatible servers or proxies may not support this command.
+
+
+
+ The connection ID from MySQL Server.
+
+
+
+
+ Clears the connection pool that belongs to.
+
+ The whose connection pool will be cleared.
+
+
+
+ Asynchronously clears the connection pool that belongs to.
+
+ The whose connection pool will be cleared.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+
+
+
+ Clears all connection pools.
+
+
+
+
+ Asynchronously clears all connection pools.
+
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+
+
+
+ Returns schema information for the data source of this .
+
+ A containing schema information.
+
+
+
+ Returns schema information for the data source of this .
+
+ The name of the schema to return.
+ A containing schema information.
+
+
+
+ Returns schema information for the data source of this .
+
+ The name of the schema to return.
+ The restrictions to apply to the schema; this parameter is currently ignored.
+ A containing schema information.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ The name of the schema to return.
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ The name of the schema to return.
+ The restrictions to apply to the schema; this parameter is currently ignored.
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Gets the time (in seconds) to wait while trying to establish a connection
+ before terminating the attempt and generating an error. This value
+ is controlled by ,
+ which defaults to 15 seconds.
+
+
+
+
+ Creates a object for executing batched commands.
+
+
+
+
+
+ Creates a object (that can be used with ).
+
+
+
+
+
+ Returns an unopened copy of this connection with a new connection string. If the Password
+ in is not set, the password from this connection will be used.
+ This allows creating a new connection with the same security information while changing other options,
+ such as database or pooling.
+
+ The new connection string to be used.
+ A new with different connection string options but
+ the same password as this connection (unless overridden by ).
+
+
+
+ Specifies the type of connection to make to the server.
+
+
+
+
+ TCP/IP connection.
+
+
+
+
+ Named pipe connection. Only works on Windows.
+
+
+
+
+ Unix domain socket connection. Only works on Unix/Linux.
+
+
+
+
+ Shared memory connection. Not currently supported.
+
+
+
+
+ The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error.
+ The default value is 15.
+
+
+
+
+ An implementation of that creates MySqlConnector objects.
+
+
+
+
+ Provides an instance of that can create MySqlConnector objects.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Returns false.
+
+ is not supported by MySqlConnector.
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Returns true.
+
+
+
+
+ Returns a that contains metadata about the columns in the result set.
+
+ A containing metadata about the columns in the result set.
+
+
+
+ Returns a that contains metadata about the columns in the result set.
+
+ A token to cancel the operation.
+ A containing metadata about the columns in the result set.
+ This method runs synchronously; prefer to call to avoid the overhead of allocating an unnecessary Task.
+
+
+
+ Returns metadata about the columns in the result set.
+
+ A containing metadata about the result set.
+
+
+
+ Returns metadata about the columns in the result set.
+
+ A token to cancel the operation.
+ A containing containing metadata about the result set.
+ This method runs synchronously; prefer to call to avoid the overhead of allocating an unnecessary Task.
+
+
+
+ The used when reading from the database.
+
+
+
+
+ Use when reading; allow any in command parameters.
+
+
+
+
+ Use when reading; reject in command parameters.
+
+
+
+
+ Use when reading; reject in command parameters.
+
+
+
+
+ MySQL Server error codes. Taken from Server Error Codes and Messages.
+
+
+
+
+ Not all rows from the source supplied to were copied to .
+
+
+
+
+ The timeout period specified by elapsed before the operation completed.
+
+
+
+
+ ER_HASHCHK
+
+
+
+
+ ER_NISAMCHK
+
+
+
+
+ ER_NO
+
+
+
+
+ ER_YES
+
+
+
+
+ ER_CANT_CREATE_FILE
+
+
+
+
+ ER_CANT_CREATE_TABLE
+
+
+
+
+ ER_CANT_CREATE_DB
+
+
+
+
+ ER_DB_CREATE_EXISTS
+
+
+
+
+ ER_DB_DROP_EXISTS
+
+
+
+
+ ER_DB_DROP_DELETE
+
+
+
+
+ ER_DB_DROP_RMDIR
+
+
+
+
+ ER_CANT_DELETE_FILE
+
+
+
+
+ ER_CANT_FIND_SYSTEM_REC
+
+
+
+
+ ER_CANT_GET_STAT
+
+
+
+
+ ER_CANT_GET_WD
+
+
+
+
+ ER_CANT_LOCK
+
+
+
+
+ ER_CANT_OPEN_FILE
+
+
+
+
+ ER_FILE_NOT_FOUND
+
+
+
+
+ ER_CANT_READ_DIR
+
+
+
+
+ ER_CANT_SET_WD
+
+
+
+
+ ER_CHECKREAD
+
+
+
+
+ ER_DISK_FULL
+
+
+
+
+ ER_DUP_KEY
+
+
+
+
+ ER_ERROR_ON_CLOSE
+
+
+
+
+ ER_ERROR_ON_READ
+
+
+
+
+ ER_ERROR_ON_RENAME
+
+
+
+
+ ER_ERROR_ON_WRITE
+
+
+
+
+ ER_FILE_USED
+
+
+
+
+ ER_FILSORT_ABORT
+
+
+
+
+ ER_FORM_NOT_FOUND
+
+
+
+
+ ER_GET_ERRNO
+
+
+
+
+ ER_ILLEGAL_HA
+
+
+
+
+ ER_KEY_NOT_FOUND
+
+
+
+
+ ER_NOT_FORM_FILE
+
+
+
+
+ ER_NOT_KEYFILE
+
+
+
+
+ ER_OLD_KEYFILE
+
+
+
+
+ ER_OPEN_AS_READONLY
+
+
+
+
+ ER_OUTOFMEMORY
+
+
+
+
+ ER_OUT_OF_SORTMEMORY
+
+
+
+
+ ER_UNEXPECTED_EOF
+
+
+
+
+ ER_CON_COUNT_ERROR
+
+
+
+
+ ER_OUT_OF_RESOURCES
+
+
+
+
+ ER_BAD_HOST_ERROR
+
+
+
+
+ ER_HANDSHAKE_ERROR
+
+
+
+
+ ER_DBACCESS_DENIED_ERROR
+
+
+
+
+ ER_ACCESS_DENIED_ERROR
+
+
+
+
+ ER_NO_DB_ERROR
+
+
+
+
+ ER_UNKNOWN_COM_ERROR
+
+
+
+
+ ER_BAD_NULL_ERROR
+
+
+
+
+ ER_BAD_DB_ERROR
+
+
+
+
+ ER_TABLE_EXISTS_ERROR
+
+
+
+
+ ER_BAD_TABLE_ERROR
+
+
+
+
+ ER_NON_UNIQ_ERROR
+
+
+
+
+ ER_SERVER_SHUTDOWN
+
+
+
+
+ ER_BAD_FIELD_ERROR
+
+
+
+
+ ER_WRONG_FIELD_WITH_GROUP
+
+
+
+
+ ER_WRONG_GROUP_FIELD
+
+
+
+
+ ER_WRONG_SUM_SELECT
+
+
+
+
+ ER_WRONG_VALUE_COUNT
+
+
+
+
+ ER_TOO_LONG_IDENT
+
+
+
+
+ ER_DUP_FIELDNAME
+
+
+
+
+ ER_DUP_KEYNAME
+
+
+
+
+ ER_DUP_ENTRY
+
+
+
+
+ ER_WRONG_FIELD_SPEC
+
+
+
+
+ You have an error in your SQL syntax (ER_PARSE_ERROR).
+
+
+
+
+ ER_EMPTY_QUERY
+
+
+
+
+ ER_NONUNIQ_TABLE
+
+
+
+
+ ER_INVALID_DEFAULT
+
+
+
+
+ ER_MULTIPLE_PRI_KEY
+
+
+
+
+ ER_TOO_MANY_KEYS
+
+
+
+
+ ER_TOO_MANY_KEY_PARTS
+
+
+
+
+ ER_TOO_LONG_KEY
+
+
+
+
+ ER_KEY_COLUMN_DOES_NOT_EXITS
+
+
+
+
+ ER_BLOB_USED_AS_KEY
+
+
+
+
+ ER_TOO_BIG_FIELDLENGTH
+
+
+
+
+ ER_WRONG_AUTO_KEY
+
+
+
+
+ ER_READY
+
+
+
+
+ ER_NORMAL_SHUTDOWN
+
+
+
+
+ ER_GOT_SIGNAL
+
+
+
+
+ ER_SHUTDOWN_COMPLETE
+
+
+
+
+ ER_FORCING_CLOSE
+
+
+
+
+ ER_IPSOCK_ERROR
+
+
+
+
+ ER_NO_SUCH_INDEX
+
+
+
+
+ ER_WRONG_FIELD_TERMINATORS
+
+
+
+
+ ER_BLOBS_AND_NO_TERMINATED
+
+
+
+
+ ER_TEXTFILE_NOT_READABLE
+
+
+
+
+ ER_FILE_EXISTS_ERROR
+
+
+
+
+ ER_LOAD_INFO
+
+
+
+
+ ER_ALTER_INFO
+
+
+
+
+ ER_WRONG_SUB_KEY
+
+
+
+
+ ER_CANT_REMOVE_ALL_FIELDS
+
+
+
+
+ ER_CANT_DROP_FIELD_OR_KEY
+
+
+
+
+ ER_INSERT_INFO
+
+
+
+
+ ER_UPDATE_TABLE_USED
+
+
+
+
+ ER_NO_SUCH_THREAD
+
+
+
+
+ ER_KILL_DENIED_ERROR
+
+
+
+
+ ER_NO_TABLES_USED
+
+
+
+
+ ER_TOO_BIG_SET
+
+
+
+
+ ER_NO_UNIQUE_LOGFILE
+
+
+
+
+ ER_TABLE_NOT_LOCKED_FOR_WRITE
+
+
+
+
+ ER_TABLE_NOT_LOCKED
+
+
+
+
+ ER_BLOB_CANT_HAVE_DEFAULT
+
+
+
+
+ ER_WRONG_DB_NAME
+
+
+
+
+ ER_WRONG_TABLE_NAME
+
+
+
+
+ ER_TOO_BIG_SELECT
+
+
+
+
+ ER_UNKNOWN_ERROR
+
+
+
+
+ ER_UNKNOWN_PROCEDURE
+
+
+
+
+ ER_WRONG_PARAMCOUNT_TO_PROCEDURE
+
+
+
+
+ ER_WRONG_PARAMETERS_TO_PROCEDURE
+
+
+
+
+ ER_UNKNOWN_TABLE
+
+
+
+
+ ER_FIELD_SPECIFIED_TWICE
+
+
+
+
+ ER_INVALID_GROUP_FUNC_USE
+
+
+
+
+ ER_UNSUPPORTED_EXTENSION
+
+
+
+
+ ER_TABLE_MUST_HAVE_COLUMNS
+
+
+
+
+ ER_RECORD_FILE_FULL
+
+
+
+
+ ER_UNKNOWN_CHARACTER_SET
+
+
+
+
+ ER_TOO_MANY_TABLES
+
+
+
+
+ ER_TOO_MANY_FIELDS
+
+
+
+
+ ER_TOO_BIG_ROWSIZE
+
+
+
+
+ ER_STACK_OVERRUN
+
+
+
+
+ ER_WRONG_OUTER_JOIN
+
+
+
+
+ ER_NULL_COLUMN_IN_INDEX
+
+
+
+
+ ER_CANT_FIND_UDF
+
+
+
+
+ ER_CANT_INITIALIZE_UDF
+
+
+
+
+ ER_UDF_NO_PATHS
+
+
+
+
+ ER_UDF_EXISTS
+
+
+
+
+ ER_CANT_OPEN_LIBRARY
+
+
+
+
+ ER_CANT_FIND_DL_ENTRY
+
+
+
+
+ ER_FUNCTION_NOT_DEFINED
+
+
+
+
+ ER_HOST_IS_BLOCKED
+
+
+
+
+ ER_HOST_NOT_PRIVILEGED
+
+
+
+
+ ER_PASSWORD_ANONYMOUS_USER
+
+
+
+
+ ER_PASSWORD_NOT_ALLOWED
+
+
+
+
+ ER_PASSWORD_NO_MATCH
+
+
+
+
+ ER_UPDATE_INFO
+
+
+
+
+ ER_CANT_CREATE_THREAD
+
+
+
+
+ ER_WRONG_VALUE_COUNT_ON_ROW
+
+
+
+
+ ER_CANT_REOPEN_TABLE
+
+
+
+
+ ER_INVALID_USE_OF_NULL
+
+
+
+
+ ER_REGEXP_ERROR
+
+
+
+
+ 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_UNUSED1
+
+
+
+
+ ER_UNUSED2
+
+
+
+
+ ER_ABORTING_CONNECTION
+
+
+
+
+ ER_NET_PACKET_TOO_LARGE
+
+
+
+
+ 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_UNUSED3
+
+
+
+
+ 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
+
+
+
+
+ Query execution was interrupted (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_OBSOLETE_COL_COUNT_DOESNT_MATCH_CORRUPTED
+
+
+
+
+ ER_OBSOLETE_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_OLD_UNUSED
+
+
+
+
+ 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_TX_CHARACTERISTICS
+
+
+
+
+ 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_NEVER_USED
+
+
+
+
+ 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_CANT_EXECUTE_IN_READ_ONLY_TRANSACTION
+
+
+
+
+ is thrown when MySQL Server returns an error code, or there is a
+ communication error with the server.
+
+
+
+
+ A value identifying the kind of error. Prefer to use the property.
+
+
+
+
+ A value identifying the kind of error.
+
+
+
+
+ A SQLSTATE code identifying the kind of error.
+
+ See SQLSTATE for more information.
+
+
+
+ Represents MySQL's internal GEOMETRY format: https://dev.mysql.com/doc/refman/8.0/en/gis-data-formats.html#gis-internal-format
+
+
+
+
+ Constructs a from a SRID and Well-known Binary bytes.
+
+ The SRID (Spatial Reference System ID).
+ The Well-known Binary serialization of the geometry.
+ A new containing the specified geometry.
+
+
+
+ Constructs a from MySQL's internal format.
+
+ The raw bytes of MySQL's internal GEOMETRY format.
+ A new containing the specified geometry.
+ See Internal Geometry Storage Format.
+
+
+
+ The Spatial Reference System ID of this geometry.
+
+
+
+
+ The Well-known Binary serialization of this geometry.
+
+
+
+
+ The internal MySQL form of this geometry.
+
+
+
+
+ Determines which column type (if any) should be read as a System.Guid.
+
+
+
+
+ Same as Char36 if OldGuids=False; same as LittleEndianBinary16 if OldGuids=True.
+
+
+
+
+ No column types are read/written as a Guid
.
+
+
+
+
+ All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens,
+ which matches UUID().
+
+
+
+
+ All CHAR(32) columns are read/written as a Guid using lowercase hex without hyphens.
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using big-endian byte order,
+ which matches UUID_TO_BIN(x).
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using big-endian byte order with time parts swapped,
+ which matches UUID_TO_BIN(x,1).
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using little-endian byte order, i.e. the byte order
+ used by and .
+
+
+
+
+ Escapes single and double quotes, and backslashes in .
+
+
+
+
+ Each new connection opened for a connection pool uses the next host name (sequentially with wraparound).
+
+
+
+
+ Each new connection tries to connect to the first host; subsequent hosts are used only if connecting to the first one fails.
+
+
+
+
+ Servers are tried in random order.
+
+
+
+
+ Servers are tried in ascending order of number of currently-open connections.
+
+
+
+
+ Gets or sets a value that indicates whether the bulk copy operation should be aborted.
+
+
+
+
+ Gets a value that returns the number of rows copied during the current bulk copy operation.
+
+
+
+
+ Represents the method that handles the event of a .
+
+
+
+
+ SSL connection options.
+
+
+
+
+ Do not use SSL.
+
+
+
+
+ Use SSL if the server supports it.
+
+
+
+
+ Always use SSL. Deny connection if server does not support SSL.
+
+
+
+
+ Always use SSL. Validate the Certificate Authority but tolerate name mismatch.
+
+
+
+
+ Always use SSL. Fail if the host name is not correct.
+
+
+
+
+ Removes the named transaction savepoint with the specified . No commit or rollback occurs.
+
+ The savepoint name.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously removes the named transaction savepoint with the specified . No commit or rollback occurs.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Rolls back the current transaction to the savepoint with the specified without aborting the transaction.
+
+ The savepoint name.
+ The name must have been created with , but not released by calling .
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously rolls back the current transaction to the savepoint with the specified without aborting the transaction.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The name must have been created with , but not released by calling .
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Sets a named transaction savepoint with the specified . If the current transaction
+ already has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+ The savepoint name.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously sets a named transaction savepoint with the specified . If the current transaction
+ already has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ MySQL character set codes.
+
+ Obtained from SELECT id, collation_name FROM information_schema.collations ORDER BY id; on MySQL 8.0.16.
+
+
+
+ Field cannot be NULL.
+
+
+
+
+ Field is part of a primary key.
+
+
+
+
+ Field is part of a unique key.
+
+
+
+
+ Field is part of a nonunique key.
+
+
+
+
+ Field is a BLOB or TEXT (deprecated).
+
+
+
+
+ Field has the UNSIGNED attribute.
+
+
+
+
+ Field has the ZEROFILL attribute.
+
+
+
+
+ Field has the BINARY attribute.
+
+
+
+
+ Field is an ENUM.
+
+
+
+
+ Field has the AUTO_INCREMENT attribute.
+
+
+
+
+ Field is a TIMESTAMP (deprecated).
+
+
+
+
+ Field is a SET.
+
+
+
+
+ Field is numeric.
+
+
+
+
+ See MySQL documentation.
+
+
+
+
+ Returns true if contains an EOF packet.
+ Note that EOF packets can appear in places where a length-encoded integer (which starts with the same signature byte) may appear, so the length
+ has to be checked to verify that it is an EOF packet.
+
+ The payload to examine.
+ true if this is an EOF packet; otherwise, false.
+
+
+
+ The MySQL Capability flags.
+
+
+
+
+ No specified capabilities.
+
+
+
+
+ Use the improved version of Old Password Authentication.
+
+
+
+
+ Send found rows instead of affected rows in EOF_Packet.
+
+
+
+
+ Longer flags in Protocol::ColumnDefinition320.
+
+
+
+
+ Database (schema) name can be specified on connect in Handshake Response Packet.
+
+
+
+
+ Do not permit database.table.column.
+
+
+
+
+ Supports compression.
+
+
+
+
+ Special handling of ODBC behavior.
+
+
+
+
+ Enables the LOCAL INFILE request of LOAD DATA|XML.
+
+
+
+
+ Parser can ignore spaces before '('.
+
+
+
+
+ Supports the 4.1 protocol.
+
+
+
+
+ Server: Supports interactive and noninteractive clients. Client: The session wait_timeout
variable is set to the value of the session interactive_timeout
variable.
+
+
+
+
+ Supports SSL.
+
+
+
+
+ Can send status flags in EOF_Packet.
+
+
+
+
+ Supports Authentication::Native41.
+
+
+
+
+ Can handle multiple statements per COM_QUERY and COM_STMT_PREPARE.
+
+
+
+
+ Can send multiple resultsets for COM_QUERY.
+
+
+
+
+ Can send multiple resultsets for COM_STMT_EXECUTE.
+
+
+
+
+ Sends extra data in Initial Handshake Packet and supports the pluggable authentication protocol.
+
+
+
+
+ Permits connection attributes in Protocol::HandshakeResponse41.
+
+
+
+
+ Understands length-encoded integer for auth response data in Protocol::HandshakeResponse41.
+
+
+
+
+ Announces support for expired password extension.
+
+
+
+
+ Can set SERVER_SESSION_STATE_CHANGED in the Status Flags and send session-state change data after a OK packet.
+
+
+
+
+ Can send OK after a Text Resultset.
+
+
+
+
+ Client supports progress indicator.
+
+
+
+
+ Client supports COM_MULTI (i.e., CommandKind.Multi)
+
+
+
+
+ Support of array binding.
+
+
+
+
+ is a class that holds an instance of .
+ Its primary difference from is that it's a reference type, so mutations
+ to this object are visible to other objects that hold a reference to it.
+
+
+
+
+ Hashes a password with the "Secure Password Authentication" method.
+
+ The 20-byte random challenge (from the "auth-plugin-data" in the initial handshake).
+ The password to hash.
+ A 20-byte password hash.
+ See Secure Password Authentication.
+
+
+
+ Helper class to translate NegotiateStream framing for SPNEGO token
+ into MySQL protocol packets.
+
+ Serves as underlying stream for System.Net.NegotiateStream
+ to perform MariaDB's auth_gssapi_client authentication.
+
+ NegotiateStream protocol is described in e.g here
+ https://winprotocoldoc.blob.core.windows.net/productionwindowsarchives/MS-NNS/[MS-NNS].pdf
+ We only use Handshake Messages for authentication.
+
+
+
+
+ The remaining timeout (in milliseconds) for the next I/O read. Use to represent no (or, infinite) timeout.
+
+
+
+
+ Reads data from this byte handler.
+
+ The buffer to read into.
+ The to use when reading data.
+ A holding the number of bytes read. If reading failed, this will be zero.
+
+
+
+ Writes data to this byte handler.
+
+ The data to write.
+ The to use when writing.
+ A . The value of this object is not defined.
+
+
+
+ Specifies whether to perform synchronous or asynchronous I/O.
+
+
+
+
+ Use synchronous I/O.
+
+
+
+
+ Use asynchronous I/O.
+
+
+
+
+ Starts a new "conversation" with the MySQL Server. This resets the "sequence id"
+ and should be called when a new command begins.
+
+
+
+
+ Gets or sets the underlying that data is read from and written to.
+
+
+
+
+ Reads the next payload.
+
+ An that will cache any buffers allocated during this
+ read. (To disable caching, pass new ArraySegmentHolder<byte>
so the cache will be garbage-collected
+ when this method returns.)
+ The to use if there is a protocol error.
+ The to use when reading data.
+ An containing the data that was read. This
+ will be valid to read from until the next time or
+ is called.
+
+
+
+ Writes a payload.
+
+ The data to write.
+ The to use when writing.
+ A . The value of this object is not defined.
+
+
+
+ Specifies how to handle protocol errors.
+
+
+
+
+ Throw an exception when there is a protocol error. This is the default.
+
+
+
+
+ Ignore any protocol errors.
+
+
+
+
+ A transaction is active.
+
+
+
+
+ Auto-commit is enabled
+
+
+
+
+ Used by Binary Protocol Resultset to signal that COM_STMT_FETCH must be used to fetch the row-data.
+
+
+
+
+ In a read-only transaction.
+
+
+
+
+ Connection state information has changed.
+
+
+
+
+ SESSION_TRACK_SYSTEM_VARIABLES: one or more system variables changed
+
+
+
+
+ SESSION_TRACK_SCHEMA: schema changed
+
+
+
+
+ SESSION_TRACK_STATE_CHANGE: "track state change" changed
+
+
+
+
+ SESSION_TRACK_GTIDS: "track GTIDs" changed
+
+
+
+
+ A sentinel value indicating no (or infinite) timeout.
+
+
+
+
+ A wrapper around a resizable array. This type is intended to be used with .
+
+
+
+
+ Do not call this method directly; use .
+
+
+
+
+ An that supports having its underlying array reallocated and resized.
+
+
+
+
+ Adds a timer that will invoke in approximately milliseconds.
+
+ The time (in milliseconds) to wait before invoking .
+ The callback to invoke.
+ A timer ID that can be passed to to cancel the timer.
+
+
+
+ Cancels the timer with the specified ID.
+
+ The timer ID (returned from ).
+ true if the timer was removed; otherwise, false. This method will return false if the specified timer has already fired.
+
+
+
+ Loads a RSA key from a PEM string.
+
+ The key, in PEM format.
+ An RSA key.
+
+
+
+ Returns a new that starts at index into .
+
+ The from which to create a slice.
+ The non-negative, zero-based starting index of the new slice (relative to of .
+ A new starting at the th element of and continuing to the end of .
+
+
+
+ Returns a new that starts at index into and has a length of .
+
+ The from which to create a slice.
+ The non-negative, zero-based starting index of the new slice (relative to of .
+ The non-negative length of the new slice.
+ A new of length , starting at the th element of .
+
+
+
+ Returns a new that is a slice of starting at .
+
+ The array to slice.
+ The offset at which to slice.
+ The length of the slice.
+ A new that is a slice of from to the end.
+
+
+
+ Finds the next index of in , starting at index .
+
+ The array to search.
+ The offset at which to start searching.
+ The pattern to find in .
+ The offset of within , or -1 if was not found.
+
+
+
+ Resizes to hold at least items.
+
+ may be null, in which case a new will be allocated.
+
+
+ Specifies that null is allowed as an input even if the corresponding type disallows it.
+
+
+ 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.
+
+
+
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net5.0/MySqlConnector.dll b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net5.0/MySqlConnector.dll
new file mode 100644
index 0000000..026593f
Binary files /dev/null and b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net5.0/MySqlConnector.dll differ
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net5.0/MySqlConnector.xml b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net5.0/MySqlConnector.xml
new file mode 100644
index 0000000..88db1c5
--- /dev/null
+++ b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/net5.0/MySqlConnector.xml
@@ -0,0 +1,5034 @@
+
+
+
+ MySqlConnector
+
+
+
+
+ A registry of known authentication plugins.
+
+
+
+
+ Registers the specified authentication plugin. The name of this plugin must be unique.
+
+ The authentication plugin.
+
+
+
+ The primary interface implemented by an authentication plugin.
+
+
+
+
+ The authentication plugin name.
+
+
+
+
+ Creates the authentication response.
+
+ The client's password.
+ The authentication data supplied by the server; this is the auth method data
+ from the Authentication
+ Method Switch Request Packet.
+
+
+
+
+ encapsulates a list of and the current position within that list.
+
+
+
+
+ The commands in the list.
+
+
+
+
+ The index of the current command.
+
+
+
+
+ If the current command is a prepared statement, the index of the current prepared statement for that command.
+
+
+
+
+ Returns true if the connection pool is empty, i.e., all connections are in use. Note that in a highly-multithreaded
+ environment, the value of this property may be stale by the time it's returned.
+
+
+
+
+ Returns the stored procedure cache for this , lazily creating it on demand.
+ This method may return a different object after has been called. The returned
+ object is shared between multiple threads and is only safe to use after taking a lock on the
+ object itself.
+
+
+
+
+ Examines all the objects in to determine if any
+ have an owning that has been garbage-collected. If so, assumes that the connection
+ was not properly disposed and returns the session to the pool.
+
+
+
+
+ The that was used to create this .!--
+ This object must not be mutated.
+
+
+
+
+ provides an internal abstraction over operations that can be cancelled: and .
+
+
+
+
+ Returns a unique ID for all implementations of .
+
+
+
+
+
+ Causes the effective command timeout to be reset back to the value specified by .
+
+ As per the MSDN documentation,
+ "This property is the cumulative time-out (for all network packets that are read during the invocation of a method) for all network reads during command
+ execution or processing of the results. A time-out can still occur after the first row is returned, and does not include user processing time, only network
+ read time. For example, with a 30 second time out, if Read requires two network packets, then it has 30 seconds to read both network packets. If you call
+ Read again, it will have another 30 seconds to read any data that it requires."
+ The method is called by public ADO.NET API methods to reset the effective time remaining at the beginning of a new
+ method call.
+
+
+
+ creates the data for an "execute query" command for one or more objects in a command list.
+
+
+
+
+ Writes the payload for an "execute query" command to .
+
+ The command list and its current position. This will be updated to the position of the next command to write (or past the end if there are no more commands).
+ A for all the stored procedures in the command list, if any.
+ The to write the payload to.
+ true if a command was written; otherwise, false (if there were no more commands in the list).
+
+
+
+ Returns an containing in the order they
+ should be tried to satisfy the load balancing policy.
+
+
+
+
+ provides an internal abstraction over and .
+
+
+
+
+ provides an abstraction over iterating through a sequence of
+ rows, where each row can fill an array of field values.
+
+
+
+
+ represents an individual SQL statement that's been parsed
+ from a string possibly containing multiple semicolon-delimited SQL statements.
+
+
+
+
+ The bytes for this statement that will be written on the wire.
+
+
+
+
+ The names of the parameters (if known) of the parameters in the prepared statement. There
+ is one entry in this list for each parameter, which will be null if the name is unknown.
+
+
+
+
+ The indexes of the parameters in the prepared statement. There is one entry in this list for
+ each parameter; it will be -1 if the parameter is named.
+
+
+
+
+ wraps a collection of objects.
+ It implements to return the memory backing the statements to a shared pool.
+
+
+
+
+ is a statement that has been prepared on the MySQL Server.
+
+
+
+
+ Disposes and sets to null, ignoring any
+ or that is thrown.
+
+ An type.
+ The object to dispose.
+
+
+
+ Writes the text of to , encoded in UTF-8.
+
+ The command.
+ The cached procedures.
+ The output writer.
+ true if a complete command was written; otherwise, false.
+
+
+
+ The statement is complete (apart from potentially needing a semicolon or newline).
+
+
+
+
+ The statement needs a newline (e.g., to terminate a final comment).
+
+
+
+
+ The statement needs a semicolon (if another statement is going to be concatenated to it).
+
+
+
+
+ Implementations of write logs to a particular target.
+
+
+
+
+ Returns true if logging for this logger is enabled at the specified level.
+
+ The log level.
+ true if logging is enabled; otherwise, false.
+
+
+
+ Writes a log message to the target.
+
+ The log level.
+ The log message. See documentation for for notes on interpreting {0} within this string.
+ If not null or empty, then includes formatting placeholders (e.g., {0})
+ which must be replaced with the arguments in , using or similar.
+ If null or an empty array, then is a literal string; any curly braces within it must be treated as literal characters,
+ not formatting placeholders.
+ If not null, an associated with the log message.
+ This method may be called from multiple threads and must be thread-safe. This method may be called
+ even if would return false for ; the implementation must
+ check if logging is enabled for that level.
+
+
+
+ Implementations of create logger instances.
+
+
+
+
+ Creates a logger with the specified name. This method may be called from multiple threads and must be thread-safe.
+
+
+
+
+ Controls logging for MySqlConnector.
+
+
+
+
+ Allows the to be set for this library. can
+ be set once, and must be set before any other library methods are used.
+
+
+
+
+ is an implementation of that does nothing.
+
+ This is the default logging implementation unless is set.
+
+
+
+ Returns false.
+
+
+
+
+ Ignores the specified log message.
+
+
+
+
+ Returns a singleton instance of .
+
+
+
+
+ Creates loggers that do nothing.
+
+
+
+
+ Returns a .
+
+
+
+
+ implements the new
+ ADO.NET batching API.
+ It is currently experimental and may change in the future.
+ When using MariaDB (10.2 or later), the commands will be sent in a single batch, reducing network
+ round-trip time. With other MySQL Servers, this may be no more efficient than executing the commands
+ individually.
+ Example usage:
+
+ using var connection = new MySqlConnection("...connection string...");
+ await connection.OpenAsync();
+
+ using var batch = new MySqlBatch(connection)
+ {
+ BatchCommands =
+ {
+ new MySqlBatchCommand("INSERT INTO departments(name) VALUES(@name);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Sales"),
+ },
+ },
+ new MySqlBatchCommand("SET @dept_id = last_insert_id()"),
+ new MySqlBatchCommand("INSERT INTO employees(name, department_id) VALUES(@name, @dept_id);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Jim Halpert"),
+ },
+ },
+ new MySqlBatchCommand("INSERT INTO employees(name, department_id) VALUES(@name, @dept_id);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Dwight Schrute"),
+ },
+ },
+ },
+ };
+ await batch.ExecuteNonQueryAsync();
+
+
+ The proposed ADO.NET API that is based on is not finalized. This API is experimental and may change in the future.
+
+
+
+ Initializes a new object. The property must be set before this object can be used.
+
+
+
+
+ Initializes a new object, setting the and if specified.
+
+ (Optional) The to use.
+ (Optional) The to use.
+
+
+
+ The collection of commands that will be executed in the batch.
+
+
+
+
+ Executes all the commands in the batch, returning a that can iterate
+ over the result sets. If multiple resultsets are returned, use
+ to access them.
+
+
+
+
+ Executes all the commands in the batch, returning a that can iterate
+ over the result sets. If multiple resultsets are returned, use
+ to access them.
+
+ A token to cancel the asynchronous operation.
+ A containing the result of the asynchronous operation.
+
+
+
+ lets you efficiently load a MySQL Server table with data from another source.
+ It is similar to the SqlBulkCopy class
+ for SQL Server.
+ Due to security features
+ in MySQL Server, the connection string must have AllowLoadLocalInfile=true in order
+ to use this class.
+ For data that is in CSV or TSV format, use to bulk load the file.
+ Example code:
+
+ // NOTE: to copy data between tables in the same database, use INSERT ... SELECT
+ // https://dev.mysql.com/doc/refman/8.0/en/insert-select.html
+ var dataTable = GetDataTableFromExternalSource();
+
+ using var connection = new MySqlConnection("...;AllowLoadLocalInfile=True");
+ await connection.OpenAsync();
+ var bulkCopy = new MySqlBulkCopy(connection);
+ bulkCopy.DestinationTableName = "some_table_name";
+ await bulkCopy.WriteToServerAsync(dataTable);
+
+
+ Note: This API is a unique feature of MySqlConnector; you must
+ switch to MySqlConnector in order to use it.
+ This API is experimental and may change in the future.
+
+
+
+
+ Initializes a object with the specified connection, and optionally the active transaction.
+
+ The to use.
+ (Optional) The to use.
+
+
+
+ The number of seconds for the operation to complete before it times out, or 0 for no timeout.
+
+
+
+
+ The name of the table to insert rows into.
+
+ This name needs to be quoted if it contains special characters.
+
+
+
+ If non-zero, this specifies the number of rows to be processed before generating a notification event.
+
+
+
+
+ This event is raised every time that the number of rows specified by the property have been processed.
+
+
+ Receipt of a RowsCopied event does not imply that any rows have been sent to the server or committed.
+ The property can be set to true by the event handler to abort the copy.
+
+
+
+
+ A collection of objects. If the columns being copied from the
+ data source line up one-to-one with the columns in the destination table then populating this collection is
+ unnecessary. Otherwise, this should be filled with a collection of objects
+ specifying how source columns are to be mapped onto destination columns. If one column mapping is specified,
+ then all must be specified.
+
+
+
+
+ Returns the number of rows that were copied (after WriteToServer(Async)
finishes).
+
+
+
+
+ Copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ This method is not available on netstandard1.3.
+
+
+
+ Asynchronously copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ This method is not available on netstandard1.3.
+
+
+
+ Copies all rows in the supplied sequence of objects to the destination table specified by the
+ property of the object. The number of columns
+ to be read from the objects must be specified in advance.
+
+ The collection of objects.
+ The number of columns to copy (in each row).
+ This method is not available on netstandard1.3.
+
+
+
+ Asynchronously copies all rows in the supplied sequence of objects to the destination table specified by the
+ property of the object. The number of columns
+ to be read from the objects must be specified in advance.
+
+ The collection of objects.
+ The number of columns to copy (in each row).
+ A token to cancel the asynchronous operation.
+ This method is not available on netstandard1.3.
+
+
+
+ Copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ The to copy from.
+
+
+
+ Asynchronously copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ The to copy from.
+ A token to cancel the asynchronous operation.
+
+
+
+ Use to specify how to map columns in the source data to
+ columns in the destination table when using .
+ Set to the index of the source column to map. Set to
+ either the name of a column in the destination table, or the name of a user-defined variable.
+ If a user-defined variable, you can use to specify a MySQL expression that assigns
+ its value to destination column.
+ Source columns that don't have an entry in will be ignored
+ (unless the collection is empty, in which case all columns will be mapped
+ one-to-one).
+ MySqlConnector will transmit all binary data as hex, so any expression that operates on it
+ must decode it with the UNHEX function first. (This will be performed automatically if no
+ is specified, but will be necessary to specify manually for more complex expressions.)
+ Example code:
+
+ new MySqlBulkCopyColumnMapping
+ {
+ SourceOrdinal = 2,
+ DestinationColumn = "user_name",
+ },
+ new MySqlBulkCopyColumnMapping
+ {
+ SourceOrdinal = 0,
+ DestinationColumn = "@tmp",
+ Expression = "column_value = @tmp * 2",
+ },
+
+
+
+
+
+ Initializes with the default values.
+
+
+
+
+ Initializes to the specified values.
+
+ The ordinal position of the source column.
+ The name of the destination column.
+ The optional expression to be used to set the destination column.
+
+
+
+ The ordinal position of the source column to map from.
+
+
+
+
+ The name of the destination column to copy to. To use an expression, this should be the name of a unique user-defined variable.
+
+
+
+
+ An optional expression for setting a destination column. To use an expression, the should
+ be set to the name of a user-defined variable and this expression should set a column using that variable.
+
+ To populate a binary column, you must set to a variable name, and to an
+ expression that uses UNHEX
to set the column value, e.g., `destColumn` = UNHEX(@variableName)
.
+
+
+
+ lets you efficiently load a MySQL Server Table with data from a CSV or TSV file or .
+ Example code:
+
+ using var connection = new MySqlConnection("...;AllowLoadLocalInfile=True");
+ await connection.OpenAsync();
+ var bulkLoader = new MySqlBulkLoader(connection)
+ {
+ FileName = @"C:\Path\To\file.csv",
+ TableName = "destination",
+ CharacterSet = "UTF8",
+ NumberOfLinesToSkip = 1,
+ FieldTerminator = ",",
+ FieldQuotationCharacter = '"',
+ FieldQuotationOptional = true,
+ Local = true,
+ }
+ var rowCount = await bulkLoader.LoadAsync();
+
+
+ Due to security features
+ in MySQL Server, the connection string must have AllowLoadLocalInfile=true in order to use a local source.
+
+
+
+
+ (Optional) The character set of the source data. By default, the database's character set is used.
+
+
+
+
+ (Optional) A list of the column names in the destination table that should be filled with data from the input file.
+
+
+
+
+ A value that specifies how conflicts are resolved (default ).
+
+
+
+
+ The to use.
+
+
+
+
+ (Optional) The character used to escape instances of within field values.
+
+
+
+
+ (Optional) A list of expressions used to set field values from the columns in the source data.
+
+
+
+
+ (Optional) The character used to enclose fields in the source data.
+
+
+
+
+ Whether quoting fields is optional (default false).
+
+
+
+
+ (Optional) The string fields are terminated with.
+
+
+
+
+ The name of the local (if is true) or remote (otherwise) file to load.
+ Either this or must be set.
+
+
+
+
+ (Optional) A prefix in each line that should be skipped when loading.
+
+
+
+
+ (Optional) The string lines are terminated with.
+
+
+
+
+ Whether a local file is being used (default true).
+
+
+
+
+ The number of lines to skip at the beginning of the file (default 0).
+
+
+
+
+ A giving the priority to load with (default ).
+
+
+
+
+ A containing the data to load. Either this or must be set.
+ The property must be true if this is set.
+
+
+
+
+ The name of the table to load into. If this is a reserved word or contains spaces, it must be quoted.
+
+
+
+
+ The timeout (in milliseconds) to use.
+
+
+
+
+ Initializes a new instance of the class with the specified .
+
+ The to use.
+
+
+
+ Loads all data in the source file or stream into the destination table.
+
+ The number of rows inserted.
+
+
+
+ Asynchronously loads all data in the source file or stream into the destination table.
+
+ A that will be completed with the number of rows inserted.
+
+
+
+ Asynchronously loads all data in the source file or stream into the destination table.
+
+ A token to cancel the asynchronous operation.
+ A that will be completed with the number of rows inserted.
+
+
+
+ Do not use certificate store
+
+
+
+
+ Use certificate store for the current user
+
+
+
+
+ User certificate store for the machine
+
+
+
+
+ represents a SQL statement or stored procedure name
+ to execute against a MySQL database.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class, setting to .
+
+ The text to assign to .
+
+
+
+ Initializes a new instance of the class with the specified and .
+
+ The to use.
+ The active , if any.
+
+
+
+ Initializes a new instance of the class with the specified command text and .
+
+ The text to assign to .
+ The to use.
+
+
+
+ Initializes a new instance of the class with the specified command text,, and .
+
+ The text to assign to .
+ The to use.
+ The active , if any.
+
+
+
+ The collection of objects for this command.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Holds the first automatically-generated ID for a value inserted in an AUTO_INCREMENT column in the last statement.
+
+
+ See LAST_INSERT_ID() for more information.
+
+
+
+
+ Registers as a callback with if cancellation is supported.
+
+ The .
+ An object that must be disposed to revoke the cancellation registration.
+ This method is more efficient than calling token.Register(Command.Cancel)
because it avoids
+ unnecessary allocations.
+
+
+
+ represents a connection to a MySQL database.
+
+
+
+
+ Begins a database transaction.
+
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction.
+
+ The for the transaction.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction.
+
+ The for the transaction.
+ If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ The for the transaction.
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ The for the transaction.
+ If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Resets the session state of the current open connection; this clears temporary tables and user-defined variables.
+
+ A token to cancel the asynchronous operation.
+ A ValueTask representing the asynchronous operation.
+ This is an optional feature of the MySQL protocol and may not be supported by all servers.
+ It's known to be supported by MySQL Server 5.7.3 (and later) and MariaDB 10.2.4 (and later).
+ Other MySQL-compatible servers or proxies may not support this command.
+
+
+
+ The connection ID from MySQL Server.
+
+
+
+
+ Clears the connection pool that belongs to.
+
+ The whose connection pool will be cleared.
+
+
+
+ Asynchronously clears the connection pool that belongs to.
+
+ The whose connection pool will be cleared.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+
+
+
+ Clears all connection pools.
+
+
+
+
+ Asynchronously clears all connection pools.
+
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+
+
+
+ Returns schema information for the data source of this .
+
+ A containing schema information.
+
+
+
+ Returns schema information for the data source of this .
+
+ The name of the schema to return.
+ A containing schema information.
+
+
+
+ Returns schema information for the data source of this .
+
+ The name of the schema to return.
+ The restrictions to apply to the schema; this parameter is currently ignored.
+ A containing schema information.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ The name of the schema to return.
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ The name of the schema to return.
+ The restrictions to apply to the schema; this parameter is currently ignored.
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Gets the time (in seconds) to wait while trying to establish a connection
+ before terminating the attempt and generating an error. This value
+ is controlled by ,
+ which defaults to 15 seconds.
+
+
+
+
+ Creates a object for executing batched commands.
+
+
+
+
+
+ Creates a object (that can be used with ).
+
+
+
+
+
+ Returns an unopened copy of this connection with a new connection string. If the Password
+ in is not set, the password from this connection will be used.
+ This allows creating a new connection with the same security information while changing other options,
+ such as database or pooling.
+
+ The new connection string to be used.
+ A new with different connection string options but
+ the same password as this connection (unless overridden by ).
+
+
+
+ Specifies the type of connection to make to the server.
+
+
+
+
+ TCP/IP connection.
+
+
+
+
+ Named pipe connection. Only works on Windows.
+
+
+
+
+ Unix domain socket connection. Only works on Unix/Linux.
+
+
+
+
+ Shared memory connection. Not currently supported.
+
+
+
+
+ The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error.
+ The default value is 15.
+
+
+
+
+ An implementation of that creates MySqlConnector objects.
+
+
+
+
+ Provides an instance of that can create MySqlConnector objects.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Returns false.
+
+ is not supported by MySqlConnector.
+
+
+
+ Returns true.
+
+
+
+
+ Returns true.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Returns true.
+
+
+
+
+ Returns a that contains metadata about the columns in the result set.
+
+ A containing metadata about the columns in the result set.
+
+
+
+ Returns a that contains metadata about the columns in the result set.
+
+ A token to cancel the operation.
+ A containing metadata about the columns in the result set.
+ This method runs synchronously; prefer to call to avoid the overhead of allocating an unnecessary Task.
+
+
+
+ Returns metadata about the columns in the result set.
+
+ A containing metadata about the result set.
+
+
+
+ Returns metadata about the columns in the result set.
+
+ A token to cancel the operation.
+ A containing containing metadata about the result set.
+ This method runs synchronously; prefer to call to avoid the overhead of allocating an unnecessary Task.
+
+
+
+ The used when reading from the database.
+
+
+
+
+ Use when reading; allow any in command parameters.
+
+
+
+
+ Use when reading; reject in command parameters.
+
+
+
+
+ Use when reading; reject in command parameters.
+
+
+
+
+ MySQL Server error codes. Taken from Server Error Codes and Messages.
+
+
+
+
+ Not all rows from the source supplied to were copied to .
+
+
+
+
+ The timeout period specified by elapsed before the operation completed.
+
+
+
+
+ ER_HASHCHK
+
+
+
+
+ ER_NISAMCHK
+
+
+
+
+ ER_NO
+
+
+
+
+ ER_YES
+
+
+
+
+ ER_CANT_CREATE_FILE
+
+
+
+
+ ER_CANT_CREATE_TABLE
+
+
+
+
+ ER_CANT_CREATE_DB
+
+
+
+
+ ER_DB_CREATE_EXISTS
+
+
+
+
+ ER_DB_DROP_EXISTS
+
+
+
+
+ ER_DB_DROP_DELETE
+
+
+
+
+ ER_DB_DROP_RMDIR
+
+
+
+
+ ER_CANT_DELETE_FILE
+
+
+
+
+ ER_CANT_FIND_SYSTEM_REC
+
+
+
+
+ ER_CANT_GET_STAT
+
+
+
+
+ ER_CANT_GET_WD
+
+
+
+
+ ER_CANT_LOCK
+
+
+
+
+ ER_CANT_OPEN_FILE
+
+
+
+
+ ER_FILE_NOT_FOUND
+
+
+
+
+ ER_CANT_READ_DIR
+
+
+
+
+ ER_CANT_SET_WD
+
+
+
+
+ ER_CHECKREAD
+
+
+
+
+ ER_DISK_FULL
+
+
+
+
+ ER_DUP_KEY
+
+
+
+
+ ER_ERROR_ON_CLOSE
+
+
+
+
+ ER_ERROR_ON_READ
+
+
+
+
+ ER_ERROR_ON_RENAME
+
+
+
+
+ ER_ERROR_ON_WRITE
+
+
+
+
+ ER_FILE_USED
+
+
+
+
+ ER_FILSORT_ABORT
+
+
+
+
+ ER_FORM_NOT_FOUND
+
+
+
+
+ ER_GET_ERRNO
+
+
+
+
+ ER_ILLEGAL_HA
+
+
+
+
+ ER_KEY_NOT_FOUND
+
+
+
+
+ ER_NOT_FORM_FILE
+
+
+
+
+ ER_NOT_KEYFILE
+
+
+
+
+ ER_OLD_KEYFILE
+
+
+
+
+ ER_OPEN_AS_READONLY
+
+
+
+
+ ER_OUTOFMEMORY
+
+
+
+
+ ER_OUT_OF_SORTMEMORY
+
+
+
+
+ ER_UNEXPECTED_EOF
+
+
+
+
+ ER_CON_COUNT_ERROR
+
+
+
+
+ ER_OUT_OF_RESOURCES
+
+
+
+
+ ER_BAD_HOST_ERROR
+
+
+
+
+ ER_HANDSHAKE_ERROR
+
+
+
+
+ ER_DBACCESS_DENIED_ERROR
+
+
+
+
+ ER_ACCESS_DENIED_ERROR
+
+
+
+
+ ER_NO_DB_ERROR
+
+
+
+
+ ER_UNKNOWN_COM_ERROR
+
+
+
+
+ ER_BAD_NULL_ERROR
+
+
+
+
+ ER_BAD_DB_ERROR
+
+
+
+
+ ER_TABLE_EXISTS_ERROR
+
+
+
+
+ ER_BAD_TABLE_ERROR
+
+
+
+
+ ER_NON_UNIQ_ERROR
+
+
+
+
+ ER_SERVER_SHUTDOWN
+
+
+
+
+ ER_BAD_FIELD_ERROR
+
+
+
+
+ ER_WRONG_FIELD_WITH_GROUP
+
+
+
+
+ ER_WRONG_GROUP_FIELD
+
+
+
+
+ ER_WRONG_SUM_SELECT
+
+
+
+
+ ER_WRONG_VALUE_COUNT
+
+
+
+
+ ER_TOO_LONG_IDENT
+
+
+
+
+ ER_DUP_FIELDNAME
+
+
+
+
+ ER_DUP_KEYNAME
+
+
+
+
+ ER_DUP_ENTRY
+
+
+
+
+ ER_WRONG_FIELD_SPEC
+
+
+
+
+ You have an error in your SQL syntax (ER_PARSE_ERROR).
+
+
+
+
+ ER_EMPTY_QUERY
+
+
+
+
+ ER_NONUNIQ_TABLE
+
+
+
+
+ ER_INVALID_DEFAULT
+
+
+
+
+ ER_MULTIPLE_PRI_KEY
+
+
+
+
+ ER_TOO_MANY_KEYS
+
+
+
+
+ ER_TOO_MANY_KEY_PARTS
+
+
+
+
+ ER_TOO_LONG_KEY
+
+
+
+
+ ER_KEY_COLUMN_DOES_NOT_EXITS
+
+
+
+
+ ER_BLOB_USED_AS_KEY
+
+
+
+
+ ER_TOO_BIG_FIELDLENGTH
+
+
+
+
+ ER_WRONG_AUTO_KEY
+
+
+
+
+ ER_READY
+
+
+
+
+ ER_NORMAL_SHUTDOWN
+
+
+
+
+ ER_GOT_SIGNAL
+
+
+
+
+ ER_SHUTDOWN_COMPLETE
+
+
+
+
+ ER_FORCING_CLOSE
+
+
+
+
+ ER_IPSOCK_ERROR
+
+
+
+
+ ER_NO_SUCH_INDEX
+
+
+
+
+ ER_WRONG_FIELD_TERMINATORS
+
+
+
+
+ ER_BLOBS_AND_NO_TERMINATED
+
+
+
+
+ ER_TEXTFILE_NOT_READABLE
+
+
+
+
+ ER_FILE_EXISTS_ERROR
+
+
+
+
+ ER_LOAD_INFO
+
+
+
+
+ ER_ALTER_INFO
+
+
+
+
+ ER_WRONG_SUB_KEY
+
+
+
+
+ ER_CANT_REMOVE_ALL_FIELDS
+
+
+
+
+ ER_CANT_DROP_FIELD_OR_KEY
+
+
+
+
+ ER_INSERT_INFO
+
+
+
+
+ ER_UPDATE_TABLE_USED
+
+
+
+
+ ER_NO_SUCH_THREAD
+
+
+
+
+ ER_KILL_DENIED_ERROR
+
+
+
+
+ ER_NO_TABLES_USED
+
+
+
+
+ ER_TOO_BIG_SET
+
+
+
+
+ ER_NO_UNIQUE_LOGFILE
+
+
+
+
+ ER_TABLE_NOT_LOCKED_FOR_WRITE
+
+
+
+
+ ER_TABLE_NOT_LOCKED
+
+
+
+
+ ER_BLOB_CANT_HAVE_DEFAULT
+
+
+
+
+ ER_WRONG_DB_NAME
+
+
+
+
+ ER_WRONG_TABLE_NAME
+
+
+
+
+ ER_TOO_BIG_SELECT
+
+
+
+
+ ER_UNKNOWN_ERROR
+
+
+
+
+ ER_UNKNOWN_PROCEDURE
+
+
+
+
+ ER_WRONG_PARAMCOUNT_TO_PROCEDURE
+
+
+
+
+ ER_WRONG_PARAMETERS_TO_PROCEDURE
+
+
+
+
+ ER_UNKNOWN_TABLE
+
+
+
+
+ ER_FIELD_SPECIFIED_TWICE
+
+
+
+
+ ER_INVALID_GROUP_FUNC_USE
+
+
+
+
+ ER_UNSUPPORTED_EXTENSION
+
+
+
+
+ ER_TABLE_MUST_HAVE_COLUMNS
+
+
+
+
+ ER_RECORD_FILE_FULL
+
+
+
+
+ ER_UNKNOWN_CHARACTER_SET
+
+
+
+
+ ER_TOO_MANY_TABLES
+
+
+
+
+ ER_TOO_MANY_FIELDS
+
+
+
+
+ ER_TOO_BIG_ROWSIZE
+
+
+
+
+ ER_STACK_OVERRUN
+
+
+
+
+ ER_WRONG_OUTER_JOIN
+
+
+
+
+ ER_NULL_COLUMN_IN_INDEX
+
+
+
+
+ ER_CANT_FIND_UDF
+
+
+
+
+ ER_CANT_INITIALIZE_UDF
+
+
+
+
+ ER_UDF_NO_PATHS
+
+
+
+
+ ER_UDF_EXISTS
+
+
+
+
+ ER_CANT_OPEN_LIBRARY
+
+
+
+
+ ER_CANT_FIND_DL_ENTRY
+
+
+
+
+ ER_FUNCTION_NOT_DEFINED
+
+
+
+
+ ER_HOST_IS_BLOCKED
+
+
+
+
+ ER_HOST_NOT_PRIVILEGED
+
+
+
+
+ ER_PASSWORD_ANONYMOUS_USER
+
+
+
+
+ ER_PASSWORD_NOT_ALLOWED
+
+
+
+
+ ER_PASSWORD_NO_MATCH
+
+
+
+
+ ER_UPDATE_INFO
+
+
+
+
+ ER_CANT_CREATE_THREAD
+
+
+
+
+ ER_WRONG_VALUE_COUNT_ON_ROW
+
+
+
+
+ ER_CANT_REOPEN_TABLE
+
+
+
+
+ ER_INVALID_USE_OF_NULL
+
+
+
+
+ ER_REGEXP_ERROR
+
+
+
+
+ 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_UNUSED1
+
+
+
+
+ ER_UNUSED2
+
+
+
+
+ ER_ABORTING_CONNECTION
+
+
+
+
+ ER_NET_PACKET_TOO_LARGE
+
+
+
+
+ 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_UNUSED3
+
+
+
+
+ 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
+
+
+
+
+ Query execution was interrupted (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_OBSOLETE_COL_COUNT_DOESNT_MATCH_CORRUPTED
+
+
+
+
+ ER_OBSOLETE_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_OLD_UNUSED
+
+
+
+
+ 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_TX_CHARACTERISTICS
+
+
+
+
+ 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_NEVER_USED
+
+
+
+
+ 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_CANT_EXECUTE_IN_READ_ONLY_TRANSACTION
+
+
+
+
+ is thrown when MySQL Server returns an error code, or there is a
+ communication error with the server.
+
+
+
+
+ A value identifying the kind of error. Prefer to use the property.
+
+
+
+
+ A value identifying the kind of error.
+
+
+
+
+ A SQLSTATE code identifying the kind of error.
+
+ See SQLSTATE for more information.
+
+
+
+ Represents MySQL's internal GEOMETRY format: https://dev.mysql.com/doc/refman/8.0/en/gis-data-formats.html#gis-internal-format
+
+
+
+
+ Constructs a from a SRID and Well-known Binary bytes.
+
+ The SRID (Spatial Reference System ID).
+ The Well-known Binary serialization of the geometry.
+ A new containing the specified geometry.
+
+
+
+ Constructs a from MySQL's internal format.
+
+ The raw bytes of MySQL's internal GEOMETRY format.
+ A new containing the specified geometry.
+ See Internal Geometry Storage Format.
+
+
+
+ The Spatial Reference System ID of this geometry.
+
+
+
+
+ The Well-known Binary serialization of this geometry.
+
+
+
+
+ The internal MySQL form of this geometry.
+
+
+
+
+ Determines which column type (if any) should be read as a System.Guid.
+
+
+
+
+ Same as Char36 if OldGuids=False; same as LittleEndianBinary16 if OldGuids=True.
+
+
+
+
+ No column types are read/written as a Guid
.
+
+
+
+
+ All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens,
+ which matches UUID().
+
+
+
+
+ All CHAR(32) columns are read/written as a Guid using lowercase hex without hyphens.
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using big-endian byte order,
+ which matches UUID_TO_BIN(x).
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using big-endian byte order with time parts swapped,
+ which matches UUID_TO_BIN(x,1).
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using little-endian byte order, i.e. the byte order
+ used by and .
+
+
+
+
+ Escapes single and double quotes, and backslashes in .
+
+
+
+
+ Each new connection opened for a connection pool uses the next host name (sequentially with wraparound).
+
+
+
+
+ Each new connection tries to connect to the first host; subsequent hosts are used only if connecting to the first one fails.
+
+
+
+
+ Servers are tried in random order.
+
+
+
+
+ Servers are tried in ascending order of number of currently-open connections.
+
+
+
+
+ Gets or sets a value that indicates whether the bulk copy operation should be aborted.
+
+
+
+
+ Gets a value that returns the number of rows copied during the current bulk copy operation.
+
+
+
+
+ Represents the method that handles the event of a .
+
+
+
+
+ SSL connection options.
+
+
+
+
+ Do not use SSL.
+
+
+
+
+ Use SSL if the server supports it.
+
+
+
+
+ Always use SSL. Deny connection if server does not support SSL.
+
+
+
+
+ Always use SSL. Validate the Certificate Authority but tolerate name mismatch.
+
+
+
+
+ Always use SSL. Fail if the host name is not correct.
+
+
+
+
+ Removes the named transaction savepoint with the specified . No commit or rollback occurs.
+
+ The savepoint name.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously removes the named transaction savepoint with the specified . No commit or rollback occurs.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Rolls back the current transaction to the savepoint with the specified without aborting the transaction.
+
+ The savepoint name.
+ The name must have been created with , but not released by calling .
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously rolls back the current transaction to the savepoint with the specified without aborting the transaction.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The name must have been created with , but not released by calling .
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Sets a named transaction savepoint with the specified . If the current transaction
+ already has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+ The savepoint name.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously sets a named transaction savepoint with the specified . If the current transaction
+ already has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ MySQL character set codes.
+
+ Obtained from SELECT id, collation_name FROM information_schema.collations ORDER BY id; on MySQL 8.0.16.
+
+
+
+ Field cannot be NULL.
+
+
+
+
+ Field is part of a primary key.
+
+
+
+
+ Field is part of a unique key.
+
+
+
+
+ Field is part of a nonunique key.
+
+
+
+
+ Field is a BLOB or TEXT (deprecated).
+
+
+
+
+ Field has the UNSIGNED attribute.
+
+
+
+
+ Field has the ZEROFILL attribute.
+
+
+
+
+ Field has the BINARY attribute.
+
+
+
+
+ Field is an ENUM.
+
+
+
+
+ Field has the AUTO_INCREMENT attribute.
+
+
+
+
+ Field is a TIMESTAMP (deprecated).
+
+
+
+
+ Field is a SET.
+
+
+
+
+ Field is numeric.
+
+
+
+
+ See MySQL documentation.
+
+
+
+
+ Returns true if contains an EOF packet.
+ Note that EOF packets can appear in places where a length-encoded integer (which starts with the same signature byte) may appear, so the length
+ has to be checked to verify that it is an EOF packet.
+
+ The payload to examine.
+ true if this is an EOF packet; otherwise, false.
+
+
+
+ The MySQL Capability flags.
+
+
+
+
+ No specified capabilities.
+
+
+
+
+ Use the improved version of Old Password Authentication.
+
+
+
+
+ Send found rows instead of affected rows in EOF_Packet.
+
+
+
+
+ Longer flags in Protocol::ColumnDefinition320.
+
+
+
+
+ Database (schema) name can be specified on connect in Handshake Response Packet.
+
+
+
+
+ Do not permit database.table.column.
+
+
+
+
+ Supports compression.
+
+
+
+
+ Special handling of ODBC behavior.
+
+
+
+
+ Enables the LOCAL INFILE request of LOAD DATA|XML.
+
+
+
+
+ Parser can ignore spaces before '('.
+
+
+
+
+ Supports the 4.1 protocol.
+
+
+
+
+ Server: Supports interactive and noninteractive clients. Client: The session wait_timeout
variable is set to the value of the session interactive_timeout
variable.
+
+
+
+
+ Supports SSL.
+
+
+
+
+ Can send status flags in EOF_Packet.
+
+
+
+
+ Supports Authentication::Native41.
+
+
+
+
+ Can handle multiple statements per COM_QUERY and COM_STMT_PREPARE.
+
+
+
+
+ Can send multiple resultsets for COM_QUERY.
+
+
+
+
+ Can send multiple resultsets for COM_STMT_EXECUTE.
+
+
+
+
+ Sends extra data in Initial Handshake Packet and supports the pluggable authentication protocol.
+
+
+
+
+ Permits connection attributes in Protocol::HandshakeResponse41.
+
+
+
+
+ Understands length-encoded integer for auth response data in Protocol::HandshakeResponse41.
+
+
+
+
+ Announces support for expired password extension.
+
+
+
+
+ Can set SERVER_SESSION_STATE_CHANGED in the Status Flags and send session-state change data after a OK packet.
+
+
+
+
+ Can send OK after a Text Resultset.
+
+
+
+
+ Client supports progress indicator.
+
+
+
+
+ Client supports COM_MULTI (i.e., CommandKind.Multi)
+
+
+
+
+ Support of array binding.
+
+
+
+
+ is a class that holds an instance of .
+ Its primary difference from is that it's a reference type, so mutations
+ to this object are visible to other objects that hold a reference to it.
+
+
+
+
+ Hashes a password with the "Secure Password Authentication" method.
+
+ The 20-byte random challenge (from the "auth-plugin-data" in the initial handshake).
+ The password to hash.
+ A 20-byte password hash.
+ See Secure Password Authentication.
+
+
+
+ Helper class to translate NegotiateStream framing for SPNEGO token
+ into MySQL protocol packets.
+
+ Serves as underlying stream for System.Net.NegotiateStream
+ to perform MariaDB's auth_gssapi_client authentication.
+
+ NegotiateStream protocol is described in e.g here
+ https://winprotocoldoc.blob.core.windows.net/productionwindowsarchives/MS-NNS/[MS-NNS].pdf
+ We only use Handshake Messages for authentication.
+
+
+
+
+ The remaining timeout (in milliseconds) for the next I/O read. Use to represent no (or, infinite) timeout.
+
+
+
+
+ Reads data from this byte handler.
+
+ The buffer to read into.
+ The to use when reading data.
+ A holding the number of bytes read. If reading failed, this will be zero.
+
+
+
+ Writes data to this byte handler.
+
+ The data to write.
+ The to use when writing.
+ A . The value of this object is not defined.
+
+
+
+ Specifies whether to perform synchronous or asynchronous I/O.
+
+
+
+
+ Use synchronous I/O.
+
+
+
+
+ Use asynchronous I/O.
+
+
+
+
+ Starts a new "conversation" with the MySQL Server. This resets the "sequence id"
+ and should be called when a new command begins.
+
+
+
+
+ Gets or sets the underlying that data is read from and written to.
+
+
+
+
+ Reads the next payload.
+
+ An that will cache any buffers allocated during this
+ read. (To disable caching, pass new ArraySegmentHolder<byte>
so the cache will be garbage-collected
+ when this method returns.)
+ The to use if there is a protocol error.
+ The to use when reading data.
+ An containing the data that was read. This
+ will be valid to read from until the next time or
+ is called.
+
+
+
+ Writes a payload.
+
+ The data to write.
+ The to use when writing.
+ A . The value of this object is not defined.
+
+
+
+ Specifies how to handle protocol errors.
+
+
+
+
+ Throw an exception when there is a protocol error. This is the default.
+
+
+
+
+ Ignore any protocol errors.
+
+
+
+
+ A transaction is active.
+
+
+
+
+ Auto-commit is enabled
+
+
+
+
+ Used by Binary Protocol Resultset to signal that COM_STMT_FETCH must be used to fetch the row-data.
+
+
+
+
+ In a read-only transaction.
+
+
+
+
+ Connection state information has changed.
+
+
+
+
+ SESSION_TRACK_SYSTEM_VARIABLES: one or more system variables changed
+
+
+
+
+ SESSION_TRACK_SCHEMA: schema changed
+
+
+
+
+ SESSION_TRACK_STATE_CHANGE: "track state change" changed
+
+
+
+
+ SESSION_TRACK_GTIDS: "track GTIDs" changed
+
+
+
+
+ A sentinel value indicating no (or infinite) timeout.
+
+
+
+
+ A wrapper around a resizable array. This type is intended to be used with .
+
+
+
+
+ Do not call this method directly; use .
+
+
+
+
+ An that supports having its underlying array reallocated and resized.
+
+
+
+
+ Adds a timer that will invoke in approximately milliseconds.
+
+ The time (in milliseconds) to wait before invoking .
+ The callback to invoke.
+ A timer ID that can be passed to to cancel the timer.
+
+
+
+ Cancels the timer with the specified ID.
+
+ The timer ID (returned from ).
+ true if the timer was removed; otherwise, false. This method will return false if the specified timer has already fired.
+
+
+
+ Loads a RSA key from a PEM string.
+
+ The key, in PEM format.
+ An RSA key.
+
+
+
+ Returns a new that starts at index into .
+
+ The from which to create a slice.
+ The non-negative, zero-based starting index of the new slice (relative to of .
+ A new starting at the th element of and continuing to the end of .
+
+
+
+ Returns a new that starts at index into and has a length of .
+
+ The from which to create a slice.
+ The non-negative, zero-based starting index of the new slice (relative to of .
+ The non-negative length of the new slice.
+ A new of length , starting at the th element of .
+
+
+
+ Returns a new that is a slice of starting at .
+
+ The array to slice.
+ The offset at which to slice.
+ The length of the slice.
+ A new that is a slice of from to the end.
+
+
+
+ Finds the next index of in , starting at index .
+
+ The array to search.
+ The offset at which to start searching.
+ The pattern to find in .
+ The offset of within , or -1 if was not found.
+
+
+
+ Resizes to hold at least items.
+
+ may be null, in which case a new will be allocated.
+
+
+
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netcoreapp2.1/MySqlConnector.dll b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netcoreapp2.1/MySqlConnector.dll
new file mode 100644
index 0000000..f49219b
Binary files /dev/null and b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netcoreapp2.1/MySqlConnector.dll differ
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netcoreapp2.1/MySqlConnector.xml b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netcoreapp2.1/MySqlConnector.xml
new file mode 100644
index 0000000..3cec9a9
--- /dev/null
+++ b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netcoreapp2.1/MySqlConnector.xml
@@ -0,0 +1,5042 @@
+
+
+
+ MySqlConnector
+
+
+
+
+ A registry of known authentication plugins.
+
+
+
+
+ Registers the specified authentication plugin. The name of this plugin must be unique.
+
+ The authentication plugin.
+
+
+
+ The primary interface implemented by an authentication plugin.
+
+
+
+
+ The authentication plugin name.
+
+
+
+
+ Creates the authentication response.
+
+ The client's password.
+ The authentication data supplied by the server; this is the auth method data
+ from the Authentication
+ Method Switch Request Packet.
+
+
+
+
+ encapsulates a list of and the current position within that list.
+
+
+
+
+ The commands in the list.
+
+
+
+
+ The index of the current command.
+
+
+
+
+ If the current command is a prepared statement, the index of the current prepared statement for that command.
+
+
+
+
+ Returns true if the connection pool is empty, i.e., all connections are in use. Note that in a highly-multithreaded
+ environment, the value of this property may be stale by the time it's returned.
+
+
+
+
+ Returns the stored procedure cache for this , lazily creating it on demand.
+ This method may return a different object after has been called. The returned
+ object is shared between multiple threads and is only safe to use after taking a lock on the
+ object itself.
+
+
+
+
+ Examines all the objects in to determine if any
+ have an owning that has been garbage-collected. If so, assumes that the connection
+ was not properly disposed and returns the session to the pool.
+
+
+
+
+ The that was used to create this .!--
+ This object must not be mutated.
+
+
+
+
+ provides an internal abstraction over operations that can be cancelled: and .
+
+
+
+
+ Returns a unique ID for all implementations of .
+
+
+
+
+
+ Causes the effective command timeout to be reset back to the value specified by .
+
+ As per the MSDN documentation,
+ "This property is the cumulative time-out (for all network packets that are read during the invocation of a method) for all network reads during command
+ execution or processing of the results. A time-out can still occur after the first row is returned, and does not include user processing time, only network
+ read time. For example, with a 30 second time out, if Read requires two network packets, then it has 30 seconds to read both network packets. If you call
+ Read again, it will have another 30 seconds to read any data that it requires."
+ The method is called by public ADO.NET API methods to reset the effective time remaining at the beginning of a new
+ method call.
+
+
+
+ creates the data for an "execute query" command for one or more objects in a command list.
+
+
+
+
+ Writes the payload for an "execute query" command to .
+
+ The command list and its current position. This will be updated to the position of the next command to write (or past the end if there are no more commands).
+ A for all the stored procedures in the command list, if any.
+ The to write the payload to.
+ true if a command was written; otherwise, false (if there were no more commands in the list).
+
+
+
+ Returns an containing in the order they
+ should be tried to satisfy the load balancing policy.
+
+
+
+
+ provides an internal abstraction over and .
+
+
+
+
+ provides an abstraction over iterating through a sequence of
+ rows, where each row can fill an array of field values.
+
+
+
+
+ represents an individual SQL statement that's been parsed
+ from a string possibly containing multiple semicolon-delimited SQL statements.
+
+
+
+
+ The bytes for this statement that will be written on the wire.
+
+
+
+
+ The names of the parameters (if known) of the parameters in the prepared statement. There
+ is one entry in this list for each parameter, which will be null if the name is unknown.
+
+
+
+
+ The indexes of the parameters in the prepared statement. There is one entry in this list for
+ each parameter; it will be -1 if the parameter is named.
+
+
+
+
+ wraps a collection of objects.
+ It implements to return the memory backing the statements to a shared pool.
+
+
+
+
+ is a statement that has been prepared on the MySQL Server.
+
+
+
+
+ Disposes and sets to null, ignoring any
+ or that is thrown.
+
+ An type.
+ The object to dispose.
+
+
+
+ Writes the text of to , encoded in UTF-8.
+
+ The command.
+ The cached procedures.
+ The output writer.
+ true if a complete command was written; otherwise, false.
+
+
+
+ The statement is complete (apart from potentially needing a semicolon or newline).
+
+
+
+
+ The statement needs a newline (e.g., to terminate a final comment).
+
+
+
+
+ The statement needs a semicolon (if another statement is going to be concatenated to it).
+
+
+
+
+ Implementations of write logs to a particular target.
+
+
+
+
+ Returns true if logging for this logger is enabled at the specified level.
+
+ The log level.
+ true if logging is enabled; otherwise, false.
+
+
+
+ Writes a log message to the target.
+
+ The log level.
+ The log message. See documentation for for notes on interpreting {0} within this string.
+ If not null or empty, then includes formatting placeholders (e.g., {0})
+ which must be replaced with the arguments in , using or similar.
+ If null or an empty array, then is a literal string; any curly braces within it must be treated as literal characters,
+ not formatting placeholders.
+ If not null, an associated with the log message.
+ This method may be called from multiple threads and must be thread-safe. This method may be called
+ even if would return false for ; the implementation must
+ check if logging is enabled for that level.
+
+
+
+ Implementations of create logger instances.
+
+
+
+
+ Creates a logger with the specified name. This method may be called from multiple threads and must be thread-safe.
+
+
+
+
+ Controls logging for MySqlConnector.
+
+
+
+
+ Allows the to be set for this library. can
+ be set once, and must be set before any other library methods are used.
+
+
+
+
+ is an implementation of that does nothing.
+
+ This is the default logging implementation unless is set.
+
+
+
+ Returns false.
+
+
+
+
+ Ignores the specified log message.
+
+
+
+
+ Returns a singleton instance of .
+
+
+
+
+ Creates loggers that do nothing.
+
+
+
+
+ Returns a .
+
+
+
+
+ implements the new
+ ADO.NET batching API.
+ It is currently experimental and may change in the future.
+ When using MariaDB (10.2 or later), the commands will be sent in a single batch, reducing network
+ round-trip time. With other MySQL Servers, this may be no more efficient than executing the commands
+ individually.
+ Example usage:
+
+ using var connection = new MySqlConnection("...connection string...");
+ await connection.OpenAsync();
+
+ using var batch = new MySqlBatch(connection)
+ {
+ BatchCommands =
+ {
+ new MySqlBatchCommand("INSERT INTO departments(name) VALUES(@name);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Sales"),
+ },
+ },
+ new MySqlBatchCommand("SET @dept_id = last_insert_id()"),
+ new MySqlBatchCommand("INSERT INTO employees(name, department_id) VALUES(@name, @dept_id);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Jim Halpert"),
+ },
+ },
+ new MySqlBatchCommand("INSERT INTO employees(name, department_id) VALUES(@name, @dept_id);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Dwight Schrute"),
+ },
+ },
+ },
+ };
+ await batch.ExecuteNonQueryAsync();
+
+
+ The proposed ADO.NET API that is based on is not finalized. This API is experimental and may change in the future.
+
+
+
+ Initializes a new object. The property must be set before this object can be used.
+
+
+
+
+ Initializes a new object, setting the and if specified.
+
+ (Optional) The to use.
+ (Optional) The to use.
+
+
+
+ The collection of commands that will be executed in the batch.
+
+
+
+
+ Executes all the commands in the batch, returning a that can iterate
+ over the result sets. If multiple resultsets are returned, use
+ to access them.
+
+
+
+
+ Executes all the commands in the batch, returning a that can iterate
+ over the result sets. If multiple resultsets are returned, use
+ to access them.
+
+ A token to cancel the asynchronous operation.
+ A containing the result of the asynchronous operation.
+
+
+
+ lets you efficiently load a MySQL Server table with data from another source.
+ It is similar to the SqlBulkCopy class
+ for SQL Server.
+ Due to security features
+ in MySQL Server, the connection string must have AllowLoadLocalInfile=true in order
+ to use this class.
+ For data that is in CSV or TSV format, use to bulk load the file.
+ Example code:
+
+ // NOTE: to copy data between tables in the same database, use INSERT ... SELECT
+ // https://dev.mysql.com/doc/refman/8.0/en/insert-select.html
+ var dataTable = GetDataTableFromExternalSource();
+
+ using var connection = new MySqlConnection("...;AllowLoadLocalInfile=True");
+ await connection.OpenAsync();
+ var bulkCopy = new MySqlBulkCopy(connection);
+ bulkCopy.DestinationTableName = "some_table_name";
+ await bulkCopy.WriteToServerAsync(dataTable);
+
+
+ Note: This API is a unique feature of MySqlConnector; you must
+ switch to MySqlConnector in order to use it.
+ This API is experimental and may change in the future.
+
+
+
+
+ Initializes a object with the specified connection, and optionally the active transaction.
+
+ The to use.
+ (Optional) The to use.
+
+
+
+ The number of seconds for the operation to complete before it times out, or 0 for no timeout.
+
+
+
+
+ The name of the table to insert rows into.
+
+ This name needs to be quoted if it contains special characters.
+
+
+
+ If non-zero, this specifies the number of rows to be processed before generating a notification event.
+
+
+
+
+ This event is raised every time that the number of rows specified by the property have been processed.
+
+
+ Receipt of a RowsCopied event does not imply that any rows have been sent to the server or committed.
+ The property can be set to true by the event handler to abort the copy.
+
+
+
+
+ A collection of objects. If the columns being copied from the
+ data source line up one-to-one with the columns in the destination table then populating this collection is
+ unnecessary. Otherwise, this should be filled with a collection of objects
+ specifying how source columns are to be mapped onto destination columns. If one column mapping is specified,
+ then all must be specified.
+
+
+
+
+ Returns the number of rows that were copied (after WriteToServer(Async)
finishes).
+
+
+
+
+ Copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ This method is not available on netstandard1.3.
+
+
+
+ Asynchronously copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ This method is not available on netstandard1.3.
+
+
+
+ Copies all rows in the supplied sequence of objects to the destination table specified by the
+ property of the object. The number of columns
+ to be read from the objects must be specified in advance.
+
+ The collection of objects.
+ The number of columns to copy (in each row).
+ This method is not available on netstandard1.3.
+
+
+
+ Asynchronously copies all rows in the supplied sequence of objects to the destination table specified by the
+ property of the object. The number of columns
+ to be read from the objects must be specified in advance.
+
+ The collection of objects.
+ The number of columns to copy (in each row).
+ A token to cancel the asynchronous operation.
+ This method is not available on netstandard1.3.
+
+
+
+ Copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ The to copy from.
+
+
+
+ Asynchronously copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ The to copy from.
+ A token to cancel the asynchronous operation.
+
+
+
+ Use to specify how to map columns in the source data to
+ columns in the destination table when using .
+ Set to the index of the source column to map. Set to
+ either the name of a column in the destination table, or the name of a user-defined variable.
+ If a user-defined variable, you can use to specify a MySQL expression that assigns
+ its value to destination column.
+ Source columns that don't have an entry in will be ignored
+ (unless the collection is empty, in which case all columns will be mapped
+ one-to-one).
+ MySqlConnector will transmit all binary data as hex, so any expression that operates on it
+ must decode it with the UNHEX function first. (This will be performed automatically if no
+ is specified, but will be necessary to specify manually for more complex expressions.)
+ Example code:
+
+ new MySqlBulkCopyColumnMapping
+ {
+ SourceOrdinal = 2,
+ DestinationColumn = "user_name",
+ },
+ new MySqlBulkCopyColumnMapping
+ {
+ SourceOrdinal = 0,
+ DestinationColumn = "@tmp",
+ Expression = "column_value = @tmp * 2",
+ },
+
+
+
+
+
+ Initializes with the default values.
+
+
+
+
+ Initializes to the specified values.
+
+ The ordinal position of the source column.
+ The name of the destination column.
+ The optional expression to be used to set the destination column.
+
+
+
+ The ordinal position of the source column to map from.
+
+
+
+
+ The name of the destination column to copy to. To use an expression, this should be the name of a unique user-defined variable.
+
+
+
+
+ An optional expression for setting a destination column. To use an expression, the should
+ be set to the name of a user-defined variable and this expression should set a column using that variable.
+
+ To populate a binary column, you must set to a variable name, and to an
+ expression that uses UNHEX
to set the column value, e.g., `destColumn` = UNHEX(@variableName)
.
+
+
+
+ lets you efficiently load a MySQL Server Table with data from a CSV or TSV file or .
+ Example code:
+
+ using var connection = new MySqlConnection("...;AllowLoadLocalInfile=True");
+ await connection.OpenAsync();
+ var bulkLoader = new MySqlBulkLoader(connection)
+ {
+ FileName = @"C:\Path\To\file.csv",
+ TableName = "destination",
+ CharacterSet = "UTF8",
+ NumberOfLinesToSkip = 1,
+ FieldTerminator = ",",
+ FieldQuotationCharacter = '"',
+ FieldQuotationOptional = true,
+ Local = true,
+ }
+ var rowCount = await bulkLoader.LoadAsync();
+
+
+ Due to security features
+ in MySQL Server, the connection string must have AllowLoadLocalInfile=true in order to use a local source.
+
+
+
+
+ (Optional) The character set of the source data. By default, the database's character set is used.
+
+
+
+
+ (Optional) A list of the column names in the destination table that should be filled with data from the input file.
+
+
+
+
+ A value that specifies how conflicts are resolved (default ).
+
+
+
+
+ The to use.
+
+
+
+
+ (Optional) The character used to escape instances of within field values.
+
+
+
+
+ (Optional) A list of expressions used to set field values from the columns in the source data.
+
+
+
+
+ (Optional) The character used to enclose fields in the source data.
+
+
+
+
+ Whether quoting fields is optional (default false).
+
+
+
+
+ (Optional) The string fields are terminated with.
+
+
+
+
+ The name of the local (if is true) or remote (otherwise) file to load.
+ Either this or must be set.
+
+
+
+
+ (Optional) A prefix in each line that should be skipped when loading.
+
+
+
+
+ (Optional) The string lines are terminated with.
+
+
+
+
+ Whether a local file is being used (default true).
+
+
+
+
+ The number of lines to skip at the beginning of the file (default 0).
+
+
+
+
+ A giving the priority to load with (default ).
+
+
+
+
+ A containing the data to load. Either this or must be set.
+ The property must be true if this is set.
+
+
+
+
+ The name of the table to load into. If this is a reserved word or contains spaces, it must be quoted.
+
+
+
+
+ The timeout (in milliseconds) to use.
+
+
+
+
+ Initializes a new instance of the class with the specified .
+
+ The to use.
+
+
+
+ Loads all data in the source file or stream into the destination table.
+
+ The number of rows inserted.
+
+
+
+ Asynchronously loads all data in the source file or stream into the destination table.
+
+ A that will be completed with the number of rows inserted.
+
+
+
+ Asynchronously loads all data in the source file or stream into the destination table.
+
+ A token to cancel the asynchronous operation.
+ A that will be completed with the number of rows inserted.
+
+
+
+ Do not use certificate store
+
+
+
+
+ Use certificate store for the current user
+
+
+
+
+ User certificate store for the machine
+
+
+
+
+ represents a SQL statement or stored procedure name
+ to execute against a MySQL database.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class, setting to .
+
+ The text to assign to .
+
+
+
+ Initializes a new instance of the class with the specified and .
+
+ The to use.
+ The active , if any.
+
+
+
+ Initializes a new instance of the class with the specified command text and .
+
+ The text to assign to .
+ The to use.
+
+
+
+ Initializes a new instance of the class with the specified command text,, and .
+
+ The text to assign to .
+ The to use.
+ The active , if any.
+
+
+
+ The collection of objects for this command.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Holds the first automatically-generated ID for a value inserted in an AUTO_INCREMENT column in the last statement.
+
+
+ See LAST_INSERT_ID() for more information.
+
+
+
+
+ Registers as a callback with if cancellation is supported.
+
+ The .
+ An object that must be disposed to revoke the cancellation registration.
+ This method is more efficient than calling token.Register(Command.Cancel)
because it avoids
+ unnecessary allocations.
+
+
+
+ represents a connection to a MySQL database.
+
+
+
+
+ Begins a database transaction.
+
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction.
+
+ The for the transaction.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction.
+
+ The for the transaction.
+ If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ The for the transaction.
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ The for the transaction.
+ If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Resets the session state of the current open connection; this clears temporary tables and user-defined variables.
+
+ A token to cancel the asynchronous operation.
+ A ValueTask representing the asynchronous operation.
+ This is an optional feature of the MySQL protocol and may not be supported by all servers.
+ It's known to be supported by MySQL Server 5.7.3 (and later) and MariaDB 10.2.4 (and later).
+ Other MySQL-compatible servers or proxies may not support this command.
+
+
+
+ The connection ID from MySQL Server.
+
+
+
+
+ Clears the connection pool that belongs to.
+
+ The whose connection pool will be cleared.
+
+
+
+ Asynchronously clears the connection pool that belongs to.
+
+ The whose connection pool will be cleared.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+
+
+
+ Clears all connection pools.
+
+
+
+
+ Asynchronously clears all connection pools.
+
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+
+
+
+ Returns schema information for the data source of this .
+
+ A containing schema information.
+
+
+
+ Returns schema information for the data source of this .
+
+ The name of the schema to return.
+ A containing schema information.
+
+
+
+ Returns schema information for the data source of this .
+
+ The name of the schema to return.
+ The restrictions to apply to the schema; this parameter is currently ignored.
+ A containing schema information.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ The name of the schema to return.
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ The name of the schema to return.
+ The restrictions to apply to the schema; this parameter is currently ignored.
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Gets the time (in seconds) to wait while trying to establish a connection
+ before terminating the attempt and generating an error. This value
+ is controlled by ,
+ which defaults to 15 seconds.
+
+
+
+
+ Creates a object for executing batched commands.
+
+
+
+
+
+ Creates a object (that can be used with ).
+
+
+
+
+
+ Returns an unopened copy of this connection with a new connection string. If the Password
+ in is not set, the password from this connection will be used.
+ This allows creating a new connection with the same security information while changing other options,
+ such as database or pooling.
+
+ The new connection string to be used.
+ A new with different connection string options but
+ the same password as this connection (unless overridden by ).
+
+
+
+ Specifies the type of connection to make to the server.
+
+
+
+
+ TCP/IP connection.
+
+
+
+
+ Named pipe connection. Only works on Windows.
+
+
+
+
+ Unix domain socket connection. Only works on Unix/Linux.
+
+
+
+
+ Shared memory connection. Not currently supported.
+
+
+
+
+ The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error.
+ The default value is 15.
+
+
+
+
+ An implementation of that creates MySqlConnector objects.
+
+
+
+
+ Provides an instance of that can create MySqlConnector objects.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Returns false.
+
+ is not supported by MySqlConnector.
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Returns true.
+
+
+
+
+ Returns a that contains metadata about the columns in the result set.
+
+ A containing metadata about the columns in the result set.
+
+
+
+ Returns a that contains metadata about the columns in the result set.
+
+ A token to cancel the operation.
+ A containing metadata about the columns in the result set.
+ This method runs synchronously; prefer to call to avoid the overhead of allocating an unnecessary Task.
+
+
+
+ Returns metadata about the columns in the result set.
+
+ A containing metadata about the result set.
+
+
+
+ Returns metadata about the columns in the result set.
+
+ A token to cancel the operation.
+ A containing containing metadata about the result set.
+ This method runs synchronously; prefer to call to avoid the overhead of allocating an unnecessary Task.
+
+
+
+ The used when reading from the database.
+
+
+
+
+ Use when reading; allow any in command parameters.
+
+
+
+
+ Use when reading; reject in command parameters.
+
+
+
+
+ Use when reading; reject in command parameters.
+
+
+
+
+ MySQL Server error codes. Taken from Server Error Codes and Messages.
+
+
+
+
+ Not all rows from the source supplied to were copied to .
+
+
+
+
+ The timeout period specified by elapsed before the operation completed.
+
+
+
+
+ ER_HASHCHK
+
+
+
+
+ ER_NISAMCHK
+
+
+
+
+ ER_NO
+
+
+
+
+ ER_YES
+
+
+
+
+ ER_CANT_CREATE_FILE
+
+
+
+
+ ER_CANT_CREATE_TABLE
+
+
+
+
+ ER_CANT_CREATE_DB
+
+
+
+
+ ER_DB_CREATE_EXISTS
+
+
+
+
+ ER_DB_DROP_EXISTS
+
+
+
+
+ ER_DB_DROP_DELETE
+
+
+
+
+ ER_DB_DROP_RMDIR
+
+
+
+
+ ER_CANT_DELETE_FILE
+
+
+
+
+ ER_CANT_FIND_SYSTEM_REC
+
+
+
+
+ ER_CANT_GET_STAT
+
+
+
+
+ ER_CANT_GET_WD
+
+
+
+
+ ER_CANT_LOCK
+
+
+
+
+ ER_CANT_OPEN_FILE
+
+
+
+
+ ER_FILE_NOT_FOUND
+
+
+
+
+ ER_CANT_READ_DIR
+
+
+
+
+ ER_CANT_SET_WD
+
+
+
+
+ ER_CHECKREAD
+
+
+
+
+ ER_DISK_FULL
+
+
+
+
+ ER_DUP_KEY
+
+
+
+
+ ER_ERROR_ON_CLOSE
+
+
+
+
+ ER_ERROR_ON_READ
+
+
+
+
+ ER_ERROR_ON_RENAME
+
+
+
+
+ ER_ERROR_ON_WRITE
+
+
+
+
+ ER_FILE_USED
+
+
+
+
+ ER_FILSORT_ABORT
+
+
+
+
+ ER_FORM_NOT_FOUND
+
+
+
+
+ ER_GET_ERRNO
+
+
+
+
+ ER_ILLEGAL_HA
+
+
+
+
+ ER_KEY_NOT_FOUND
+
+
+
+
+ ER_NOT_FORM_FILE
+
+
+
+
+ ER_NOT_KEYFILE
+
+
+
+
+ ER_OLD_KEYFILE
+
+
+
+
+ ER_OPEN_AS_READONLY
+
+
+
+
+ ER_OUTOFMEMORY
+
+
+
+
+ ER_OUT_OF_SORTMEMORY
+
+
+
+
+ ER_UNEXPECTED_EOF
+
+
+
+
+ ER_CON_COUNT_ERROR
+
+
+
+
+ ER_OUT_OF_RESOURCES
+
+
+
+
+ ER_BAD_HOST_ERROR
+
+
+
+
+ ER_HANDSHAKE_ERROR
+
+
+
+
+ ER_DBACCESS_DENIED_ERROR
+
+
+
+
+ ER_ACCESS_DENIED_ERROR
+
+
+
+
+ ER_NO_DB_ERROR
+
+
+
+
+ ER_UNKNOWN_COM_ERROR
+
+
+
+
+ ER_BAD_NULL_ERROR
+
+
+
+
+ ER_BAD_DB_ERROR
+
+
+
+
+ ER_TABLE_EXISTS_ERROR
+
+
+
+
+ ER_BAD_TABLE_ERROR
+
+
+
+
+ ER_NON_UNIQ_ERROR
+
+
+
+
+ ER_SERVER_SHUTDOWN
+
+
+
+
+ ER_BAD_FIELD_ERROR
+
+
+
+
+ ER_WRONG_FIELD_WITH_GROUP
+
+
+
+
+ ER_WRONG_GROUP_FIELD
+
+
+
+
+ ER_WRONG_SUM_SELECT
+
+
+
+
+ ER_WRONG_VALUE_COUNT
+
+
+
+
+ ER_TOO_LONG_IDENT
+
+
+
+
+ ER_DUP_FIELDNAME
+
+
+
+
+ ER_DUP_KEYNAME
+
+
+
+
+ ER_DUP_ENTRY
+
+
+
+
+ ER_WRONG_FIELD_SPEC
+
+
+
+
+ You have an error in your SQL syntax (ER_PARSE_ERROR).
+
+
+
+
+ ER_EMPTY_QUERY
+
+
+
+
+ ER_NONUNIQ_TABLE
+
+
+
+
+ ER_INVALID_DEFAULT
+
+
+
+
+ ER_MULTIPLE_PRI_KEY
+
+
+
+
+ ER_TOO_MANY_KEYS
+
+
+
+
+ ER_TOO_MANY_KEY_PARTS
+
+
+
+
+ ER_TOO_LONG_KEY
+
+
+
+
+ ER_KEY_COLUMN_DOES_NOT_EXITS
+
+
+
+
+ ER_BLOB_USED_AS_KEY
+
+
+
+
+ ER_TOO_BIG_FIELDLENGTH
+
+
+
+
+ ER_WRONG_AUTO_KEY
+
+
+
+
+ ER_READY
+
+
+
+
+ ER_NORMAL_SHUTDOWN
+
+
+
+
+ ER_GOT_SIGNAL
+
+
+
+
+ ER_SHUTDOWN_COMPLETE
+
+
+
+
+ ER_FORCING_CLOSE
+
+
+
+
+ ER_IPSOCK_ERROR
+
+
+
+
+ ER_NO_SUCH_INDEX
+
+
+
+
+ ER_WRONG_FIELD_TERMINATORS
+
+
+
+
+ ER_BLOBS_AND_NO_TERMINATED
+
+
+
+
+ ER_TEXTFILE_NOT_READABLE
+
+
+
+
+ ER_FILE_EXISTS_ERROR
+
+
+
+
+ ER_LOAD_INFO
+
+
+
+
+ ER_ALTER_INFO
+
+
+
+
+ ER_WRONG_SUB_KEY
+
+
+
+
+ ER_CANT_REMOVE_ALL_FIELDS
+
+
+
+
+ ER_CANT_DROP_FIELD_OR_KEY
+
+
+
+
+ ER_INSERT_INFO
+
+
+
+
+ ER_UPDATE_TABLE_USED
+
+
+
+
+ ER_NO_SUCH_THREAD
+
+
+
+
+ ER_KILL_DENIED_ERROR
+
+
+
+
+ ER_NO_TABLES_USED
+
+
+
+
+ ER_TOO_BIG_SET
+
+
+
+
+ ER_NO_UNIQUE_LOGFILE
+
+
+
+
+ ER_TABLE_NOT_LOCKED_FOR_WRITE
+
+
+
+
+ ER_TABLE_NOT_LOCKED
+
+
+
+
+ ER_BLOB_CANT_HAVE_DEFAULT
+
+
+
+
+ ER_WRONG_DB_NAME
+
+
+
+
+ ER_WRONG_TABLE_NAME
+
+
+
+
+ ER_TOO_BIG_SELECT
+
+
+
+
+ ER_UNKNOWN_ERROR
+
+
+
+
+ ER_UNKNOWN_PROCEDURE
+
+
+
+
+ ER_WRONG_PARAMCOUNT_TO_PROCEDURE
+
+
+
+
+ ER_WRONG_PARAMETERS_TO_PROCEDURE
+
+
+
+
+ ER_UNKNOWN_TABLE
+
+
+
+
+ ER_FIELD_SPECIFIED_TWICE
+
+
+
+
+ ER_INVALID_GROUP_FUNC_USE
+
+
+
+
+ ER_UNSUPPORTED_EXTENSION
+
+
+
+
+ ER_TABLE_MUST_HAVE_COLUMNS
+
+
+
+
+ ER_RECORD_FILE_FULL
+
+
+
+
+ ER_UNKNOWN_CHARACTER_SET
+
+
+
+
+ ER_TOO_MANY_TABLES
+
+
+
+
+ ER_TOO_MANY_FIELDS
+
+
+
+
+ ER_TOO_BIG_ROWSIZE
+
+
+
+
+ ER_STACK_OVERRUN
+
+
+
+
+ ER_WRONG_OUTER_JOIN
+
+
+
+
+ ER_NULL_COLUMN_IN_INDEX
+
+
+
+
+ ER_CANT_FIND_UDF
+
+
+
+
+ ER_CANT_INITIALIZE_UDF
+
+
+
+
+ ER_UDF_NO_PATHS
+
+
+
+
+ ER_UDF_EXISTS
+
+
+
+
+ ER_CANT_OPEN_LIBRARY
+
+
+
+
+ ER_CANT_FIND_DL_ENTRY
+
+
+
+
+ ER_FUNCTION_NOT_DEFINED
+
+
+
+
+ ER_HOST_IS_BLOCKED
+
+
+
+
+ ER_HOST_NOT_PRIVILEGED
+
+
+
+
+ ER_PASSWORD_ANONYMOUS_USER
+
+
+
+
+ ER_PASSWORD_NOT_ALLOWED
+
+
+
+
+ ER_PASSWORD_NO_MATCH
+
+
+
+
+ ER_UPDATE_INFO
+
+
+
+
+ ER_CANT_CREATE_THREAD
+
+
+
+
+ ER_WRONG_VALUE_COUNT_ON_ROW
+
+
+
+
+ ER_CANT_REOPEN_TABLE
+
+
+
+
+ ER_INVALID_USE_OF_NULL
+
+
+
+
+ ER_REGEXP_ERROR
+
+
+
+
+ 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_UNUSED1
+
+
+
+
+ ER_UNUSED2
+
+
+
+
+ ER_ABORTING_CONNECTION
+
+
+
+
+ ER_NET_PACKET_TOO_LARGE
+
+
+
+
+ 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_UNUSED3
+
+
+
+
+ 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
+
+
+
+
+ Query execution was interrupted (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_OBSOLETE_COL_COUNT_DOESNT_MATCH_CORRUPTED
+
+
+
+
+ ER_OBSOLETE_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_OLD_UNUSED
+
+
+
+
+ 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_TX_CHARACTERISTICS
+
+
+
+
+ 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_NEVER_USED
+
+
+
+
+ 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_CANT_EXECUTE_IN_READ_ONLY_TRANSACTION
+
+
+
+
+ is thrown when MySQL Server returns an error code, or there is a
+ communication error with the server.
+
+
+
+
+ A value identifying the kind of error. Prefer to use the property.
+
+
+
+
+ A value identifying the kind of error.
+
+
+
+
+ A SQLSTATE code identifying the kind of error.
+
+ See SQLSTATE for more information.
+
+
+
+ Represents MySQL's internal GEOMETRY format: https://dev.mysql.com/doc/refman/8.0/en/gis-data-formats.html#gis-internal-format
+
+
+
+
+ Constructs a from a SRID and Well-known Binary bytes.
+
+ The SRID (Spatial Reference System ID).
+ The Well-known Binary serialization of the geometry.
+ A new containing the specified geometry.
+
+
+
+ Constructs a from MySQL's internal format.
+
+ The raw bytes of MySQL's internal GEOMETRY format.
+ A new containing the specified geometry.
+ See Internal Geometry Storage Format.
+
+
+
+ The Spatial Reference System ID of this geometry.
+
+
+
+
+ The Well-known Binary serialization of this geometry.
+
+
+
+
+ The internal MySQL form of this geometry.
+
+
+
+
+ Determines which column type (if any) should be read as a System.Guid.
+
+
+
+
+ Same as Char36 if OldGuids=False; same as LittleEndianBinary16 if OldGuids=True.
+
+
+
+
+ No column types are read/written as a Guid
.
+
+
+
+
+ All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens,
+ which matches UUID().
+
+
+
+
+ All CHAR(32) columns are read/written as a Guid using lowercase hex without hyphens.
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using big-endian byte order,
+ which matches UUID_TO_BIN(x).
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using big-endian byte order with time parts swapped,
+ which matches UUID_TO_BIN(x,1).
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using little-endian byte order, i.e. the byte order
+ used by and .
+
+
+
+
+ Escapes single and double quotes, and backslashes in .
+
+
+
+
+ Each new connection opened for a connection pool uses the next host name (sequentially with wraparound).
+
+
+
+
+ Each new connection tries to connect to the first host; subsequent hosts are used only if connecting to the first one fails.
+
+
+
+
+ Servers are tried in random order.
+
+
+
+
+ Servers are tried in ascending order of number of currently-open connections.
+
+
+
+
+ Gets or sets a value that indicates whether the bulk copy operation should be aborted.
+
+
+
+
+ Gets a value that returns the number of rows copied during the current bulk copy operation.
+
+
+
+
+ Represents the method that handles the event of a .
+
+
+
+
+ SSL connection options.
+
+
+
+
+ Do not use SSL.
+
+
+
+
+ Use SSL if the server supports it.
+
+
+
+
+ Always use SSL. Deny connection if server does not support SSL.
+
+
+
+
+ Always use SSL. Validate the Certificate Authority but tolerate name mismatch.
+
+
+
+
+ Always use SSL. Fail if the host name is not correct.
+
+
+
+
+ Removes the named transaction savepoint with the specified . No commit or rollback occurs.
+
+ The savepoint name.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously removes the named transaction savepoint with the specified . No commit or rollback occurs.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Rolls back the current transaction to the savepoint with the specified without aborting the transaction.
+
+ The savepoint name.
+ The name must have been created with , but not released by calling .
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously rolls back the current transaction to the savepoint with the specified without aborting the transaction.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The name must have been created with , but not released by calling .
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Sets a named transaction savepoint with the specified . If the current transaction
+ already has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+ The savepoint name.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously sets a named transaction savepoint with the specified . If the current transaction
+ already has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ MySQL character set codes.
+
+ Obtained from SELECT id, collation_name FROM information_schema.collations ORDER BY id; on MySQL 8.0.16.
+
+
+
+ Field cannot be NULL.
+
+
+
+
+ Field is part of a primary key.
+
+
+
+
+ Field is part of a unique key.
+
+
+
+
+ Field is part of a nonunique key.
+
+
+
+
+ Field is a BLOB or TEXT (deprecated).
+
+
+
+
+ Field has the UNSIGNED attribute.
+
+
+
+
+ Field has the ZEROFILL attribute.
+
+
+
+
+ Field has the BINARY attribute.
+
+
+
+
+ Field is an ENUM.
+
+
+
+
+ Field has the AUTO_INCREMENT attribute.
+
+
+
+
+ Field is a TIMESTAMP (deprecated).
+
+
+
+
+ Field is a SET.
+
+
+
+
+ Field is numeric.
+
+
+
+
+ See MySQL documentation.
+
+
+
+
+ Returns true if contains an EOF packet.
+ Note that EOF packets can appear in places where a length-encoded integer (which starts with the same signature byte) may appear, so the length
+ has to be checked to verify that it is an EOF packet.
+
+ The payload to examine.
+ true if this is an EOF packet; otherwise, false.
+
+
+
+ The MySQL Capability flags.
+
+
+
+
+ No specified capabilities.
+
+
+
+
+ Use the improved version of Old Password Authentication.
+
+
+
+
+ Send found rows instead of affected rows in EOF_Packet.
+
+
+
+
+ Longer flags in Protocol::ColumnDefinition320.
+
+
+
+
+ Database (schema) name can be specified on connect in Handshake Response Packet.
+
+
+
+
+ Do not permit database.table.column.
+
+
+
+
+ Supports compression.
+
+
+
+
+ Special handling of ODBC behavior.
+
+
+
+
+ Enables the LOCAL INFILE request of LOAD DATA|XML.
+
+
+
+
+ Parser can ignore spaces before '('.
+
+
+
+
+ Supports the 4.1 protocol.
+
+
+
+
+ Server: Supports interactive and noninteractive clients. Client: The session wait_timeout
variable is set to the value of the session interactive_timeout
variable.
+
+
+
+
+ Supports SSL.
+
+
+
+
+ Can send status flags in EOF_Packet.
+
+
+
+
+ Supports Authentication::Native41.
+
+
+
+
+ Can handle multiple statements per COM_QUERY and COM_STMT_PREPARE.
+
+
+
+
+ Can send multiple resultsets for COM_QUERY.
+
+
+
+
+ Can send multiple resultsets for COM_STMT_EXECUTE.
+
+
+
+
+ Sends extra data in Initial Handshake Packet and supports the pluggable authentication protocol.
+
+
+
+
+ Permits connection attributes in Protocol::HandshakeResponse41.
+
+
+
+
+ Understands length-encoded integer for auth response data in Protocol::HandshakeResponse41.
+
+
+
+
+ Announces support for expired password extension.
+
+
+
+
+ Can set SERVER_SESSION_STATE_CHANGED in the Status Flags and send session-state change data after a OK packet.
+
+
+
+
+ Can send OK after a Text Resultset.
+
+
+
+
+ Client supports progress indicator.
+
+
+
+
+ Client supports COM_MULTI (i.e., CommandKind.Multi)
+
+
+
+
+ Support of array binding.
+
+
+
+
+ is a class that holds an instance of .
+ Its primary difference from is that it's a reference type, so mutations
+ to this object are visible to other objects that hold a reference to it.
+
+
+
+
+ Hashes a password with the "Secure Password Authentication" method.
+
+ The 20-byte random challenge (from the "auth-plugin-data" in the initial handshake).
+ The password to hash.
+ A 20-byte password hash.
+ See Secure Password Authentication.
+
+
+
+ Helper class to translate NegotiateStream framing for SPNEGO token
+ into MySQL protocol packets.
+
+ Serves as underlying stream for System.Net.NegotiateStream
+ to perform MariaDB's auth_gssapi_client authentication.
+
+ NegotiateStream protocol is described in e.g here
+ https://winprotocoldoc.blob.core.windows.net/productionwindowsarchives/MS-NNS/[MS-NNS].pdf
+ We only use Handshake Messages for authentication.
+
+
+
+
+ The remaining timeout (in milliseconds) for the next I/O read. Use to represent no (or, infinite) timeout.
+
+
+
+
+ Reads data from this byte handler.
+
+ The buffer to read into.
+ The to use when reading data.
+ A holding the number of bytes read. If reading failed, this will be zero.
+
+
+
+ Writes data to this byte handler.
+
+ The data to write.
+ The to use when writing.
+ A . The value of this object is not defined.
+
+
+
+ Specifies whether to perform synchronous or asynchronous I/O.
+
+
+
+
+ Use synchronous I/O.
+
+
+
+
+ Use asynchronous I/O.
+
+
+
+
+ Starts a new "conversation" with the MySQL Server. This resets the "sequence id"
+ and should be called when a new command begins.
+
+
+
+
+ Gets or sets the underlying that data is read from and written to.
+
+
+
+
+ Reads the next payload.
+
+ An that will cache any buffers allocated during this
+ read. (To disable caching, pass new ArraySegmentHolder<byte>
so the cache will be garbage-collected
+ when this method returns.)
+ The to use if there is a protocol error.
+ The to use when reading data.
+ An containing the data that was read. This
+ will be valid to read from until the next time or
+ is called.
+
+
+
+ Writes a payload.
+
+ The data to write.
+ The to use when writing.
+ A . The value of this object is not defined.
+
+
+
+ Specifies how to handle protocol errors.
+
+
+
+
+ Throw an exception when there is a protocol error. This is the default.
+
+
+
+
+ Ignore any protocol errors.
+
+
+
+
+ A transaction is active.
+
+
+
+
+ Auto-commit is enabled
+
+
+
+
+ Used by Binary Protocol Resultset to signal that COM_STMT_FETCH must be used to fetch the row-data.
+
+
+
+
+ In a read-only transaction.
+
+
+
+
+ Connection state information has changed.
+
+
+
+
+ SESSION_TRACK_SYSTEM_VARIABLES: one or more system variables changed
+
+
+
+
+ SESSION_TRACK_SCHEMA: schema changed
+
+
+
+
+ SESSION_TRACK_STATE_CHANGE: "track state change" changed
+
+
+
+
+ SESSION_TRACK_GTIDS: "track GTIDs" changed
+
+
+
+
+ A sentinel value indicating no (or infinite) timeout.
+
+
+
+
+ A wrapper around a resizable array. This type is intended to be used with .
+
+
+
+
+ Do not call this method directly; use .
+
+
+
+
+ An that supports having its underlying array reallocated and resized.
+
+
+
+
+ Adds a timer that will invoke in approximately milliseconds.
+
+ The time (in milliseconds) to wait before invoking .
+ The callback to invoke.
+ A timer ID that can be passed to to cancel the timer.
+
+
+
+ Cancels the timer with the specified ID.
+
+ The timer ID (returned from ).
+ true if the timer was removed; otherwise, false. This method will return false if the specified timer has already fired.
+
+
+
+ Loads a RSA key from a PEM string.
+
+ The key, in PEM format.
+ An RSA key.
+
+
+
+ Returns a new that starts at index into .
+
+ The from which to create a slice.
+ The non-negative, zero-based starting index of the new slice (relative to of .
+ A new starting at the th element of and continuing to the end of .
+
+
+
+ Returns a new that starts at index into and has a length of .
+
+ The from which to create a slice.
+ The non-negative, zero-based starting index of the new slice (relative to of .
+ The non-negative length of the new slice.
+ A new of length , starting at the th element of .
+
+
+
+ Returns a new that is a slice of starting at .
+
+ The array to slice.
+ The offset at which to slice.
+ The length of the slice.
+ A new that is a slice of from to the end.
+
+
+
+ Finds the next index of in , starting at index .
+
+ The array to search.
+ The offset at which to start searching.
+ The pattern to find in .
+ The offset of within , or -1 if was not found.
+
+
+
+ Resizes to hold at least items.
+
+ may be null, in which case a new will be allocated.
+
+
+ Specifies that null is allowed as an input even if the corresponding type disallows it.
+
+
+ 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.
+
+
+
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netcoreapp3.0/MySqlConnector.dll b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netcoreapp3.0/MySqlConnector.dll
new file mode 100644
index 0000000..3992124
Binary files /dev/null and b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netcoreapp3.0/MySqlConnector.dll differ
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netcoreapp3.0/MySqlConnector.xml b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netcoreapp3.0/MySqlConnector.xml
new file mode 100644
index 0000000..88db1c5
--- /dev/null
+++ b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netcoreapp3.0/MySqlConnector.xml
@@ -0,0 +1,5034 @@
+
+
+
+ MySqlConnector
+
+
+
+
+ A registry of known authentication plugins.
+
+
+
+
+ Registers the specified authentication plugin. The name of this plugin must be unique.
+
+ The authentication plugin.
+
+
+
+ The primary interface implemented by an authentication plugin.
+
+
+
+
+ The authentication plugin name.
+
+
+
+
+ Creates the authentication response.
+
+ The client's password.
+ The authentication data supplied by the server; this is the auth method data
+ from the Authentication
+ Method Switch Request Packet.
+
+
+
+
+ encapsulates a list of and the current position within that list.
+
+
+
+
+ The commands in the list.
+
+
+
+
+ The index of the current command.
+
+
+
+
+ If the current command is a prepared statement, the index of the current prepared statement for that command.
+
+
+
+
+ Returns true if the connection pool is empty, i.e., all connections are in use. Note that in a highly-multithreaded
+ environment, the value of this property may be stale by the time it's returned.
+
+
+
+
+ Returns the stored procedure cache for this , lazily creating it on demand.
+ This method may return a different object after has been called. The returned
+ object is shared between multiple threads and is only safe to use after taking a lock on the
+ object itself.
+
+
+
+
+ Examines all the objects in to determine if any
+ have an owning that has been garbage-collected. If so, assumes that the connection
+ was not properly disposed and returns the session to the pool.
+
+
+
+
+ The that was used to create this .!--
+ This object must not be mutated.
+
+
+
+
+ provides an internal abstraction over operations that can be cancelled: and .
+
+
+
+
+ Returns a unique ID for all implementations of .
+
+
+
+
+
+ Causes the effective command timeout to be reset back to the value specified by .
+
+ As per the MSDN documentation,
+ "This property is the cumulative time-out (for all network packets that are read during the invocation of a method) for all network reads during command
+ execution or processing of the results. A time-out can still occur after the first row is returned, and does not include user processing time, only network
+ read time. For example, with a 30 second time out, if Read requires two network packets, then it has 30 seconds to read both network packets. If you call
+ Read again, it will have another 30 seconds to read any data that it requires."
+ The method is called by public ADO.NET API methods to reset the effective time remaining at the beginning of a new
+ method call.
+
+
+
+ creates the data for an "execute query" command for one or more objects in a command list.
+
+
+
+
+ Writes the payload for an "execute query" command to .
+
+ The command list and its current position. This will be updated to the position of the next command to write (or past the end if there are no more commands).
+ A for all the stored procedures in the command list, if any.
+ The to write the payload to.
+ true if a command was written; otherwise, false (if there were no more commands in the list).
+
+
+
+ Returns an containing in the order they
+ should be tried to satisfy the load balancing policy.
+
+
+
+
+ provides an internal abstraction over and .
+
+
+
+
+ provides an abstraction over iterating through a sequence of
+ rows, where each row can fill an array of field values.
+
+
+
+
+ represents an individual SQL statement that's been parsed
+ from a string possibly containing multiple semicolon-delimited SQL statements.
+
+
+
+
+ The bytes for this statement that will be written on the wire.
+
+
+
+
+ The names of the parameters (if known) of the parameters in the prepared statement. There
+ is one entry in this list for each parameter, which will be null if the name is unknown.
+
+
+
+
+ The indexes of the parameters in the prepared statement. There is one entry in this list for
+ each parameter; it will be -1 if the parameter is named.
+
+
+
+
+ wraps a collection of objects.
+ It implements to return the memory backing the statements to a shared pool.
+
+
+
+
+ is a statement that has been prepared on the MySQL Server.
+
+
+
+
+ Disposes and sets to null, ignoring any
+ or that is thrown.
+
+ An type.
+ The object to dispose.
+
+
+
+ Writes the text of to , encoded in UTF-8.
+
+ The command.
+ The cached procedures.
+ The output writer.
+ true if a complete command was written; otherwise, false.
+
+
+
+ The statement is complete (apart from potentially needing a semicolon or newline).
+
+
+
+
+ The statement needs a newline (e.g., to terminate a final comment).
+
+
+
+
+ The statement needs a semicolon (if another statement is going to be concatenated to it).
+
+
+
+
+ Implementations of write logs to a particular target.
+
+
+
+
+ Returns true if logging for this logger is enabled at the specified level.
+
+ The log level.
+ true if logging is enabled; otherwise, false.
+
+
+
+ Writes a log message to the target.
+
+ The log level.
+ The log message. See documentation for for notes on interpreting {0} within this string.
+ If not null or empty, then includes formatting placeholders (e.g., {0})
+ which must be replaced with the arguments in , using or similar.
+ If null or an empty array, then is a literal string; any curly braces within it must be treated as literal characters,
+ not formatting placeholders.
+ If not null, an associated with the log message.
+ This method may be called from multiple threads and must be thread-safe. This method may be called
+ even if would return false for ; the implementation must
+ check if logging is enabled for that level.
+
+
+
+ Implementations of create logger instances.
+
+
+
+
+ Creates a logger with the specified name. This method may be called from multiple threads and must be thread-safe.
+
+
+
+
+ Controls logging for MySqlConnector.
+
+
+
+
+ Allows the to be set for this library. can
+ be set once, and must be set before any other library methods are used.
+
+
+
+
+ is an implementation of that does nothing.
+
+ This is the default logging implementation unless is set.
+
+
+
+ Returns false.
+
+
+
+
+ Ignores the specified log message.
+
+
+
+
+ Returns a singleton instance of .
+
+
+
+
+ Creates loggers that do nothing.
+
+
+
+
+ Returns a .
+
+
+
+
+ implements the new
+ ADO.NET batching API.
+ It is currently experimental and may change in the future.
+ When using MariaDB (10.2 or later), the commands will be sent in a single batch, reducing network
+ round-trip time. With other MySQL Servers, this may be no more efficient than executing the commands
+ individually.
+ Example usage:
+
+ using var connection = new MySqlConnection("...connection string...");
+ await connection.OpenAsync();
+
+ using var batch = new MySqlBatch(connection)
+ {
+ BatchCommands =
+ {
+ new MySqlBatchCommand("INSERT INTO departments(name) VALUES(@name);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Sales"),
+ },
+ },
+ new MySqlBatchCommand("SET @dept_id = last_insert_id()"),
+ new MySqlBatchCommand("INSERT INTO employees(name, department_id) VALUES(@name, @dept_id);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Jim Halpert"),
+ },
+ },
+ new MySqlBatchCommand("INSERT INTO employees(name, department_id) VALUES(@name, @dept_id);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Dwight Schrute"),
+ },
+ },
+ },
+ };
+ await batch.ExecuteNonQueryAsync();
+
+
+ The proposed ADO.NET API that is based on is not finalized. This API is experimental and may change in the future.
+
+
+
+ Initializes a new object. The property must be set before this object can be used.
+
+
+
+
+ Initializes a new object, setting the and if specified.
+
+ (Optional) The to use.
+ (Optional) The to use.
+
+
+
+ The collection of commands that will be executed in the batch.
+
+
+
+
+ Executes all the commands in the batch, returning a that can iterate
+ over the result sets. If multiple resultsets are returned, use
+ to access them.
+
+
+
+
+ Executes all the commands in the batch, returning a that can iterate
+ over the result sets. If multiple resultsets are returned, use
+ to access them.
+
+ A token to cancel the asynchronous operation.
+ A containing the result of the asynchronous operation.
+
+
+
+ lets you efficiently load a MySQL Server table with data from another source.
+ It is similar to the SqlBulkCopy class
+ for SQL Server.
+ Due to security features
+ in MySQL Server, the connection string must have AllowLoadLocalInfile=true in order
+ to use this class.
+ For data that is in CSV or TSV format, use to bulk load the file.
+ Example code:
+
+ // NOTE: to copy data between tables in the same database, use INSERT ... SELECT
+ // https://dev.mysql.com/doc/refman/8.0/en/insert-select.html
+ var dataTable = GetDataTableFromExternalSource();
+
+ using var connection = new MySqlConnection("...;AllowLoadLocalInfile=True");
+ await connection.OpenAsync();
+ var bulkCopy = new MySqlBulkCopy(connection);
+ bulkCopy.DestinationTableName = "some_table_name";
+ await bulkCopy.WriteToServerAsync(dataTable);
+
+
+ Note: This API is a unique feature of MySqlConnector; you must
+ switch to MySqlConnector in order to use it.
+ This API is experimental and may change in the future.
+
+
+
+
+ Initializes a object with the specified connection, and optionally the active transaction.
+
+ The to use.
+ (Optional) The to use.
+
+
+
+ The number of seconds for the operation to complete before it times out, or 0 for no timeout.
+
+
+
+
+ The name of the table to insert rows into.
+
+ This name needs to be quoted if it contains special characters.
+
+
+
+ If non-zero, this specifies the number of rows to be processed before generating a notification event.
+
+
+
+
+ This event is raised every time that the number of rows specified by the property have been processed.
+
+
+ Receipt of a RowsCopied event does not imply that any rows have been sent to the server or committed.
+ The property can be set to true by the event handler to abort the copy.
+
+
+
+
+ A collection of objects. If the columns being copied from the
+ data source line up one-to-one with the columns in the destination table then populating this collection is
+ unnecessary. Otherwise, this should be filled with a collection of objects
+ specifying how source columns are to be mapped onto destination columns. If one column mapping is specified,
+ then all must be specified.
+
+
+
+
+ Returns the number of rows that were copied (after WriteToServer(Async)
finishes).
+
+
+
+
+ Copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ This method is not available on netstandard1.3.
+
+
+
+ Asynchronously copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ This method is not available on netstandard1.3.
+
+
+
+ Copies all rows in the supplied sequence of objects to the destination table specified by the
+ property of the object. The number of columns
+ to be read from the objects must be specified in advance.
+
+ The collection of objects.
+ The number of columns to copy (in each row).
+ This method is not available on netstandard1.3.
+
+
+
+ Asynchronously copies all rows in the supplied sequence of objects to the destination table specified by the
+ property of the object. The number of columns
+ to be read from the objects must be specified in advance.
+
+ The collection of objects.
+ The number of columns to copy (in each row).
+ A token to cancel the asynchronous operation.
+ This method is not available on netstandard1.3.
+
+
+
+ Copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ The to copy from.
+
+
+
+ Asynchronously copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ The to copy from.
+ A token to cancel the asynchronous operation.
+
+
+
+ Use to specify how to map columns in the source data to
+ columns in the destination table when using .
+ Set to the index of the source column to map. Set to
+ either the name of a column in the destination table, or the name of a user-defined variable.
+ If a user-defined variable, you can use to specify a MySQL expression that assigns
+ its value to destination column.
+ Source columns that don't have an entry in will be ignored
+ (unless the collection is empty, in which case all columns will be mapped
+ one-to-one).
+ MySqlConnector will transmit all binary data as hex, so any expression that operates on it
+ must decode it with the UNHEX function first. (This will be performed automatically if no
+ is specified, but will be necessary to specify manually for more complex expressions.)
+ Example code:
+
+ new MySqlBulkCopyColumnMapping
+ {
+ SourceOrdinal = 2,
+ DestinationColumn = "user_name",
+ },
+ new MySqlBulkCopyColumnMapping
+ {
+ SourceOrdinal = 0,
+ DestinationColumn = "@tmp",
+ Expression = "column_value = @tmp * 2",
+ },
+
+
+
+
+
+ Initializes with the default values.
+
+
+
+
+ Initializes to the specified values.
+
+ The ordinal position of the source column.
+ The name of the destination column.
+ The optional expression to be used to set the destination column.
+
+
+
+ The ordinal position of the source column to map from.
+
+
+
+
+ The name of the destination column to copy to. To use an expression, this should be the name of a unique user-defined variable.
+
+
+
+
+ An optional expression for setting a destination column. To use an expression, the should
+ be set to the name of a user-defined variable and this expression should set a column using that variable.
+
+ To populate a binary column, you must set to a variable name, and to an
+ expression that uses UNHEX
to set the column value, e.g., `destColumn` = UNHEX(@variableName)
.
+
+
+
+ lets you efficiently load a MySQL Server Table with data from a CSV or TSV file or .
+ Example code:
+
+ using var connection = new MySqlConnection("...;AllowLoadLocalInfile=True");
+ await connection.OpenAsync();
+ var bulkLoader = new MySqlBulkLoader(connection)
+ {
+ FileName = @"C:\Path\To\file.csv",
+ TableName = "destination",
+ CharacterSet = "UTF8",
+ NumberOfLinesToSkip = 1,
+ FieldTerminator = ",",
+ FieldQuotationCharacter = '"',
+ FieldQuotationOptional = true,
+ Local = true,
+ }
+ var rowCount = await bulkLoader.LoadAsync();
+
+
+ Due to security features
+ in MySQL Server, the connection string must have AllowLoadLocalInfile=true in order to use a local source.
+
+
+
+
+ (Optional) The character set of the source data. By default, the database's character set is used.
+
+
+
+
+ (Optional) A list of the column names in the destination table that should be filled with data from the input file.
+
+
+
+
+ A value that specifies how conflicts are resolved (default ).
+
+
+
+
+ The to use.
+
+
+
+
+ (Optional) The character used to escape instances of within field values.
+
+
+
+
+ (Optional) A list of expressions used to set field values from the columns in the source data.
+
+
+
+
+ (Optional) The character used to enclose fields in the source data.
+
+
+
+
+ Whether quoting fields is optional (default false).
+
+
+
+
+ (Optional) The string fields are terminated with.
+
+
+
+
+ The name of the local (if is true) or remote (otherwise) file to load.
+ Either this or must be set.
+
+
+
+
+ (Optional) A prefix in each line that should be skipped when loading.
+
+
+
+
+ (Optional) The string lines are terminated with.
+
+
+
+
+ Whether a local file is being used (default true).
+
+
+
+
+ The number of lines to skip at the beginning of the file (default 0).
+
+
+
+
+ A giving the priority to load with (default ).
+
+
+
+
+ A containing the data to load. Either this or must be set.
+ The property must be true if this is set.
+
+
+
+
+ The name of the table to load into. If this is a reserved word or contains spaces, it must be quoted.
+
+
+
+
+ The timeout (in milliseconds) to use.
+
+
+
+
+ Initializes a new instance of the class with the specified .
+
+ The to use.
+
+
+
+ Loads all data in the source file or stream into the destination table.
+
+ The number of rows inserted.
+
+
+
+ Asynchronously loads all data in the source file or stream into the destination table.
+
+ A that will be completed with the number of rows inserted.
+
+
+
+ Asynchronously loads all data in the source file or stream into the destination table.
+
+ A token to cancel the asynchronous operation.
+ A that will be completed with the number of rows inserted.
+
+
+
+ Do not use certificate store
+
+
+
+
+ Use certificate store for the current user
+
+
+
+
+ User certificate store for the machine
+
+
+
+
+ represents a SQL statement or stored procedure name
+ to execute against a MySQL database.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class, setting to .
+
+ The text to assign to .
+
+
+
+ Initializes a new instance of the class with the specified and .
+
+ The to use.
+ The active , if any.
+
+
+
+ Initializes a new instance of the class with the specified command text and .
+
+ The text to assign to .
+ The to use.
+
+
+
+ Initializes a new instance of the class with the specified command text,, and .
+
+ The text to assign to .
+ The to use.
+ The active , if any.
+
+
+
+ The collection of objects for this command.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Holds the first automatically-generated ID for a value inserted in an AUTO_INCREMENT column in the last statement.
+
+
+ See LAST_INSERT_ID() for more information.
+
+
+
+
+ Registers as a callback with if cancellation is supported.
+
+ The .
+ An object that must be disposed to revoke the cancellation registration.
+ This method is more efficient than calling token.Register(Command.Cancel)
because it avoids
+ unnecessary allocations.
+
+
+
+ represents a connection to a MySQL database.
+
+
+
+
+ Begins a database transaction.
+
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction.
+
+ The for the transaction.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction.
+
+ The for the transaction.
+ If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ The for the transaction.
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ The for the transaction.
+ If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Resets the session state of the current open connection; this clears temporary tables and user-defined variables.
+
+ A token to cancel the asynchronous operation.
+ A ValueTask representing the asynchronous operation.
+ This is an optional feature of the MySQL protocol and may not be supported by all servers.
+ It's known to be supported by MySQL Server 5.7.3 (and later) and MariaDB 10.2.4 (and later).
+ Other MySQL-compatible servers or proxies may not support this command.
+
+
+
+ The connection ID from MySQL Server.
+
+
+
+
+ Clears the connection pool that belongs to.
+
+ The whose connection pool will be cleared.
+
+
+
+ Asynchronously clears the connection pool that belongs to.
+
+ The whose connection pool will be cleared.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+
+
+
+ Clears all connection pools.
+
+
+
+
+ Asynchronously clears all connection pools.
+
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+
+
+
+ Returns schema information for the data source of this .
+
+ A containing schema information.
+
+
+
+ Returns schema information for the data source of this .
+
+ The name of the schema to return.
+ A containing schema information.
+
+
+
+ Returns schema information for the data source of this .
+
+ The name of the schema to return.
+ The restrictions to apply to the schema; this parameter is currently ignored.
+ A containing schema information.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ The name of the schema to return.
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ The name of the schema to return.
+ The restrictions to apply to the schema; this parameter is currently ignored.
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Gets the time (in seconds) to wait while trying to establish a connection
+ before terminating the attempt and generating an error. This value
+ is controlled by ,
+ which defaults to 15 seconds.
+
+
+
+
+ Creates a object for executing batched commands.
+
+
+
+
+
+ Creates a object (that can be used with ).
+
+
+
+
+
+ Returns an unopened copy of this connection with a new connection string. If the Password
+ in is not set, the password from this connection will be used.
+ This allows creating a new connection with the same security information while changing other options,
+ such as database or pooling.
+
+ The new connection string to be used.
+ A new with different connection string options but
+ the same password as this connection (unless overridden by ).
+
+
+
+ Specifies the type of connection to make to the server.
+
+
+
+
+ TCP/IP connection.
+
+
+
+
+ Named pipe connection. Only works on Windows.
+
+
+
+
+ Unix domain socket connection. Only works on Unix/Linux.
+
+
+
+
+ Shared memory connection. Not currently supported.
+
+
+
+
+ The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error.
+ The default value is 15.
+
+
+
+
+ An implementation of that creates MySqlConnector objects.
+
+
+
+
+ Provides an instance of that can create MySqlConnector objects.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Returns false.
+
+ is not supported by MySqlConnector.
+
+
+
+ Returns true.
+
+
+
+
+ Returns true.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Returns true.
+
+
+
+
+ Returns a that contains metadata about the columns in the result set.
+
+ A containing metadata about the columns in the result set.
+
+
+
+ Returns a that contains metadata about the columns in the result set.
+
+ A token to cancel the operation.
+ A containing metadata about the columns in the result set.
+ This method runs synchronously; prefer to call to avoid the overhead of allocating an unnecessary Task.
+
+
+
+ Returns metadata about the columns in the result set.
+
+ A containing metadata about the result set.
+
+
+
+ Returns metadata about the columns in the result set.
+
+ A token to cancel the operation.
+ A containing containing metadata about the result set.
+ This method runs synchronously; prefer to call to avoid the overhead of allocating an unnecessary Task.
+
+
+
+ The used when reading from the database.
+
+
+
+
+ Use when reading; allow any in command parameters.
+
+
+
+
+ Use when reading; reject in command parameters.
+
+
+
+
+ Use when reading; reject in command parameters.
+
+
+
+
+ MySQL Server error codes. Taken from Server Error Codes and Messages.
+
+
+
+
+ Not all rows from the source supplied to were copied to .
+
+
+
+
+ The timeout period specified by elapsed before the operation completed.
+
+
+
+
+ ER_HASHCHK
+
+
+
+
+ ER_NISAMCHK
+
+
+
+
+ ER_NO
+
+
+
+
+ ER_YES
+
+
+
+
+ ER_CANT_CREATE_FILE
+
+
+
+
+ ER_CANT_CREATE_TABLE
+
+
+
+
+ ER_CANT_CREATE_DB
+
+
+
+
+ ER_DB_CREATE_EXISTS
+
+
+
+
+ ER_DB_DROP_EXISTS
+
+
+
+
+ ER_DB_DROP_DELETE
+
+
+
+
+ ER_DB_DROP_RMDIR
+
+
+
+
+ ER_CANT_DELETE_FILE
+
+
+
+
+ ER_CANT_FIND_SYSTEM_REC
+
+
+
+
+ ER_CANT_GET_STAT
+
+
+
+
+ ER_CANT_GET_WD
+
+
+
+
+ ER_CANT_LOCK
+
+
+
+
+ ER_CANT_OPEN_FILE
+
+
+
+
+ ER_FILE_NOT_FOUND
+
+
+
+
+ ER_CANT_READ_DIR
+
+
+
+
+ ER_CANT_SET_WD
+
+
+
+
+ ER_CHECKREAD
+
+
+
+
+ ER_DISK_FULL
+
+
+
+
+ ER_DUP_KEY
+
+
+
+
+ ER_ERROR_ON_CLOSE
+
+
+
+
+ ER_ERROR_ON_READ
+
+
+
+
+ ER_ERROR_ON_RENAME
+
+
+
+
+ ER_ERROR_ON_WRITE
+
+
+
+
+ ER_FILE_USED
+
+
+
+
+ ER_FILSORT_ABORT
+
+
+
+
+ ER_FORM_NOT_FOUND
+
+
+
+
+ ER_GET_ERRNO
+
+
+
+
+ ER_ILLEGAL_HA
+
+
+
+
+ ER_KEY_NOT_FOUND
+
+
+
+
+ ER_NOT_FORM_FILE
+
+
+
+
+ ER_NOT_KEYFILE
+
+
+
+
+ ER_OLD_KEYFILE
+
+
+
+
+ ER_OPEN_AS_READONLY
+
+
+
+
+ ER_OUTOFMEMORY
+
+
+
+
+ ER_OUT_OF_SORTMEMORY
+
+
+
+
+ ER_UNEXPECTED_EOF
+
+
+
+
+ ER_CON_COUNT_ERROR
+
+
+
+
+ ER_OUT_OF_RESOURCES
+
+
+
+
+ ER_BAD_HOST_ERROR
+
+
+
+
+ ER_HANDSHAKE_ERROR
+
+
+
+
+ ER_DBACCESS_DENIED_ERROR
+
+
+
+
+ ER_ACCESS_DENIED_ERROR
+
+
+
+
+ ER_NO_DB_ERROR
+
+
+
+
+ ER_UNKNOWN_COM_ERROR
+
+
+
+
+ ER_BAD_NULL_ERROR
+
+
+
+
+ ER_BAD_DB_ERROR
+
+
+
+
+ ER_TABLE_EXISTS_ERROR
+
+
+
+
+ ER_BAD_TABLE_ERROR
+
+
+
+
+ ER_NON_UNIQ_ERROR
+
+
+
+
+ ER_SERVER_SHUTDOWN
+
+
+
+
+ ER_BAD_FIELD_ERROR
+
+
+
+
+ ER_WRONG_FIELD_WITH_GROUP
+
+
+
+
+ ER_WRONG_GROUP_FIELD
+
+
+
+
+ ER_WRONG_SUM_SELECT
+
+
+
+
+ ER_WRONG_VALUE_COUNT
+
+
+
+
+ ER_TOO_LONG_IDENT
+
+
+
+
+ ER_DUP_FIELDNAME
+
+
+
+
+ ER_DUP_KEYNAME
+
+
+
+
+ ER_DUP_ENTRY
+
+
+
+
+ ER_WRONG_FIELD_SPEC
+
+
+
+
+ You have an error in your SQL syntax (ER_PARSE_ERROR).
+
+
+
+
+ ER_EMPTY_QUERY
+
+
+
+
+ ER_NONUNIQ_TABLE
+
+
+
+
+ ER_INVALID_DEFAULT
+
+
+
+
+ ER_MULTIPLE_PRI_KEY
+
+
+
+
+ ER_TOO_MANY_KEYS
+
+
+
+
+ ER_TOO_MANY_KEY_PARTS
+
+
+
+
+ ER_TOO_LONG_KEY
+
+
+
+
+ ER_KEY_COLUMN_DOES_NOT_EXITS
+
+
+
+
+ ER_BLOB_USED_AS_KEY
+
+
+
+
+ ER_TOO_BIG_FIELDLENGTH
+
+
+
+
+ ER_WRONG_AUTO_KEY
+
+
+
+
+ ER_READY
+
+
+
+
+ ER_NORMAL_SHUTDOWN
+
+
+
+
+ ER_GOT_SIGNAL
+
+
+
+
+ ER_SHUTDOWN_COMPLETE
+
+
+
+
+ ER_FORCING_CLOSE
+
+
+
+
+ ER_IPSOCK_ERROR
+
+
+
+
+ ER_NO_SUCH_INDEX
+
+
+
+
+ ER_WRONG_FIELD_TERMINATORS
+
+
+
+
+ ER_BLOBS_AND_NO_TERMINATED
+
+
+
+
+ ER_TEXTFILE_NOT_READABLE
+
+
+
+
+ ER_FILE_EXISTS_ERROR
+
+
+
+
+ ER_LOAD_INFO
+
+
+
+
+ ER_ALTER_INFO
+
+
+
+
+ ER_WRONG_SUB_KEY
+
+
+
+
+ ER_CANT_REMOVE_ALL_FIELDS
+
+
+
+
+ ER_CANT_DROP_FIELD_OR_KEY
+
+
+
+
+ ER_INSERT_INFO
+
+
+
+
+ ER_UPDATE_TABLE_USED
+
+
+
+
+ ER_NO_SUCH_THREAD
+
+
+
+
+ ER_KILL_DENIED_ERROR
+
+
+
+
+ ER_NO_TABLES_USED
+
+
+
+
+ ER_TOO_BIG_SET
+
+
+
+
+ ER_NO_UNIQUE_LOGFILE
+
+
+
+
+ ER_TABLE_NOT_LOCKED_FOR_WRITE
+
+
+
+
+ ER_TABLE_NOT_LOCKED
+
+
+
+
+ ER_BLOB_CANT_HAVE_DEFAULT
+
+
+
+
+ ER_WRONG_DB_NAME
+
+
+
+
+ ER_WRONG_TABLE_NAME
+
+
+
+
+ ER_TOO_BIG_SELECT
+
+
+
+
+ ER_UNKNOWN_ERROR
+
+
+
+
+ ER_UNKNOWN_PROCEDURE
+
+
+
+
+ ER_WRONG_PARAMCOUNT_TO_PROCEDURE
+
+
+
+
+ ER_WRONG_PARAMETERS_TO_PROCEDURE
+
+
+
+
+ ER_UNKNOWN_TABLE
+
+
+
+
+ ER_FIELD_SPECIFIED_TWICE
+
+
+
+
+ ER_INVALID_GROUP_FUNC_USE
+
+
+
+
+ ER_UNSUPPORTED_EXTENSION
+
+
+
+
+ ER_TABLE_MUST_HAVE_COLUMNS
+
+
+
+
+ ER_RECORD_FILE_FULL
+
+
+
+
+ ER_UNKNOWN_CHARACTER_SET
+
+
+
+
+ ER_TOO_MANY_TABLES
+
+
+
+
+ ER_TOO_MANY_FIELDS
+
+
+
+
+ ER_TOO_BIG_ROWSIZE
+
+
+
+
+ ER_STACK_OVERRUN
+
+
+
+
+ ER_WRONG_OUTER_JOIN
+
+
+
+
+ ER_NULL_COLUMN_IN_INDEX
+
+
+
+
+ ER_CANT_FIND_UDF
+
+
+
+
+ ER_CANT_INITIALIZE_UDF
+
+
+
+
+ ER_UDF_NO_PATHS
+
+
+
+
+ ER_UDF_EXISTS
+
+
+
+
+ ER_CANT_OPEN_LIBRARY
+
+
+
+
+ ER_CANT_FIND_DL_ENTRY
+
+
+
+
+ ER_FUNCTION_NOT_DEFINED
+
+
+
+
+ ER_HOST_IS_BLOCKED
+
+
+
+
+ ER_HOST_NOT_PRIVILEGED
+
+
+
+
+ ER_PASSWORD_ANONYMOUS_USER
+
+
+
+
+ ER_PASSWORD_NOT_ALLOWED
+
+
+
+
+ ER_PASSWORD_NO_MATCH
+
+
+
+
+ ER_UPDATE_INFO
+
+
+
+
+ ER_CANT_CREATE_THREAD
+
+
+
+
+ ER_WRONG_VALUE_COUNT_ON_ROW
+
+
+
+
+ ER_CANT_REOPEN_TABLE
+
+
+
+
+ ER_INVALID_USE_OF_NULL
+
+
+
+
+ ER_REGEXP_ERROR
+
+
+
+
+ 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_UNUSED1
+
+
+
+
+ ER_UNUSED2
+
+
+
+
+ ER_ABORTING_CONNECTION
+
+
+
+
+ ER_NET_PACKET_TOO_LARGE
+
+
+
+
+ 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_UNUSED3
+
+
+
+
+ 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
+
+
+
+
+ Query execution was interrupted (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_OBSOLETE_COL_COUNT_DOESNT_MATCH_CORRUPTED
+
+
+
+
+ ER_OBSOLETE_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_OLD_UNUSED
+
+
+
+
+ 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_TX_CHARACTERISTICS
+
+
+
+
+ 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_NEVER_USED
+
+
+
+
+ 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_CANT_EXECUTE_IN_READ_ONLY_TRANSACTION
+
+
+
+
+ is thrown when MySQL Server returns an error code, or there is a
+ communication error with the server.
+
+
+
+
+ A value identifying the kind of error. Prefer to use the property.
+
+
+
+
+ A value identifying the kind of error.
+
+
+
+
+ A SQLSTATE code identifying the kind of error.
+
+ See SQLSTATE for more information.
+
+
+
+ Represents MySQL's internal GEOMETRY format: https://dev.mysql.com/doc/refman/8.0/en/gis-data-formats.html#gis-internal-format
+
+
+
+
+ Constructs a from a SRID and Well-known Binary bytes.
+
+ The SRID (Spatial Reference System ID).
+ The Well-known Binary serialization of the geometry.
+ A new containing the specified geometry.
+
+
+
+ Constructs a from MySQL's internal format.
+
+ The raw bytes of MySQL's internal GEOMETRY format.
+ A new containing the specified geometry.
+ See Internal Geometry Storage Format.
+
+
+
+ The Spatial Reference System ID of this geometry.
+
+
+
+
+ The Well-known Binary serialization of this geometry.
+
+
+
+
+ The internal MySQL form of this geometry.
+
+
+
+
+ Determines which column type (if any) should be read as a System.Guid.
+
+
+
+
+ Same as Char36 if OldGuids=False; same as LittleEndianBinary16 if OldGuids=True.
+
+
+
+
+ No column types are read/written as a Guid
.
+
+
+
+
+ All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens,
+ which matches UUID().
+
+
+
+
+ All CHAR(32) columns are read/written as a Guid using lowercase hex without hyphens.
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using big-endian byte order,
+ which matches UUID_TO_BIN(x).
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using big-endian byte order with time parts swapped,
+ which matches UUID_TO_BIN(x,1).
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using little-endian byte order, i.e. the byte order
+ used by and .
+
+
+
+
+ Escapes single and double quotes, and backslashes in .
+
+
+
+
+ Each new connection opened for a connection pool uses the next host name (sequentially with wraparound).
+
+
+
+
+ Each new connection tries to connect to the first host; subsequent hosts are used only if connecting to the first one fails.
+
+
+
+
+ Servers are tried in random order.
+
+
+
+
+ Servers are tried in ascending order of number of currently-open connections.
+
+
+
+
+ Gets or sets a value that indicates whether the bulk copy operation should be aborted.
+
+
+
+
+ Gets a value that returns the number of rows copied during the current bulk copy operation.
+
+
+
+
+ Represents the method that handles the event of a .
+
+
+
+
+ SSL connection options.
+
+
+
+
+ Do not use SSL.
+
+
+
+
+ Use SSL if the server supports it.
+
+
+
+
+ Always use SSL. Deny connection if server does not support SSL.
+
+
+
+
+ Always use SSL. Validate the Certificate Authority but tolerate name mismatch.
+
+
+
+
+ Always use SSL. Fail if the host name is not correct.
+
+
+
+
+ Removes the named transaction savepoint with the specified . No commit or rollback occurs.
+
+ The savepoint name.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously removes the named transaction savepoint with the specified . No commit or rollback occurs.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Rolls back the current transaction to the savepoint with the specified without aborting the transaction.
+
+ The savepoint name.
+ The name must have been created with , but not released by calling .
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously rolls back the current transaction to the savepoint with the specified without aborting the transaction.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The name must have been created with , but not released by calling .
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Sets a named transaction savepoint with the specified . If the current transaction
+ already has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+ The savepoint name.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously sets a named transaction savepoint with the specified . If the current transaction
+ already has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ MySQL character set codes.
+
+ Obtained from SELECT id, collation_name FROM information_schema.collations ORDER BY id; on MySQL 8.0.16.
+
+
+
+ Field cannot be NULL.
+
+
+
+
+ Field is part of a primary key.
+
+
+
+
+ Field is part of a unique key.
+
+
+
+
+ Field is part of a nonunique key.
+
+
+
+
+ Field is a BLOB or TEXT (deprecated).
+
+
+
+
+ Field has the UNSIGNED attribute.
+
+
+
+
+ Field has the ZEROFILL attribute.
+
+
+
+
+ Field has the BINARY attribute.
+
+
+
+
+ Field is an ENUM.
+
+
+
+
+ Field has the AUTO_INCREMENT attribute.
+
+
+
+
+ Field is a TIMESTAMP (deprecated).
+
+
+
+
+ Field is a SET.
+
+
+
+
+ Field is numeric.
+
+
+
+
+ See MySQL documentation.
+
+
+
+
+ Returns true if contains an EOF packet.
+ Note that EOF packets can appear in places where a length-encoded integer (which starts with the same signature byte) may appear, so the length
+ has to be checked to verify that it is an EOF packet.
+
+ The payload to examine.
+ true if this is an EOF packet; otherwise, false.
+
+
+
+ The MySQL Capability flags.
+
+
+
+
+ No specified capabilities.
+
+
+
+
+ Use the improved version of Old Password Authentication.
+
+
+
+
+ Send found rows instead of affected rows in EOF_Packet.
+
+
+
+
+ Longer flags in Protocol::ColumnDefinition320.
+
+
+
+
+ Database (schema) name can be specified on connect in Handshake Response Packet.
+
+
+
+
+ Do not permit database.table.column.
+
+
+
+
+ Supports compression.
+
+
+
+
+ Special handling of ODBC behavior.
+
+
+
+
+ Enables the LOCAL INFILE request of LOAD DATA|XML.
+
+
+
+
+ Parser can ignore spaces before '('.
+
+
+
+
+ Supports the 4.1 protocol.
+
+
+
+
+ Server: Supports interactive and noninteractive clients. Client: The session wait_timeout
variable is set to the value of the session interactive_timeout
variable.
+
+
+
+
+ Supports SSL.
+
+
+
+
+ Can send status flags in EOF_Packet.
+
+
+
+
+ Supports Authentication::Native41.
+
+
+
+
+ Can handle multiple statements per COM_QUERY and COM_STMT_PREPARE.
+
+
+
+
+ Can send multiple resultsets for COM_QUERY.
+
+
+
+
+ Can send multiple resultsets for COM_STMT_EXECUTE.
+
+
+
+
+ Sends extra data in Initial Handshake Packet and supports the pluggable authentication protocol.
+
+
+
+
+ Permits connection attributes in Protocol::HandshakeResponse41.
+
+
+
+
+ Understands length-encoded integer for auth response data in Protocol::HandshakeResponse41.
+
+
+
+
+ Announces support for expired password extension.
+
+
+
+
+ Can set SERVER_SESSION_STATE_CHANGED in the Status Flags and send session-state change data after a OK packet.
+
+
+
+
+ Can send OK after a Text Resultset.
+
+
+
+
+ Client supports progress indicator.
+
+
+
+
+ Client supports COM_MULTI (i.e., CommandKind.Multi)
+
+
+
+
+ Support of array binding.
+
+
+
+
+ is a class that holds an instance of .
+ Its primary difference from is that it's a reference type, so mutations
+ to this object are visible to other objects that hold a reference to it.
+
+
+
+
+ Hashes a password with the "Secure Password Authentication" method.
+
+ The 20-byte random challenge (from the "auth-plugin-data" in the initial handshake).
+ The password to hash.
+ A 20-byte password hash.
+ See Secure Password Authentication.
+
+
+
+ Helper class to translate NegotiateStream framing for SPNEGO token
+ into MySQL protocol packets.
+
+ Serves as underlying stream for System.Net.NegotiateStream
+ to perform MariaDB's auth_gssapi_client authentication.
+
+ NegotiateStream protocol is described in e.g here
+ https://winprotocoldoc.blob.core.windows.net/productionwindowsarchives/MS-NNS/[MS-NNS].pdf
+ We only use Handshake Messages for authentication.
+
+
+
+
+ The remaining timeout (in milliseconds) for the next I/O read. Use to represent no (or, infinite) timeout.
+
+
+
+
+ Reads data from this byte handler.
+
+ The buffer to read into.
+ The to use when reading data.
+ A holding the number of bytes read. If reading failed, this will be zero.
+
+
+
+ Writes data to this byte handler.
+
+ The data to write.
+ The to use when writing.
+ A . The value of this object is not defined.
+
+
+
+ Specifies whether to perform synchronous or asynchronous I/O.
+
+
+
+
+ Use synchronous I/O.
+
+
+
+
+ Use asynchronous I/O.
+
+
+
+
+ Starts a new "conversation" with the MySQL Server. This resets the "sequence id"
+ and should be called when a new command begins.
+
+
+
+
+ Gets or sets the underlying that data is read from and written to.
+
+
+
+
+ Reads the next payload.
+
+ An that will cache any buffers allocated during this
+ read. (To disable caching, pass new ArraySegmentHolder<byte>
so the cache will be garbage-collected
+ when this method returns.)
+ The to use if there is a protocol error.
+ The to use when reading data.
+ An containing the data that was read. This
+ will be valid to read from until the next time or
+ is called.
+
+
+
+ Writes a payload.
+
+ The data to write.
+ The to use when writing.
+ A . The value of this object is not defined.
+
+
+
+ Specifies how to handle protocol errors.
+
+
+
+
+ Throw an exception when there is a protocol error. This is the default.
+
+
+
+
+ Ignore any protocol errors.
+
+
+
+
+ A transaction is active.
+
+
+
+
+ Auto-commit is enabled
+
+
+
+
+ Used by Binary Protocol Resultset to signal that COM_STMT_FETCH must be used to fetch the row-data.
+
+
+
+
+ In a read-only transaction.
+
+
+
+
+ Connection state information has changed.
+
+
+
+
+ SESSION_TRACK_SYSTEM_VARIABLES: one or more system variables changed
+
+
+
+
+ SESSION_TRACK_SCHEMA: schema changed
+
+
+
+
+ SESSION_TRACK_STATE_CHANGE: "track state change" changed
+
+
+
+
+ SESSION_TRACK_GTIDS: "track GTIDs" changed
+
+
+
+
+ A sentinel value indicating no (or infinite) timeout.
+
+
+
+
+ A wrapper around a resizable array. This type is intended to be used with .
+
+
+
+
+ Do not call this method directly; use .
+
+
+
+
+ An that supports having its underlying array reallocated and resized.
+
+
+
+
+ Adds a timer that will invoke in approximately milliseconds.
+
+ The time (in milliseconds) to wait before invoking .
+ The callback to invoke.
+ A timer ID that can be passed to to cancel the timer.
+
+
+
+ Cancels the timer with the specified ID.
+
+ The timer ID (returned from ).
+ true if the timer was removed; otherwise, false. This method will return false if the specified timer has already fired.
+
+
+
+ Loads a RSA key from a PEM string.
+
+ The key, in PEM format.
+ An RSA key.
+
+
+
+ Returns a new that starts at index into .
+
+ The from which to create a slice.
+ The non-negative, zero-based starting index of the new slice (relative to of .
+ A new starting at the th element of and continuing to the end of .
+
+
+
+ Returns a new that starts at index into and has a length of .
+
+ The from which to create a slice.
+ The non-negative, zero-based starting index of the new slice (relative to of .
+ The non-negative length of the new slice.
+ A new of length , starting at the th element of .
+
+
+
+ Returns a new that is a slice of starting at .
+
+ The array to slice.
+ The offset at which to slice.
+ The length of the slice.
+ A new that is a slice of from to the end.
+
+
+
+ Finds the next index of in , starting at index .
+
+ The array to search.
+ The offset at which to start searching.
+ The pattern to find in .
+ The offset of within , or -1 if was not found.
+
+
+
+ Resizes to hold at least items.
+
+ may be null, in which case a new will be allocated.
+
+
+
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netstandard1.3/MySqlConnector.dll b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netstandard1.3/MySqlConnector.dll
new file mode 100644
index 0000000..03b98d7
Binary files /dev/null and b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netstandard1.3/MySqlConnector.dll differ
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netstandard1.3/MySqlConnector.xml b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netstandard1.3/MySqlConnector.xml
new file mode 100644
index 0000000..2484433
--- /dev/null
+++ b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netstandard1.3/MySqlConnector.xml
@@ -0,0 +1,4929 @@
+
+
+
+ MySqlConnector
+
+
+
+
+ A registry of known authentication plugins.
+
+
+
+
+ Registers the specified authentication plugin. The name of this plugin must be unique.
+
+ The authentication plugin.
+
+
+
+ The primary interface implemented by an authentication plugin.
+
+
+
+
+ The authentication plugin name.
+
+
+
+
+ Creates the authentication response.
+
+ The client's password.
+ The authentication data supplied by the server; this is the auth method data
+ from the Authentication
+ Method Switch Request Packet.
+
+
+
+
+ encapsulates a list of and the current position within that list.
+
+
+
+
+ The commands in the list.
+
+
+
+
+ The index of the current command.
+
+
+
+
+ If the current command is a prepared statement, the index of the current prepared statement for that command.
+
+
+
+
+ Returns true if the connection pool is empty, i.e., all connections are in use. Note that in a highly-multithreaded
+ environment, the value of this property may be stale by the time it's returned.
+
+
+
+
+ Returns the stored procedure cache for this , lazily creating it on demand.
+ This method may return a different object after has been called. The returned
+ object is shared between multiple threads and is only safe to use after taking a lock on the
+ object itself.
+
+
+
+
+ Examines all the objects in to determine if any
+ have an owning that has been garbage-collected. If so, assumes that the connection
+ was not properly disposed and returns the session to the pool.
+
+
+
+
+ The that was used to create this .!--
+ This object must not be mutated.
+
+
+
+
+ provides an internal abstraction over operations that can be cancelled: and .
+
+
+
+
+ Returns a unique ID for all implementations of .
+
+
+
+
+
+ Causes the effective command timeout to be reset back to the value specified by .
+
+ As per the MSDN documentation,
+ "This property is the cumulative time-out (for all network packets that are read during the invocation of a method) for all network reads during command
+ execution or processing of the results. A time-out can still occur after the first row is returned, and does not include user processing time, only network
+ read time. For example, with a 30 second time out, if Read requires two network packets, then it has 30 seconds to read both network packets. If you call
+ Read again, it will have another 30 seconds to read any data that it requires."
+ The method is called by public ADO.NET API methods to reset the effective time remaining at the beginning of a new
+ method call.
+
+
+
+ creates the data for an "execute query" command for one or more objects in a command list.
+
+
+
+
+ Writes the payload for an "execute query" command to .
+
+ The command list and its current position. This will be updated to the position of the next command to write (or past the end if there are no more commands).
+ A for all the stored procedures in the command list, if any.
+ The to write the payload to.
+ true if a command was written; otherwise, false (if there were no more commands in the list).
+
+
+
+ Returns an containing in the order they
+ should be tried to satisfy the load balancing policy.
+
+
+
+
+ provides an internal abstraction over and .
+
+
+
+
+ provides an abstraction over iterating through a sequence of
+ rows, where each row can fill an array of field values.
+
+
+
+
+ represents an individual SQL statement that's been parsed
+ from a string possibly containing multiple semicolon-delimited SQL statements.
+
+
+
+
+ The bytes for this statement that will be written on the wire.
+
+
+
+
+ The names of the parameters (if known) of the parameters in the prepared statement. There
+ is one entry in this list for each parameter, which will be null if the name is unknown.
+
+
+
+
+ The indexes of the parameters in the prepared statement. There is one entry in this list for
+ each parameter; it will be -1 if the parameter is named.
+
+
+
+
+ wraps a collection of objects.
+ It implements to return the memory backing the statements to a shared pool.
+
+
+
+
+ is a statement that has been prepared on the MySQL Server.
+
+
+
+
+ Disposes and sets to null, ignoring any
+ or that is thrown.
+
+ An type.
+ The object to dispose.
+
+
+
+ Writes the text of to , encoded in UTF-8.
+
+ The command.
+ The cached procedures.
+ The output writer.
+ true if a complete command was written; otherwise, false.
+
+
+
+ The statement is complete (apart from potentially needing a semicolon or newline).
+
+
+
+
+ The statement needs a newline (e.g., to terminate a final comment).
+
+
+
+
+ The statement needs a semicolon (if another statement is going to be concatenated to it).
+
+
+
+
+ Implementations of write logs to a particular target.
+
+
+
+
+ Returns true if logging for this logger is enabled at the specified level.
+
+ The log level.
+ true if logging is enabled; otherwise, false.
+
+
+
+ Writes a log message to the target.
+
+ The log level.
+ The log message. See documentation for for notes on interpreting {0} within this string.
+ If not null or empty, then includes formatting placeholders (e.g., {0})
+ which must be replaced with the arguments in , using or similar.
+ If null or an empty array, then is a literal string; any curly braces within it must be treated as literal characters,
+ not formatting placeholders.
+ If not null, an associated with the log message.
+ This method may be called from multiple threads and must be thread-safe. This method may be called
+ even if would return false for ; the implementation must
+ check if logging is enabled for that level.
+
+
+
+ Implementations of create logger instances.
+
+
+
+
+ Creates a logger with the specified name. This method may be called from multiple threads and must be thread-safe.
+
+
+
+
+ Controls logging for MySqlConnector.
+
+
+
+
+ Allows the to be set for this library. can
+ be set once, and must be set before any other library methods are used.
+
+
+
+
+ is an implementation of that does nothing.
+
+ This is the default logging implementation unless is set.
+
+
+
+ Returns false.
+
+
+
+
+ Ignores the specified log message.
+
+
+
+
+ Returns a singleton instance of .
+
+
+
+
+ Creates loggers that do nothing.
+
+
+
+
+ Returns a .
+
+
+
+
+ implements the new
+ ADO.NET batching API.
+ It is currently experimental and may change in the future.
+ When using MariaDB (10.2 or later), the commands will be sent in a single batch, reducing network
+ round-trip time. With other MySQL Servers, this may be no more efficient than executing the commands
+ individually.
+ Example usage:
+
+ using var connection = new MySqlConnection("...connection string...");
+ await connection.OpenAsync();
+
+ using var batch = new MySqlBatch(connection)
+ {
+ BatchCommands =
+ {
+ new MySqlBatchCommand("INSERT INTO departments(name) VALUES(@name);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Sales"),
+ },
+ },
+ new MySqlBatchCommand("SET @dept_id = last_insert_id()"),
+ new MySqlBatchCommand("INSERT INTO employees(name, department_id) VALUES(@name, @dept_id);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Jim Halpert"),
+ },
+ },
+ new MySqlBatchCommand("INSERT INTO employees(name, department_id) VALUES(@name, @dept_id);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Dwight Schrute"),
+ },
+ },
+ },
+ };
+ await batch.ExecuteNonQueryAsync();
+
+
+ The proposed ADO.NET API that is based on is not finalized. This API is experimental and may change in the future.
+
+
+
+ Initializes a new object. The property must be set before this object can be used.
+
+
+
+
+ Initializes a new object, setting the and if specified.
+
+ (Optional) The to use.
+ (Optional) The to use.
+
+
+
+ The collection of commands that will be executed in the batch.
+
+
+
+
+ Executes all the commands in the batch, returning a that can iterate
+ over the result sets. If multiple resultsets are returned, use
+ to access them.
+
+
+
+
+ Executes all the commands in the batch, returning a that can iterate
+ over the result sets. If multiple resultsets are returned, use
+ to access them.
+
+ A token to cancel the asynchronous operation.
+ A containing the result of the asynchronous operation.
+
+
+
+ lets you efficiently load a MySQL Server table with data from another source.
+ It is similar to the SqlBulkCopy class
+ for SQL Server.
+ Due to security features
+ in MySQL Server, the connection string must have AllowLoadLocalInfile=true in order
+ to use this class.
+ For data that is in CSV or TSV format, use to bulk load the file.
+ Example code:
+
+ // NOTE: to copy data between tables in the same database, use INSERT ... SELECT
+ // https://dev.mysql.com/doc/refman/8.0/en/insert-select.html
+ var dataTable = GetDataTableFromExternalSource();
+
+ using var connection = new MySqlConnection("...;AllowLoadLocalInfile=True");
+ await connection.OpenAsync();
+ var bulkCopy = new MySqlBulkCopy(connection);
+ bulkCopy.DestinationTableName = "some_table_name";
+ await bulkCopy.WriteToServerAsync(dataTable);
+
+
+ Note: This API is a unique feature of MySqlConnector; you must
+ switch to MySqlConnector in order to use it.
+ This API is experimental and may change in the future.
+
+
+
+
+ Initializes a object with the specified connection, and optionally the active transaction.
+
+ The to use.
+ (Optional) The to use.
+
+
+
+ The number of seconds for the operation to complete before it times out, or 0 for no timeout.
+
+
+
+
+ The name of the table to insert rows into.
+
+ This name needs to be quoted if it contains special characters.
+
+
+
+ If non-zero, this specifies the number of rows to be processed before generating a notification event.
+
+
+
+
+ This event is raised every time that the number of rows specified by the property have been processed.
+
+
+ Receipt of a RowsCopied event does not imply that any rows have been sent to the server or committed.
+ The property can be set to true by the event handler to abort the copy.
+
+
+
+
+ A collection of objects. If the columns being copied from the
+ data source line up one-to-one with the columns in the destination table then populating this collection is
+ unnecessary. Otherwise, this should be filled with a collection of objects
+ specifying how source columns are to be mapped onto destination columns. If one column mapping is specified,
+ then all must be specified.
+
+
+
+
+ Returns the number of rows that were copied (after WriteToServer(Async)
finishes).
+
+
+
+
+ Copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ The to copy from.
+
+
+
+ Asynchronously copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ The to copy from.
+ A token to cancel the asynchronous operation.
+
+
+
+ Use to specify how to map columns in the source data to
+ columns in the destination table when using .
+ Set to the index of the source column to map. Set to
+ either the name of a column in the destination table, or the name of a user-defined variable.
+ If a user-defined variable, you can use to specify a MySQL expression that assigns
+ its value to destination column.
+ Source columns that don't have an entry in will be ignored
+ (unless the collection is empty, in which case all columns will be mapped
+ one-to-one).
+ MySqlConnector will transmit all binary data as hex, so any expression that operates on it
+ must decode it with the UNHEX function first. (This will be performed automatically if no
+ is specified, but will be necessary to specify manually for more complex expressions.)
+ Example code:
+
+ new MySqlBulkCopyColumnMapping
+ {
+ SourceOrdinal = 2,
+ DestinationColumn = "user_name",
+ },
+ new MySqlBulkCopyColumnMapping
+ {
+ SourceOrdinal = 0,
+ DestinationColumn = "@tmp",
+ Expression = "column_value = @tmp * 2",
+ },
+
+
+
+
+
+ Initializes with the default values.
+
+
+
+
+ Initializes to the specified values.
+
+ The ordinal position of the source column.
+ The name of the destination column.
+ The optional expression to be used to set the destination column.
+
+
+
+ The ordinal position of the source column to map from.
+
+
+
+
+ The name of the destination column to copy to. To use an expression, this should be the name of a unique user-defined variable.
+
+
+
+
+ An optional expression for setting a destination column. To use an expression, the should
+ be set to the name of a user-defined variable and this expression should set a column using that variable.
+
+ To populate a binary column, you must set to a variable name, and to an
+ expression that uses UNHEX
to set the column value, e.g., `destColumn` = UNHEX(@variableName)
.
+
+
+
+ lets you efficiently load a MySQL Server Table with data from a CSV or TSV file or .
+ Example code:
+
+ using var connection = new MySqlConnection("...;AllowLoadLocalInfile=True");
+ await connection.OpenAsync();
+ var bulkLoader = new MySqlBulkLoader(connection)
+ {
+ FileName = @"C:\Path\To\file.csv",
+ TableName = "destination",
+ CharacterSet = "UTF8",
+ NumberOfLinesToSkip = 1,
+ FieldTerminator = ",",
+ FieldQuotationCharacter = '"',
+ FieldQuotationOptional = true,
+ Local = true,
+ }
+ var rowCount = await bulkLoader.LoadAsync();
+
+
+ Due to security features
+ in MySQL Server, the connection string must have AllowLoadLocalInfile=true in order to use a local source.
+
+
+
+
+ (Optional) The character set of the source data. By default, the database's character set is used.
+
+
+
+
+ (Optional) A list of the column names in the destination table that should be filled with data from the input file.
+
+
+
+
+ A value that specifies how conflicts are resolved (default ).
+
+
+
+
+ The to use.
+
+
+
+
+ (Optional) The character used to escape instances of within field values.
+
+
+
+
+ (Optional) A list of expressions used to set field values from the columns in the source data.
+
+
+
+
+ (Optional) The character used to enclose fields in the source data.
+
+
+
+
+ Whether quoting fields is optional (default false).
+
+
+
+
+ (Optional) The string fields are terminated with.
+
+
+
+
+ The name of the local (if is true) or remote (otherwise) file to load.
+ Either this or must be set.
+
+
+
+
+ (Optional) A prefix in each line that should be skipped when loading.
+
+
+
+
+ (Optional) The string lines are terminated with.
+
+
+
+
+ Whether a local file is being used (default true).
+
+
+
+
+ The number of lines to skip at the beginning of the file (default 0).
+
+
+
+
+ A giving the priority to load with (default ).
+
+
+
+
+ A containing the data to load. Either this or must be set.
+ The property must be true if this is set.
+
+
+
+
+ The name of the table to load into. If this is a reserved word or contains spaces, it must be quoted.
+
+
+
+
+ The timeout (in milliseconds) to use.
+
+
+
+
+ Initializes a new instance of the class with the specified .
+
+ The to use.
+
+
+
+ Loads all data in the source file or stream into the destination table.
+
+ The number of rows inserted.
+
+
+
+ Asynchronously loads all data in the source file or stream into the destination table.
+
+ A that will be completed with the number of rows inserted.
+
+
+
+ Asynchronously loads all data in the source file or stream into the destination table.
+
+ A token to cancel the asynchronous operation.
+ A that will be completed with the number of rows inserted.
+
+
+
+ Do not use certificate store
+
+
+
+
+ Use certificate store for the current user
+
+
+
+
+ User certificate store for the machine
+
+
+
+
+ represents a SQL statement or stored procedure name
+ to execute against a MySQL database.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class, setting to .
+
+ The text to assign to .
+
+
+
+ Initializes a new instance of the class with the specified and .
+
+ The to use.
+ The active , if any.
+
+
+
+ Initializes a new instance of the class with the specified command text and .
+
+ The text to assign to .
+ The to use.
+
+
+
+ Initializes a new instance of the class with the specified command text,, and .
+
+ The text to assign to .
+ The to use.
+ The active , if any.
+
+
+
+ The collection of objects for this command.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Holds the first automatically-generated ID for a value inserted in an AUTO_INCREMENT column in the last statement.
+
+
+ See LAST_INSERT_ID() for more information.
+
+
+
+
+ Registers as a callback with if cancellation is supported.
+
+ The .
+ An object that must be disposed to revoke the cancellation registration.
+ This method is more efficient than calling token.Register(Command.Cancel)
because it avoids
+ unnecessary allocations.
+
+
+
+ represents a connection to a MySQL database.
+
+
+
+
+ Begins a database transaction.
+
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction.
+
+ The for the transaction.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction.
+
+ The for the transaction.
+ If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ The for the transaction.
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ The for the transaction.
+ If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Resets the session state of the current open connection; this clears temporary tables and user-defined variables.
+
+ A token to cancel the asynchronous operation.
+ A ValueTask representing the asynchronous operation.
+ This is an optional feature of the MySQL protocol and may not be supported by all servers.
+ It's known to be supported by MySQL Server 5.7.3 (and later) and MariaDB 10.2.4 (and later).
+ Other MySQL-compatible servers or proxies may not support this command.
+
+
+
+ The connection ID from MySQL Server.
+
+
+
+
+ Clears the connection pool that belongs to.
+
+ The whose connection pool will be cleared.
+
+
+
+ Asynchronously clears the connection pool that belongs to.
+
+ The whose connection pool will be cleared.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+
+
+
+ Clears all connection pools.
+
+
+
+
+ Asynchronously clears all connection pools.
+
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+
+
+
+ Gets the time (in seconds) to wait while trying to establish a connection
+ before terminating the attempt and generating an error. This value
+ is controlled by ,
+ which defaults to 15 seconds.
+
+
+
+
+ Creates a object for executing batched commands.
+
+
+
+
+
+ Creates a object (that can be used with ).
+
+
+
+
+
+ Returns an unopened copy of this connection with a new connection string. If the Password
+ in is not set, the password from this connection will be used.
+ This allows creating a new connection with the same security information while changing other options,
+ such as database or pooling.
+
+ The new connection string to be used.
+ A new with different connection string options but
+ the same password as this connection (unless overridden by ).
+
+
+
+ Specifies the type of connection to make to the server.
+
+
+
+
+ TCP/IP connection.
+
+
+
+
+ Named pipe connection. Only works on Windows.
+
+
+
+
+ Unix domain socket connection. Only works on Unix/Linux.
+
+
+
+
+ Shared memory connection. Not currently supported.
+
+
+
+
+ The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error.
+ The default value is 15.
+
+
+
+
+ An implementation of that creates MySqlConnector objects.
+
+
+
+
+ Provides an instance of that can create MySqlConnector objects.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Returns true.
+
+
+
+
+ Returns metadata about the columns in the result set.
+
+ A containing metadata about the result set.
+
+
+
+ Returns metadata about the columns in the result set.
+
+ A token to cancel the operation.
+ A containing containing metadata about the result set.
+ This method runs synchronously; prefer to call to avoid the overhead of allocating an unnecessary Task.
+
+
+
+ The used when reading from the database.
+
+
+
+
+ Use when reading; allow any in command parameters.
+
+
+
+
+ Use when reading; reject in command parameters.
+
+
+
+
+ Use when reading; reject in command parameters.
+
+
+
+
+ MySQL Server error codes. Taken from Server Error Codes and Messages.
+
+
+
+
+ Not all rows from the source supplied to were copied to .
+
+
+
+
+ The timeout period specified by elapsed before the operation completed.
+
+
+
+
+ ER_HASHCHK
+
+
+
+
+ ER_NISAMCHK
+
+
+
+
+ ER_NO
+
+
+
+
+ ER_YES
+
+
+
+
+ ER_CANT_CREATE_FILE
+
+
+
+
+ ER_CANT_CREATE_TABLE
+
+
+
+
+ ER_CANT_CREATE_DB
+
+
+
+
+ ER_DB_CREATE_EXISTS
+
+
+
+
+ ER_DB_DROP_EXISTS
+
+
+
+
+ ER_DB_DROP_DELETE
+
+
+
+
+ ER_DB_DROP_RMDIR
+
+
+
+
+ ER_CANT_DELETE_FILE
+
+
+
+
+ ER_CANT_FIND_SYSTEM_REC
+
+
+
+
+ ER_CANT_GET_STAT
+
+
+
+
+ ER_CANT_GET_WD
+
+
+
+
+ ER_CANT_LOCK
+
+
+
+
+ ER_CANT_OPEN_FILE
+
+
+
+
+ ER_FILE_NOT_FOUND
+
+
+
+
+ ER_CANT_READ_DIR
+
+
+
+
+ ER_CANT_SET_WD
+
+
+
+
+ ER_CHECKREAD
+
+
+
+
+ ER_DISK_FULL
+
+
+
+
+ ER_DUP_KEY
+
+
+
+
+ ER_ERROR_ON_CLOSE
+
+
+
+
+ ER_ERROR_ON_READ
+
+
+
+
+ ER_ERROR_ON_RENAME
+
+
+
+
+ ER_ERROR_ON_WRITE
+
+
+
+
+ ER_FILE_USED
+
+
+
+
+ ER_FILSORT_ABORT
+
+
+
+
+ ER_FORM_NOT_FOUND
+
+
+
+
+ ER_GET_ERRNO
+
+
+
+
+ ER_ILLEGAL_HA
+
+
+
+
+ ER_KEY_NOT_FOUND
+
+
+
+
+ ER_NOT_FORM_FILE
+
+
+
+
+ ER_NOT_KEYFILE
+
+
+
+
+ ER_OLD_KEYFILE
+
+
+
+
+ ER_OPEN_AS_READONLY
+
+
+
+
+ ER_OUTOFMEMORY
+
+
+
+
+ ER_OUT_OF_SORTMEMORY
+
+
+
+
+ ER_UNEXPECTED_EOF
+
+
+
+
+ ER_CON_COUNT_ERROR
+
+
+
+
+ ER_OUT_OF_RESOURCES
+
+
+
+
+ ER_BAD_HOST_ERROR
+
+
+
+
+ ER_HANDSHAKE_ERROR
+
+
+
+
+ ER_DBACCESS_DENIED_ERROR
+
+
+
+
+ ER_ACCESS_DENIED_ERROR
+
+
+
+
+ ER_NO_DB_ERROR
+
+
+
+
+ ER_UNKNOWN_COM_ERROR
+
+
+
+
+ ER_BAD_NULL_ERROR
+
+
+
+
+ ER_BAD_DB_ERROR
+
+
+
+
+ ER_TABLE_EXISTS_ERROR
+
+
+
+
+ ER_BAD_TABLE_ERROR
+
+
+
+
+ ER_NON_UNIQ_ERROR
+
+
+
+
+ ER_SERVER_SHUTDOWN
+
+
+
+
+ ER_BAD_FIELD_ERROR
+
+
+
+
+ ER_WRONG_FIELD_WITH_GROUP
+
+
+
+
+ ER_WRONG_GROUP_FIELD
+
+
+
+
+ ER_WRONG_SUM_SELECT
+
+
+
+
+ ER_WRONG_VALUE_COUNT
+
+
+
+
+ ER_TOO_LONG_IDENT
+
+
+
+
+ ER_DUP_FIELDNAME
+
+
+
+
+ ER_DUP_KEYNAME
+
+
+
+
+ ER_DUP_ENTRY
+
+
+
+
+ ER_WRONG_FIELD_SPEC
+
+
+
+
+ You have an error in your SQL syntax (ER_PARSE_ERROR).
+
+
+
+
+ ER_EMPTY_QUERY
+
+
+
+
+ ER_NONUNIQ_TABLE
+
+
+
+
+ ER_INVALID_DEFAULT
+
+
+
+
+ ER_MULTIPLE_PRI_KEY
+
+
+
+
+ ER_TOO_MANY_KEYS
+
+
+
+
+ ER_TOO_MANY_KEY_PARTS
+
+
+
+
+ ER_TOO_LONG_KEY
+
+
+
+
+ ER_KEY_COLUMN_DOES_NOT_EXITS
+
+
+
+
+ ER_BLOB_USED_AS_KEY
+
+
+
+
+ ER_TOO_BIG_FIELDLENGTH
+
+
+
+
+ ER_WRONG_AUTO_KEY
+
+
+
+
+ ER_READY
+
+
+
+
+ ER_NORMAL_SHUTDOWN
+
+
+
+
+ ER_GOT_SIGNAL
+
+
+
+
+ ER_SHUTDOWN_COMPLETE
+
+
+
+
+ ER_FORCING_CLOSE
+
+
+
+
+ ER_IPSOCK_ERROR
+
+
+
+
+ ER_NO_SUCH_INDEX
+
+
+
+
+ ER_WRONG_FIELD_TERMINATORS
+
+
+
+
+ ER_BLOBS_AND_NO_TERMINATED
+
+
+
+
+ ER_TEXTFILE_NOT_READABLE
+
+
+
+
+ ER_FILE_EXISTS_ERROR
+
+
+
+
+ ER_LOAD_INFO
+
+
+
+
+ ER_ALTER_INFO
+
+
+
+
+ ER_WRONG_SUB_KEY
+
+
+
+
+ ER_CANT_REMOVE_ALL_FIELDS
+
+
+
+
+ ER_CANT_DROP_FIELD_OR_KEY
+
+
+
+
+ ER_INSERT_INFO
+
+
+
+
+ ER_UPDATE_TABLE_USED
+
+
+
+
+ ER_NO_SUCH_THREAD
+
+
+
+
+ ER_KILL_DENIED_ERROR
+
+
+
+
+ ER_NO_TABLES_USED
+
+
+
+
+ ER_TOO_BIG_SET
+
+
+
+
+ ER_NO_UNIQUE_LOGFILE
+
+
+
+
+ ER_TABLE_NOT_LOCKED_FOR_WRITE
+
+
+
+
+ ER_TABLE_NOT_LOCKED
+
+
+
+
+ ER_BLOB_CANT_HAVE_DEFAULT
+
+
+
+
+ ER_WRONG_DB_NAME
+
+
+
+
+ ER_WRONG_TABLE_NAME
+
+
+
+
+ ER_TOO_BIG_SELECT
+
+
+
+
+ ER_UNKNOWN_ERROR
+
+
+
+
+ ER_UNKNOWN_PROCEDURE
+
+
+
+
+ ER_WRONG_PARAMCOUNT_TO_PROCEDURE
+
+
+
+
+ ER_WRONG_PARAMETERS_TO_PROCEDURE
+
+
+
+
+ ER_UNKNOWN_TABLE
+
+
+
+
+ ER_FIELD_SPECIFIED_TWICE
+
+
+
+
+ ER_INVALID_GROUP_FUNC_USE
+
+
+
+
+ ER_UNSUPPORTED_EXTENSION
+
+
+
+
+ ER_TABLE_MUST_HAVE_COLUMNS
+
+
+
+
+ ER_RECORD_FILE_FULL
+
+
+
+
+ ER_UNKNOWN_CHARACTER_SET
+
+
+
+
+ ER_TOO_MANY_TABLES
+
+
+
+
+ ER_TOO_MANY_FIELDS
+
+
+
+
+ ER_TOO_BIG_ROWSIZE
+
+
+
+
+ ER_STACK_OVERRUN
+
+
+
+
+ ER_WRONG_OUTER_JOIN
+
+
+
+
+ ER_NULL_COLUMN_IN_INDEX
+
+
+
+
+ ER_CANT_FIND_UDF
+
+
+
+
+ ER_CANT_INITIALIZE_UDF
+
+
+
+
+ ER_UDF_NO_PATHS
+
+
+
+
+ ER_UDF_EXISTS
+
+
+
+
+ ER_CANT_OPEN_LIBRARY
+
+
+
+
+ ER_CANT_FIND_DL_ENTRY
+
+
+
+
+ ER_FUNCTION_NOT_DEFINED
+
+
+
+
+ ER_HOST_IS_BLOCKED
+
+
+
+
+ ER_HOST_NOT_PRIVILEGED
+
+
+
+
+ ER_PASSWORD_ANONYMOUS_USER
+
+
+
+
+ ER_PASSWORD_NOT_ALLOWED
+
+
+
+
+ ER_PASSWORD_NO_MATCH
+
+
+
+
+ ER_UPDATE_INFO
+
+
+
+
+ ER_CANT_CREATE_THREAD
+
+
+
+
+ ER_WRONG_VALUE_COUNT_ON_ROW
+
+
+
+
+ ER_CANT_REOPEN_TABLE
+
+
+
+
+ ER_INVALID_USE_OF_NULL
+
+
+
+
+ ER_REGEXP_ERROR
+
+
+
+
+ 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_UNUSED1
+
+
+
+
+ ER_UNUSED2
+
+
+
+
+ ER_ABORTING_CONNECTION
+
+
+
+
+ ER_NET_PACKET_TOO_LARGE
+
+
+
+
+ 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_UNUSED3
+
+
+
+
+ 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
+
+
+
+
+ Query execution was interrupted (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_OBSOLETE_COL_COUNT_DOESNT_MATCH_CORRUPTED
+
+
+
+
+ ER_OBSOLETE_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_OLD_UNUSED
+
+
+
+
+ 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_TX_CHARACTERISTICS
+
+
+
+
+ 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_NEVER_USED
+
+
+
+
+ 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_CANT_EXECUTE_IN_READ_ONLY_TRANSACTION
+
+
+
+
+ is thrown when MySQL Server returns an error code, or there is a
+ communication error with the server.
+
+
+
+
+ A value identifying the kind of error. Prefer to use the property.
+
+
+
+
+ A value identifying the kind of error.
+
+
+
+
+ A SQLSTATE code identifying the kind of error.
+
+ See SQLSTATE for more information.
+
+
+
+ Represents MySQL's internal GEOMETRY format: https://dev.mysql.com/doc/refman/8.0/en/gis-data-formats.html#gis-internal-format
+
+
+
+
+ Constructs a from a SRID and Well-known Binary bytes.
+
+ The SRID (Spatial Reference System ID).
+ The Well-known Binary serialization of the geometry.
+ A new containing the specified geometry.
+
+
+
+ Constructs a from MySQL's internal format.
+
+ The raw bytes of MySQL's internal GEOMETRY format.
+ A new containing the specified geometry.
+ See Internal Geometry Storage Format.
+
+
+
+ The Spatial Reference System ID of this geometry.
+
+
+
+
+ The Well-known Binary serialization of this geometry.
+
+
+
+
+ The internal MySQL form of this geometry.
+
+
+
+
+ Determines which column type (if any) should be read as a System.Guid.
+
+
+
+
+ Same as Char36 if OldGuids=False; same as LittleEndianBinary16 if OldGuids=True.
+
+
+
+
+ No column types are read/written as a Guid
.
+
+
+
+
+ All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens,
+ which matches UUID().
+
+
+
+
+ All CHAR(32) columns are read/written as a Guid using lowercase hex without hyphens.
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using big-endian byte order,
+ which matches UUID_TO_BIN(x).
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using big-endian byte order with time parts swapped,
+ which matches UUID_TO_BIN(x,1).
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using little-endian byte order, i.e. the byte order
+ used by and .
+
+
+
+
+ Escapes single and double quotes, and backslashes in .
+
+
+
+
+ Each new connection opened for a connection pool uses the next host name (sequentially with wraparound).
+
+
+
+
+ Each new connection tries to connect to the first host; subsequent hosts are used only if connecting to the first one fails.
+
+
+
+
+ Servers are tried in random order.
+
+
+
+
+ Servers are tried in ascending order of number of currently-open connections.
+
+
+
+
+ Gets or sets a value that indicates whether the bulk copy operation should be aborted.
+
+
+
+
+ Gets a value that returns the number of rows copied during the current bulk copy operation.
+
+
+
+
+ Represents the method that handles the event of a .
+
+
+
+
+ SSL connection options.
+
+
+
+
+ Do not use SSL.
+
+
+
+
+ Use SSL if the server supports it.
+
+
+
+
+ Always use SSL. Deny connection if server does not support SSL.
+
+
+
+
+ Always use SSL. Validate the Certificate Authority but tolerate name mismatch.
+
+
+
+
+ Always use SSL. Fail if the host name is not correct.
+
+
+
+
+ Removes the named transaction savepoint with the specified . No commit or rollback occurs.
+
+ The savepoint name.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously removes the named transaction savepoint with the specified . No commit or rollback occurs.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Rolls back the current transaction to the savepoint with the specified without aborting the transaction.
+
+ The savepoint name.
+ The name must have been created with , but not released by calling .
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously rolls back the current transaction to the savepoint with the specified without aborting the transaction.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The name must have been created with , but not released by calling .
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Sets a named transaction savepoint with the specified . If the current transaction
+ already has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+ The savepoint name.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously sets a named transaction savepoint with the specified . If the current transaction
+ already has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ MySQL character set codes.
+
+ Obtained from SELECT id, collation_name FROM information_schema.collations ORDER BY id; on MySQL 8.0.16.
+
+
+
+ Field cannot be NULL.
+
+
+
+
+ Field is part of a primary key.
+
+
+
+
+ Field is part of a unique key.
+
+
+
+
+ Field is part of a nonunique key.
+
+
+
+
+ Field is a BLOB or TEXT (deprecated).
+
+
+
+
+ Field has the UNSIGNED attribute.
+
+
+
+
+ Field has the ZEROFILL attribute.
+
+
+
+
+ Field has the BINARY attribute.
+
+
+
+
+ Field is an ENUM.
+
+
+
+
+ Field has the AUTO_INCREMENT attribute.
+
+
+
+
+ Field is a TIMESTAMP (deprecated).
+
+
+
+
+ Field is a SET.
+
+
+
+
+ Field is numeric.
+
+
+
+
+ See MySQL documentation.
+
+
+
+
+ Returns true if contains an EOF packet.
+ Note that EOF packets can appear in places where a length-encoded integer (which starts with the same signature byte) may appear, so the length
+ has to be checked to verify that it is an EOF packet.
+
+ The payload to examine.
+ true if this is an EOF packet; otherwise, false.
+
+
+
+ The MySQL Capability flags.
+
+
+
+
+ No specified capabilities.
+
+
+
+
+ Use the improved version of Old Password Authentication.
+
+
+
+
+ Send found rows instead of affected rows in EOF_Packet.
+
+
+
+
+ Longer flags in Protocol::ColumnDefinition320.
+
+
+
+
+ Database (schema) name can be specified on connect in Handshake Response Packet.
+
+
+
+
+ Do not permit database.table.column.
+
+
+
+
+ Supports compression.
+
+
+
+
+ Special handling of ODBC behavior.
+
+
+
+
+ Enables the LOCAL INFILE request of LOAD DATA|XML.
+
+
+
+
+ Parser can ignore spaces before '('.
+
+
+
+
+ Supports the 4.1 protocol.
+
+
+
+
+ Server: Supports interactive and noninteractive clients. Client: The session wait_timeout
variable is set to the value of the session interactive_timeout
variable.
+
+
+
+
+ Supports SSL.
+
+
+
+
+ Can send status flags in EOF_Packet.
+
+
+
+
+ Supports Authentication::Native41.
+
+
+
+
+ Can handle multiple statements per COM_QUERY and COM_STMT_PREPARE.
+
+
+
+
+ Can send multiple resultsets for COM_QUERY.
+
+
+
+
+ Can send multiple resultsets for COM_STMT_EXECUTE.
+
+
+
+
+ Sends extra data in Initial Handshake Packet and supports the pluggable authentication protocol.
+
+
+
+
+ Permits connection attributes in Protocol::HandshakeResponse41.
+
+
+
+
+ Understands length-encoded integer for auth response data in Protocol::HandshakeResponse41.
+
+
+
+
+ Announces support for expired password extension.
+
+
+
+
+ Can set SERVER_SESSION_STATE_CHANGED in the Status Flags and send session-state change data after a OK packet.
+
+
+
+
+ Can send OK after a Text Resultset.
+
+
+
+
+ Client supports progress indicator.
+
+
+
+
+ Client supports COM_MULTI (i.e., CommandKind.Multi)
+
+
+
+
+ Support of array binding.
+
+
+
+
+ is a class that holds an instance of .
+ Its primary difference from is that it's a reference type, so mutations
+ to this object are visible to other objects that hold a reference to it.
+
+
+
+
+ Hashes a password with the "Secure Password Authentication" method.
+
+ The 20-byte random challenge (from the "auth-plugin-data" in the initial handshake).
+ The password to hash.
+ A 20-byte password hash.
+ See Secure Password Authentication.
+
+
+
+ Helper class to translate NegotiateStream framing for SPNEGO token
+ into MySQL protocol packets.
+
+ Serves as underlying stream for System.Net.NegotiateStream
+ to perform MariaDB's auth_gssapi_client authentication.
+
+ NegotiateStream protocol is described in e.g here
+ https://winprotocoldoc.blob.core.windows.net/productionwindowsarchives/MS-NNS/[MS-NNS].pdf
+ We only use Handshake Messages for authentication.
+
+
+
+
+ The remaining timeout (in milliseconds) for the next I/O read. Use to represent no (or, infinite) timeout.
+
+
+
+
+ Reads data from this byte handler.
+
+ The buffer to read into.
+ The to use when reading data.
+ A holding the number of bytes read. If reading failed, this will be zero.
+
+
+
+ Writes data to this byte handler.
+
+ The data to write.
+ The to use when writing.
+ A . The value of this object is not defined.
+
+
+
+ Specifies whether to perform synchronous or asynchronous I/O.
+
+
+
+
+ Use synchronous I/O.
+
+
+
+
+ Use asynchronous I/O.
+
+
+
+
+ Starts a new "conversation" with the MySQL Server. This resets the "sequence id"
+ and should be called when a new command begins.
+
+
+
+
+ Gets or sets the underlying that data is read from and written to.
+
+
+
+
+ Reads the next payload.
+
+ An that will cache any buffers allocated during this
+ read. (To disable caching, pass new ArraySegmentHolder<byte>
so the cache will be garbage-collected
+ when this method returns.)
+ The to use if there is a protocol error.
+ The to use when reading data.
+ An containing the data that was read. This
+ will be valid to read from until the next time or
+ is called.
+
+
+
+ Writes a payload.
+
+ The data to write.
+ The to use when writing.
+ A . The value of this object is not defined.
+
+
+
+ Specifies how to handle protocol errors.
+
+
+
+
+ Throw an exception when there is a protocol error. This is the default.
+
+
+
+
+ Ignore any protocol errors.
+
+
+
+
+ A transaction is active.
+
+
+
+
+ Auto-commit is enabled
+
+
+
+
+ Used by Binary Protocol Resultset to signal that COM_STMT_FETCH must be used to fetch the row-data.
+
+
+
+
+ In a read-only transaction.
+
+
+
+
+ Connection state information has changed.
+
+
+
+
+ SESSION_TRACK_SYSTEM_VARIABLES: one or more system variables changed
+
+
+
+
+ SESSION_TRACK_SCHEMA: schema changed
+
+
+
+
+ SESSION_TRACK_STATE_CHANGE: "track state change" changed
+
+
+
+
+ SESSION_TRACK_GTIDS: "track GTIDs" changed
+
+
+
+
+ A sentinel value indicating no (or infinite) timeout.
+
+
+
+
+ A wrapper around a resizable array. This type is intended to be used with .
+
+
+
+
+ Do not call this method directly; use .
+
+
+
+
+ An that supports having its underlying array reallocated and resized.
+
+
+
+
+ Adds a timer that will invoke in approximately milliseconds.
+
+ The time (in milliseconds) to wait before invoking .
+ The callback to invoke.
+ A timer ID that can be passed to to cancel the timer.
+
+
+
+ Cancels the timer with the specified ID.
+
+ The timer ID (returned from ).
+ true if the timer was removed; otherwise, false. This method will return false if the specified timer has already fired.
+
+
+
+ Loads a RSA key from a PEM string.
+
+ The key, in PEM format.
+ An RSA key.
+
+
+
+ Returns a new that starts at index into .
+
+ The from which to create a slice.
+ The non-negative, zero-based starting index of the new slice (relative to of .
+ A new starting at the th element of and continuing to the end of .
+
+
+
+ Returns a new that starts at index into and has a length of .
+
+ The from which to create a slice.
+ The non-negative, zero-based starting index of the new slice (relative to of .
+ The non-negative length of the new slice.
+ A new of length , starting at the th element of .
+
+
+
+ Returns a new that is a slice of starting at .
+
+ The array to slice.
+ The offset at which to slice.
+ The length of the slice.
+ A new that is a slice of from to the end.
+
+
+
+ Finds the next index of in , starting at index .
+
+ The array to search.
+ The offset at which to start searching.
+ The pattern to find in .
+ The offset of within , or -1 if was not found.
+
+
+
+ Resizes to hold at least items.
+
+ may be null, in which case a new will be allocated.
+
+
+ Specifies that null is allowed as an input even if the corresponding type disallows it.
+
+
+ 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.
+
+
+
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netstandard2.0/MySqlConnector.dll b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netstandard2.0/MySqlConnector.dll
new file mode 100644
index 0000000..1bc930d
Binary files /dev/null and b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netstandard2.0/MySqlConnector.dll differ
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netstandard2.0/MySqlConnector.xml b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netstandard2.0/MySqlConnector.xml
new file mode 100644
index 0000000..3cec9a9
--- /dev/null
+++ b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netstandard2.0/MySqlConnector.xml
@@ -0,0 +1,5042 @@
+
+
+
+ MySqlConnector
+
+
+
+
+ A registry of known authentication plugins.
+
+
+
+
+ Registers the specified authentication plugin. The name of this plugin must be unique.
+
+ The authentication plugin.
+
+
+
+ The primary interface implemented by an authentication plugin.
+
+
+
+
+ The authentication plugin name.
+
+
+
+
+ Creates the authentication response.
+
+ The client's password.
+ The authentication data supplied by the server; this is the auth method data
+ from the Authentication
+ Method Switch Request Packet.
+
+
+
+
+ encapsulates a list of and the current position within that list.
+
+
+
+
+ The commands in the list.
+
+
+
+
+ The index of the current command.
+
+
+
+
+ If the current command is a prepared statement, the index of the current prepared statement for that command.
+
+
+
+
+ Returns true if the connection pool is empty, i.e., all connections are in use. Note that in a highly-multithreaded
+ environment, the value of this property may be stale by the time it's returned.
+
+
+
+
+ Returns the stored procedure cache for this , lazily creating it on demand.
+ This method may return a different object after has been called. The returned
+ object is shared between multiple threads and is only safe to use after taking a lock on the
+ object itself.
+
+
+
+
+ Examines all the objects in to determine if any
+ have an owning that has been garbage-collected. If so, assumes that the connection
+ was not properly disposed and returns the session to the pool.
+
+
+
+
+ The that was used to create this .!--
+ This object must not be mutated.
+
+
+
+
+ provides an internal abstraction over operations that can be cancelled: and .
+
+
+
+
+ Returns a unique ID for all implementations of .
+
+
+
+
+
+ Causes the effective command timeout to be reset back to the value specified by .
+
+ As per the MSDN documentation,
+ "This property is the cumulative time-out (for all network packets that are read during the invocation of a method) for all network reads during command
+ execution or processing of the results. A time-out can still occur after the first row is returned, and does not include user processing time, only network
+ read time. For example, with a 30 second time out, if Read requires two network packets, then it has 30 seconds to read both network packets. If you call
+ Read again, it will have another 30 seconds to read any data that it requires."
+ The method is called by public ADO.NET API methods to reset the effective time remaining at the beginning of a new
+ method call.
+
+
+
+ creates the data for an "execute query" command for one or more objects in a command list.
+
+
+
+
+ Writes the payload for an "execute query" command to .
+
+ The command list and its current position. This will be updated to the position of the next command to write (or past the end if there are no more commands).
+ A for all the stored procedures in the command list, if any.
+ The to write the payload to.
+ true if a command was written; otherwise, false (if there were no more commands in the list).
+
+
+
+ Returns an containing in the order they
+ should be tried to satisfy the load balancing policy.
+
+
+
+
+ provides an internal abstraction over and .
+
+
+
+
+ provides an abstraction over iterating through a sequence of
+ rows, where each row can fill an array of field values.
+
+
+
+
+ represents an individual SQL statement that's been parsed
+ from a string possibly containing multiple semicolon-delimited SQL statements.
+
+
+
+
+ The bytes for this statement that will be written on the wire.
+
+
+
+
+ The names of the parameters (if known) of the parameters in the prepared statement. There
+ is one entry in this list for each parameter, which will be null if the name is unknown.
+
+
+
+
+ The indexes of the parameters in the prepared statement. There is one entry in this list for
+ each parameter; it will be -1 if the parameter is named.
+
+
+
+
+ wraps a collection of objects.
+ It implements to return the memory backing the statements to a shared pool.
+
+
+
+
+ is a statement that has been prepared on the MySQL Server.
+
+
+
+
+ Disposes and sets to null, ignoring any
+ or that is thrown.
+
+ An type.
+ The object to dispose.
+
+
+
+ Writes the text of to , encoded in UTF-8.
+
+ The command.
+ The cached procedures.
+ The output writer.
+ true if a complete command was written; otherwise, false.
+
+
+
+ The statement is complete (apart from potentially needing a semicolon or newline).
+
+
+
+
+ The statement needs a newline (e.g., to terminate a final comment).
+
+
+
+
+ The statement needs a semicolon (if another statement is going to be concatenated to it).
+
+
+
+
+ Implementations of write logs to a particular target.
+
+
+
+
+ Returns true if logging for this logger is enabled at the specified level.
+
+ The log level.
+ true if logging is enabled; otherwise, false.
+
+
+
+ Writes a log message to the target.
+
+ The log level.
+ The log message. See documentation for for notes on interpreting {0} within this string.
+ If not null or empty, then includes formatting placeholders (e.g., {0})
+ which must be replaced with the arguments in , using or similar.
+ If null or an empty array, then is a literal string; any curly braces within it must be treated as literal characters,
+ not formatting placeholders.
+ If not null, an associated with the log message.
+ This method may be called from multiple threads and must be thread-safe. This method may be called
+ even if would return false for ; the implementation must
+ check if logging is enabled for that level.
+
+
+
+ Implementations of create logger instances.
+
+
+
+
+ Creates a logger with the specified name. This method may be called from multiple threads and must be thread-safe.
+
+
+
+
+ Controls logging for MySqlConnector.
+
+
+
+
+ Allows the to be set for this library. can
+ be set once, and must be set before any other library methods are used.
+
+
+
+
+ is an implementation of that does nothing.
+
+ This is the default logging implementation unless is set.
+
+
+
+ Returns false.
+
+
+
+
+ Ignores the specified log message.
+
+
+
+
+ Returns a singleton instance of .
+
+
+
+
+ Creates loggers that do nothing.
+
+
+
+
+ Returns a .
+
+
+
+
+ implements the new
+ ADO.NET batching API.
+ It is currently experimental and may change in the future.
+ When using MariaDB (10.2 or later), the commands will be sent in a single batch, reducing network
+ round-trip time. With other MySQL Servers, this may be no more efficient than executing the commands
+ individually.
+ Example usage:
+
+ using var connection = new MySqlConnection("...connection string...");
+ await connection.OpenAsync();
+
+ using var batch = new MySqlBatch(connection)
+ {
+ BatchCommands =
+ {
+ new MySqlBatchCommand("INSERT INTO departments(name) VALUES(@name);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Sales"),
+ },
+ },
+ new MySqlBatchCommand("SET @dept_id = last_insert_id()"),
+ new MySqlBatchCommand("INSERT INTO employees(name, department_id) VALUES(@name, @dept_id);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Jim Halpert"),
+ },
+ },
+ new MySqlBatchCommand("INSERT INTO employees(name, department_id) VALUES(@name, @dept_id);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Dwight Schrute"),
+ },
+ },
+ },
+ };
+ await batch.ExecuteNonQueryAsync();
+
+
+ The proposed ADO.NET API that is based on is not finalized. This API is experimental and may change in the future.
+
+
+
+ Initializes a new object. The property must be set before this object can be used.
+
+
+
+
+ Initializes a new object, setting the and if specified.
+
+ (Optional) The to use.
+ (Optional) The to use.
+
+
+
+ The collection of commands that will be executed in the batch.
+
+
+
+
+ Executes all the commands in the batch, returning a that can iterate
+ over the result sets. If multiple resultsets are returned, use
+ to access them.
+
+
+
+
+ Executes all the commands in the batch, returning a that can iterate
+ over the result sets. If multiple resultsets are returned, use
+ to access them.
+
+ A token to cancel the asynchronous operation.
+ A containing the result of the asynchronous operation.
+
+
+
+ lets you efficiently load a MySQL Server table with data from another source.
+ It is similar to the SqlBulkCopy class
+ for SQL Server.
+ Due to security features
+ in MySQL Server, the connection string must have AllowLoadLocalInfile=true in order
+ to use this class.
+ For data that is in CSV or TSV format, use to bulk load the file.
+ Example code:
+
+ // NOTE: to copy data between tables in the same database, use INSERT ... SELECT
+ // https://dev.mysql.com/doc/refman/8.0/en/insert-select.html
+ var dataTable = GetDataTableFromExternalSource();
+
+ using var connection = new MySqlConnection("...;AllowLoadLocalInfile=True");
+ await connection.OpenAsync();
+ var bulkCopy = new MySqlBulkCopy(connection);
+ bulkCopy.DestinationTableName = "some_table_name";
+ await bulkCopy.WriteToServerAsync(dataTable);
+
+
+ Note: This API is a unique feature of MySqlConnector; you must
+ switch to MySqlConnector in order to use it.
+ This API is experimental and may change in the future.
+
+
+
+
+ Initializes a object with the specified connection, and optionally the active transaction.
+
+ The to use.
+ (Optional) The to use.
+
+
+
+ The number of seconds for the operation to complete before it times out, or 0 for no timeout.
+
+
+
+
+ The name of the table to insert rows into.
+
+ This name needs to be quoted if it contains special characters.
+
+
+
+ If non-zero, this specifies the number of rows to be processed before generating a notification event.
+
+
+
+
+ This event is raised every time that the number of rows specified by the property have been processed.
+
+
+ Receipt of a RowsCopied event does not imply that any rows have been sent to the server or committed.
+ The property can be set to true by the event handler to abort the copy.
+
+
+
+
+ A collection of objects. If the columns being copied from the
+ data source line up one-to-one with the columns in the destination table then populating this collection is
+ unnecessary. Otherwise, this should be filled with a collection of objects
+ specifying how source columns are to be mapped onto destination columns. If one column mapping is specified,
+ then all must be specified.
+
+
+
+
+ Returns the number of rows that were copied (after WriteToServer(Async)
finishes).
+
+
+
+
+ Copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ This method is not available on netstandard1.3.
+
+
+
+ Asynchronously copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ This method is not available on netstandard1.3.
+
+
+
+ Copies all rows in the supplied sequence of objects to the destination table specified by the
+ property of the object. The number of columns
+ to be read from the objects must be specified in advance.
+
+ The collection of objects.
+ The number of columns to copy (in each row).
+ This method is not available on netstandard1.3.
+
+
+
+ Asynchronously copies all rows in the supplied sequence of objects to the destination table specified by the
+ property of the object. The number of columns
+ to be read from the objects must be specified in advance.
+
+ The collection of objects.
+ The number of columns to copy (in each row).
+ A token to cancel the asynchronous operation.
+ This method is not available on netstandard1.3.
+
+
+
+ Copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ The to copy from.
+
+
+
+ Asynchronously copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ The to copy from.
+ A token to cancel the asynchronous operation.
+
+
+
+ Use to specify how to map columns in the source data to
+ columns in the destination table when using .
+ Set to the index of the source column to map. Set to
+ either the name of a column in the destination table, or the name of a user-defined variable.
+ If a user-defined variable, you can use to specify a MySQL expression that assigns
+ its value to destination column.
+ Source columns that don't have an entry in will be ignored
+ (unless the collection is empty, in which case all columns will be mapped
+ one-to-one).
+ MySqlConnector will transmit all binary data as hex, so any expression that operates on it
+ must decode it with the UNHEX function first. (This will be performed automatically if no
+ is specified, but will be necessary to specify manually for more complex expressions.)
+ Example code:
+
+ new MySqlBulkCopyColumnMapping
+ {
+ SourceOrdinal = 2,
+ DestinationColumn = "user_name",
+ },
+ new MySqlBulkCopyColumnMapping
+ {
+ SourceOrdinal = 0,
+ DestinationColumn = "@tmp",
+ Expression = "column_value = @tmp * 2",
+ },
+
+
+
+
+
+ Initializes with the default values.
+
+
+
+
+ Initializes to the specified values.
+
+ The ordinal position of the source column.
+ The name of the destination column.
+ The optional expression to be used to set the destination column.
+
+
+
+ The ordinal position of the source column to map from.
+
+
+
+
+ The name of the destination column to copy to. To use an expression, this should be the name of a unique user-defined variable.
+
+
+
+
+ An optional expression for setting a destination column. To use an expression, the should
+ be set to the name of a user-defined variable and this expression should set a column using that variable.
+
+ To populate a binary column, you must set to a variable name, and to an
+ expression that uses UNHEX
to set the column value, e.g., `destColumn` = UNHEX(@variableName)
.
+
+
+
+ lets you efficiently load a MySQL Server Table with data from a CSV or TSV file or .
+ Example code:
+
+ using var connection = new MySqlConnection("...;AllowLoadLocalInfile=True");
+ await connection.OpenAsync();
+ var bulkLoader = new MySqlBulkLoader(connection)
+ {
+ FileName = @"C:\Path\To\file.csv",
+ TableName = "destination",
+ CharacterSet = "UTF8",
+ NumberOfLinesToSkip = 1,
+ FieldTerminator = ",",
+ FieldQuotationCharacter = '"',
+ FieldQuotationOptional = true,
+ Local = true,
+ }
+ var rowCount = await bulkLoader.LoadAsync();
+
+
+ Due to security features
+ in MySQL Server, the connection string must have AllowLoadLocalInfile=true in order to use a local source.
+
+
+
+
+ (Optional) The character set of the source data. By default, the database's character set is used.
+
+
+
+
+ (Optional) A list of the column names in the destination table that should be filled with data from the input file.
+
+
+
+
+ A value that specifies how conflicts are resolved (default ).
+
+
+
+
+ The to use.
+
+
+
+
+ (Optional) The character used to escape instances of within field values.
+
+
+
+
+ (Optional) A list of expressions used to set field values from the columns in the source data.
+
+
+
+
+ (Optional) The character used to enclose fields in the source data.
+
+
+
+
+ Whether quoting fields is optional (default false).
+
+
+
+
+ (Optional) The string fields are terminated with.
+
+
+
+
+ The name of the local (if is true) or remote (otherwise) file to load.
+ Either this or must be set.
+
+
+
+
+ (Optional) A prefix in each line that should be skipped when loading.
+
+
+
+
+ (Optional) The string lines are terminated with.
+
+
+
+
+ Whether a local file is being used (default true).
+
+
+
+
+ The number of lines to skip at the beginning of the file (default 0).
+
+
+
+
+ A giving the priority to load with (default ).
+
+
+
+
+ A containing the data to load. Either this or must be set.
+ The property must be true if this is set.
+
+
+
+
+ The name of the table to load into. If this is a reserved word or contains spaces, it must be quoted.
+
+
+
+
+ The timeout (in milliseconds) to use.
+
+
+
+
+ Initializes a new instance of the class with the specified .
+
+ The to use.
+
+
+
+ Loads all data in the source file or stream into the destination table.
+
+ The number of rows inserted.
+
+
+
+ Asynchronously loads all data in the source file or stream into the destination table.
+
+ A that will be completed with the number of rows inserted.
+
+
+
+ Asynchronously loads all data in the source file or stream into the destination table.
+
+ A token to cancel the asynchronous operation.
+ A that will be completed with the number of rows inserted.
+
+
+
+ Do not use certificate store
+
+
+
+
+ Use certificate store for the current user
+
+
+
+
+ User certificate store for the machine
+
+
+
+
+ represents a SQL statement or stored procedure name
+ to execute against a MySQL database.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class, setting to .
+
+ The text to assign to .
+
+
+
+ Initializes a new instance of the class with the specified and .
+
+ The to use.
+ The active , if any.
+
+
+
+ Initializes a new instance of the class with the specified command text and .
+
+ The text to assign to .
+ The to use.
+
+
+
+ Initializes a new instance of the class with the specified command text,, and .
+
+ The text to assign to .
+ The to use.
+ The active , if any.
+
+
+
+ The collection of objects for this command.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Holds the first automatically-generated ID for a value inserted in an AUTO_INCREMENT column in the last statement.
+
+
+ See LAST_INSERT_ID() for more information.
+
+
+
+
+ Registers as a callback with if cancellation is supported.
+
+ The .
+ An object that must be disposed to revoke the cancellation registration.
+ This method is more efficient than calling token.Register(Command.Cancel)
because it avoids
+ unnecessary allocations.
+
+
+
+ represents a connection to a MySQL database.
+
+
+
+
+ Begins a database transaction.
+
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction.
+
+ The for the transaction.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction.
+
+ The for the transaction.
+ If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ The for the transaction.
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ The for the transaction.
+ If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Resets the session state of the current open connection; this clears temporary tables and user-defined variables.
+
+ A token to cancel the asynchronous operation.
+ A ValueTask representing the asynchronous operation.
+ This is an optional feature of the MySQL protocol and may not be supported by all servers.
+ It's known to be supported by MySQL Server 5.7.3 (and later) and MariaDB 10.2.4 (and later).
+ Other MySQL-compatible servers or proxies may not support this command.
+
+
+
+ The connection ID from MySQL Server.
+
+
+
+
+ Clears the connection pool that belongs to.
+
+ The whose connection pool will be cleared.
+
+
+
+ Asynchronously clears the connection pool that belongs to.
+
+ The whose connection pool will be cleared.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+
+
+
+ Clears all connection pools.
+
+
+
+
+ Asynchronously clears all connection pools.
+
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+
+
+
+ Returns schema information for the data source of this .
+
+ A containing schema information.
+
+
+
+ Returns schema information for the data source of this .
+
+ The name of the schema to return.
+ A containing schema information.
+
+
+
+ Returns schema information for the data source of this .
+
+ The name of the schema to return.
+ The restrictions to apply to the schema; this parameter is currently ignored.
+ A containing schema information.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ The name of the schema to return.
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ The name of the schema to return.
+ The restrictions to apply to the schema; this parameter is currently ignored.
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Gets the time (in seconds) to wait while trying to establish a connection
+ before terminating the attempt and generating an error. This value
+ is controlled by ,
+ which defaults to 15 seconds.
+
+
+
+
+ Creates a object for executing batched commands.
+
+
+
+
+
+ Creates a object (that can be used with ).
+
+
+
+
+
+ Returns an unopened copy of this connection with a new connection string. If the Password
+ in is not set, the password from this connection will be used.
+ This allows creating a new connection with the same security information while changing other options,
+ such as database or pooling.
+
+ The new connection string to be used.
+ A new with different connection string options but
+ the same password as this connection (unless overridden by ).
+
+
+
+ Specifies the type of connection to make to the server.
+
+
+
+
+ TCP/IP connection.
+
+
+
+
+ Named pipe connection. Only works on Windows.
+
+
+
+
+ Unix domain socket connection. Only works on Unix/Linux.
+
+
+
+
+ Shared memory connection. Not currently supported.
+
+
+
+
+ The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error.
+ The default value is 15.
+
+
+
+
+ An implementation of that creates MySqlConnector objects.
+
+
+
+
+ Provides an instance of that can create MySqlConnector objects.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Returns false.
+
+ is not supported by MySqlConnector.
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Returns true.
+
+
+
+
+ Returns a that contains metadata about the columns in the result set.
+
+ A containing metadata about the columns in the result set.
+
+
+
+ Returns a that contains metadata about the columns in the result set.
+
+ A token to cancel the operation.
+ A containing metadata about the columns in the result set.
+ This method runs synchronously; prefer to call to avoid the overhead of allocating an unnecessary Task.
+
+
+
+ Returns metadata about the columns in the result set.
+
+ A containing metadata about the result set.
+
+
+
+ Returns metadata about the columns in the result set.
+
+ A token to cancel the operation.
+ A containing containing metadata about the result set.
+ This method runs synchronously; prefer to call to avoid the overhead of allocating an unnecessary Task.
+
+
+
+ The used when reading from the database.
+
+
+
+
+ Use when reading; allow any in command parameters.
+
+
+
+
+ Use when reading; reject in command parameters.
+
+
+
+
+ Use when reading; reject in command parameters.
+
+
+
+
+ MySQL Server error codes. Taken from Server Error Codes and Messages.
+
+
+
+
+ Not all rows from the source supplied to were copied to .
+
+
+
+
+ The timeout period specified by elapsed before the operation completed.
+
+
+
+
+ ER_HASHCHK
+
+
+
+
+ ER_NISAMCHK
+
+
+
+
+ ER_NO
+
+
+
+
+ ER_YES
+
+
+
+
+ ER_CANT_CREATE_FILE
+
+
+
+
+ ER_CANT_CREATE_TABLE
+
+
+
+
+ ER_CANT_CREATE_DB
+
+
+
+
+ ER_DB_CREATE_EXISTS
+
+
+
+
+ ER_DB_DROP_EXISTS
+
+
+
+
+ ER_DB_DROP_DELETE
+
+
+
+
+ ER_DB_DROP_RMDIR
+
+
+
+
+ ER_CANT_DELETE_FILE
+
+
+
+
+ ER_CANT_FIND_SYSTEM_REC
+
+
+
+
+ ER_CANT_GET_STAT
+
+
+
+
+ ER_CANT_GET_WD
+
+
+
+
+ ER_CANT_LOCK
+
+
+
+
+ ER_CANT_OPEN_FILE
+
+
+
+
+ ER_FILE_NOT_FOUND
+
+
+
+
+ ER_CANT_READ_DIR
+
+
+
+
+ ER_CANT_SET_WD
+
+
+
+
+ ER_CHECKREAD
+
+
+
+
+ ER_DISK_FULL
+
+
+
+
+ ER_DUP_KEY
+
+
+
+
+ ER_ERROR_ON_CLOSE
+
+
+
+
+ ER_ERROR_ON_READ
+
+
+
+
+ ER_ERROR_ON_RENAME
+
+
+
+
+ ER_ERROR_ON_WRITE
+
+
+
+
+ ER_FILE_USED
+
+
+
+
+ ER_FILSORT_ABORT
+
+
+
+
+ ER_FORM_NOT_FOUND
+
+
+
+
+ ER_GET_ERRNO
+
+
+
+
+ ER_ILLEGAL_HA
+
+
+
+
+ ER_KEY_NOT_FOUND
+
+
+
+
+ ER_NOT_FORM_FILE
+
+
+
+
+ ER_NOT_KEYFILE
+
+
+
+
+ ER_OLD_KEYFILE
+
+
+
+
+ ER_OPEN_AS_READONLY
+
+
+
+
+ ER_OUTOFMEMORY
+
+
+
+
+ ER_OUT_OF_SORTMEMORY
+
+
+
+
+ ER_UNEXPECTED_EOF
+
+
+
+
+ ER_CON_COUNT_ERROR
+
+
+
+
+ ER_OUT_OF_RESOURCES
+
+
+
+
+ ER_BAD_HOST_ERROR
+
+
+
+
+ ER_HANDSHAKE_ERROR
+
+
+
+
+ ER_DBACCESS_DENIED_ERROR
+
+
+
+
+ ER_ACCESS_DENIED_ERROR
+
+
+
+
+ ER_NO_DB_ERROR
+
+
+
+
+ ER_UNKNOWN_COM_ERROR
+
+
+
+
+ ER_BAD_NULL_ERROR
+
+
+
+
+ ER_BAD_DB_ERROR
+
+
+
+
+ ER_TABLE_EXISTS_ERROR
+
+
+
+
+ ER_BAD_TABLE_ERROR
+
+
+
+
+ ER_NON_UNIQ_ERROR
+
+
+
+
+ ER_SERVER_SHUTDOWN
+
+
+
+
+ ER_BAD_FIELD_ERROR
+
+
+
+
+ ER_WRONG_FIELD_WITH_GROUP
+
+
+
+
+ ER_WRONG_GROUP_FIELD
+
+
+
+
+ ER_WRONG_SUM_SELECT
+
+
+
+
+ ER_WRONG_VALUE_COUNT
+
+
+
+
+ ER_TOO_LONG_IDENT
+
+
+
+
+ ER_DUP_FIELDNAME
+
+
+
+
+ ER_DUP_KEYNAME
+
+
+
+
+ ER_DUP_ENTRY
+
+
+
+
+ ER_WRONG_FIELD_SPEC
+
+
+
+
+ You have an error in your SQL syntax (ER_PARSE_ERROR).
+
+
+
+
+ ER_EMPTY_QUERY
+
+
+
+
+ ER_NONUNIQ_TABLE
+
+
+
+
+ ER_INVALID_DEFAULT
+
+
+
+
+ ER_MULTIPLE_PRI_KEY
+
+
+
+
+ ER_TOO_MANY_KEYS
+
+
+
+
+ ER_TOO_MANY_KEY_PARTS
+
+
+
+
+ ER_TOO_LONG_KEY
+
+
+
+
+ ER_KEY_COLUMN_DOES_NOT_EXITS
+
+
+
+
+ ER_BLOB_USED_AS_KEY
+
+
+
+
+ ER_TOO_BIG_FIELDLENGTH
+
+
+
+
+ ER_WRONG_AUTO_KEY
+
+
+
+
+ ER_READY
+
+
+
+
+ ER_NORMAL_SHUTDOWN
+
+
+
+
+ ER_GOT_SIGNAL
+
+
+
+
+ ER_SHUTDOWN_COMPLETE
+
+
+
+
+ ER_FORCING_CLOSE
+
+
+
+
+ ER_IPSOCK_ERROR
+
+
+
+
+ ER_NO_SUCH_INDEX
+
+
+
+
+ ER_WRONG_FIELD_TERMINATORS
+
+
+
+
+ ER_BLOBS_AND_NO_TERMINATED
+
+
+
+
+ ER_TEXTFILE_NOT_READABLE
+
+
+
+
+ ER_FILE_EXISTS_ERROR
+
+
+
+
+ ER_LOAD_INFO
+
+
+
+
+ ER_ALTER_INFO
+
+
+
+
+ ER_WRONG_SUB_KEY
+
+
+
+
+ ER_CANT_REMOVE_ALL_FIELDS
+
+
+
+
+ ER_CANT_DROP_FIELD_OR_KEY
+
+
+
+
+ ER_INSERT_INFO
+
+
+
+
+ ER_UPDATE_TABLE_USED
+
+
+
+
+ ER_NO_SUCH_THREAD
+
+
+
+
+ ER_KILL_DENIED_ERROR
+
+
+
+
+ ER_NO_TABLES_USED
+
+
+
+
+ ER_TOO_BIG_SET
+
+
+
+
+ ER_NO_UNIQUE_LOGFILE
+
+
+
+
+ ER_TABLE_NOT_LOCKED_FOR_WRITE
+
+
+
+
+ ER_TABLE_NOT_LOCKED
+
+
+
+
+ ER_BLOB_CANT_HAVE_DEFAULT
+
+
+
+
+ ER_WRONG_DB_NAME
+
+
+
+
+ ER_WRONG_TABLE_NAME
+
+
+
+
+ ER_TOO_BIG_SELECT
+
+
+
+
+ ER_UNKNOWN_ERROR
+
+
+
+
+ ER_UNKNOWN_PROCEDURE
+
+
+
+
+ ER_WRONG_PARAMCOUNT_TO_PROCEDURE
+
+
+
+
+ ER_WRONG_PARAMETERS_TO_PROCEDURE
+
+
+
+
+ ER_UNKNOWN_TABLE
+
+
+
+
+ ER_FIELD_SPECIFIED_TWICE
+
+
+
+
+ ER_INVALID_GROUP_FUNC_USE
+
+
+
+
+ ER_UNSUPPORTED_EXTENSION
+
+
+
+
+ ER_TABLE_MUST_HAVE_COLUMNS
+
+
+
+
+ ER_RECORD_FILE_FULL
+
+
+
+
+ ER_UNKNOWN_CHARACTER_SET
+
+
+
+
+ ER_TOO_MANY_TABLES
+
+
+
+
+ ER_TOO_MANY_FIELDS
+
+
+
+
+ ER_TOO_BIG_ROWSIZE
+
+
+
+
+ ER_STACK_OVERRUN
+
+
+
+
+ ER_WRONG_OUTER_JOIN
+
+
+
+
+ ER_NULL_COLUMN_IN_INDEX
+
+
+
+
+ ER_CANT_FIND_UDF
+
+
+
+
+ ER_CANT_INITIALIZE_UDF
+
+
+
+
+ ER_UDF_NO_PATHS
+
+
+
+
+ ER_UDF_EXISTS
+
+
+
+
+ ER_CANT_OPEN_LIBRARY
+
+
+
+
+ ER_CANT_FIND_DL_ENTRY
+
+
+
+
+ ER_FUNCTION_NOT_DEFINED
+
+
+
+
+ ER_HOST_IS_BLOCKED
+
+
+
+
+ ER_HOST_NOT_PRIVILEGED
+
+
+
+
+ ER_PASSWORD_ANONYMOUS_USER
+
+
+
+
+ ER_PASSWORD_NOT_ALLOWED
+
+
+
+
+ ER_PASSWORD_NO_MATCH
+
+
+
+
+ ER_UPDATE_INFO
+
+
+
+
+ ER_CANT_CREATE_THREAD
+
+
+
+
+ ER_WRONG_VALUE_COUNT_ON_ROW
+
+
+
+
+ ER_CANT_REOPEN_TABLE
+
+
+
+
+ ER_INVALID_USE_OF_NULL
+
+
+
+
+ ER_REGEXP_ERROR
+
+
+
+
+ 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_UNUSED1
+
+
+
+
+ ER_UNUSED2
+
+
+
+
+ ER_ABORTING_CONNECTION
+
+
+
+
+ ER_NET_PACKET_TOO_LARGE
+
+
+
+
+ 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_UNUSED3
+
+
+
+
+ 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
+
+
+
+
+ Query execution was interrupted (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_OBSOLETE_COL_COUNT_DOESNT_MATCH_CORRUPTED
+
+
+
+
+ ER_OBSOLETE_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_OLD_UNUSED
+
+
+
+
+ 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_TX_CHARACTERISTICS
+
+
+
+
+ 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_NEVER_USED
+
+
+
+
+ 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_CANT_EXECUTE_IN_READ_ONLY_TRANSACTION
+
+
+
+
+ is thrown when MySQL Server returns an error code, or there is a
+ communication error with the server.
+
+
+
+
+ A value identifying the kind of error. Prefer to use the property.
+
+
+
+
+ A value identifying the kind of error.
+
+
+
+
+ A SQLSTATE code identifying the kind of error.
+
+ See SQLSTATE for more information.
+
+
+
+ Represents MySQL's internal GEOMETRY format: https://dev.mysql.com/doc/refman/8.0/en/gis-data-formats.html#gis-internal-format
+
+
+
+
+ Constructs a from a SRID and Well-known Binary bytes.
+
+ The SRID (Spatial Reference System ID).
+ The Well-known Binary serialization of the geometry.
+ A new containing the specified geometry.
+
+
+
+ Constructs a from MySQL's internal format.
+
+ The raw bytes of MySQL's internal GEOMETRY format.
+ A new containing the specified geometry.
+ See Internal Geometry Storage Format.
+
+
+
+ The Spatial Reference System ID of this geometry.
+
+
+
+
+ The Well-known Binary serialization of this geometry.
+
+
+
+
+ The internal MySQL form of this geometry.
+
+
+
+
+ Determines which column type (if any) should be read as a System.Guid.
+
+
+
+
+ Same as Char36 if OldGuids=False; same as LittleEndianBinary16 if OldGuids=True.
+
+
+
+
+ No column types are read/written as a Guid
.
+
+
+
+
+ All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens,
+ which matches UUID().
+
+
+
+
+ All CHAR(32) columns are read/written as a Guid using lowercase hex without hyphens.
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using big-endian byte order,
+ which matches UUID_TO_BIN(x).
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using big-endian byte order with time parts swapped,
+ which matches UUID_TO_BIN(x,1).
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using little-endian byte order, i.e. the byte order
+ used by and .
+
+
+
+
+ Escapes single and double quotes, and backslashes in .
+
+
+
+
+ Each new connection opened for a connection pool uses the next host name (sequentially with wraparound).
+
+
+
+
+ Each new connection tries to connect to the first host; subsequent hosts are used only if connecting to the first one fails.
+
+
+
+
+ Servers are tried in random order.
+
+
+
+
+ Servers are tried in ascending order of number of currently-open connections.
+
+
+
+
+ Gets or sets a value that indicates whether the bulk copy operation should be aborted.
+
+
+
+
+ Gets a value that returns the number of rows copied during the current bulk copy operation.
+
+
+
+
+ Represents the method that handles the event of a .
+
+
+
+
+ SSL connection options.
+
+
+
+
+ Do not use SSL.
+
+
+
+
+ Use SSL if the server supports it.
+
+
+
+
+ Always use SSL. Deny connection if server does not support SSL.
+
+
+
+
+ Always use SSL. Validate the Certificate Authority but tolerate name mismatch.
+
+
+
+
+ Always use SSL. Fail if the host name is not correct.
+
+
+
+
+ Removes the named transaction savepoint with the specified . No commit or rollback occurs.
+
+ The savepoint name.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously removes the named transaction savepoint with the specified . No commit or rollback occurs.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Rolls back the current transaction to the savepoint with the specified without aborting the transaction.
+
+ The savepoint name.
+ The name must have been created with , but not released by calling .
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously rolls back the current transaction to the savepoint with the specified without aborting the transaction.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The name must have been created with , but not released by calling .
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Sets a named transaction savepoint with the specified . If the current transaction
+ already has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+ The savepoint name.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously sets a named transaction savepoint with the specified . If the current transaction
+ already has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ MySQL character set codes.
+
+ Obtained from SELECT id, collation_name FROM information_schema.collations ORDER BY id; on MySQL 8.0.16.
+
+
+
+ Field cannot be NULL.
+
+
+
+
+ Field is part of a primary key.
+
+
+
+
+ Field is part of a unique key.
+
+
+
+
+ Field is part of a nonunique key.
+
+
+
+
+ Field is a BLOB or TEXT (deprecated).
+
+
+
+
+ Field has the UNSIGNED attribute.
+
+
+
+
+ Field has the ZEROFILL attribute.
+
+
+
+
+ Field has the BINARY attribute.
+
+
+
+
+ Field is an ENUM.
+
+
+
+
+ Field has the AUTO_INCREMENT attribute.
+
+
+
+
+ Field is a TIMESTAMP (deprecated).
+
+
+
+
+ Field is a SET.
+
+
+
+
+ Field is numeric.
+
+
+
+
+ See MySQL documentation.
+
+
+
+
+ Returns true if contains an EOF packet.
+ Note that EOF packets can appear in places where a length-encoded integer (which starts with the same signature byte) may appear, so the length
+ has to be checked to verify that it is an EOF packet.
+
+ The payload to examine.
+ true if this is an EOF packet; otherwise, false.
+
+
+
+ The MySQL Capability flags.
+
+
+
+
+ No specified capabilities.
+
+
+
+
+ Use the improved version of Old Password Authentication.
+
+
+
+
+ Send found rows instead of affected rows in EOF_Packet.
+
+
+
+
+ Longer flags in Protocol::ColumnDefinition320.
+
+
+
+
+ Database (schema) name can be specified on connect in Handshake Response Packet.
+
+
+
+
+ Do not permit database.table.column.
+
+
+
+
+ Supports compression.
+
+
+
+
+ Special handling of ODBC behavior.
+
+
+
+
+ Enables the LOCAL INFILE request of LOAD DATA|XML.
+
+
+
+
+ Parser can ignore spaces before '('.
+
+
+
+
+ Supports the 4.1 protocol.
+
+
+
+
+ Server: Supports interactive and noninteractive clients. Client: The session wait_timeout
variable is set to the value of the session interactive_timeout
variable.
+
+
+
+
+ Supports SSL.
+
+
+
+
+ Can send status flags in EOF_Packet.
+
+
+
+
+ Supports Authentication::Native41.
+
+
+
+
+ Can handle multiple statements per COM_QUERY and COM_STMT_PREPARE.
+
+
+
+
+ Can send multiple resultsets for COM_QUERY.
+
+
+
+
+ Can send multiple resultsets for COM_STMT_EXECUTE.
+
+
+
+
+ Sends extra data in Initial Handshake Packet and supports the pluggable authentication protocol.
+
+
+
+
+ Permits connection attributes in Protocol::HandshakeResponse41.
+
+
+
+
+ Understands length-encoded integer for auth response data in Protocol::HandshakeResponse41.
+
+
+
+
+ Announces support for expired password extension.
+
+
+
+
+ Can set SERVER_SESSION_STATE_CHANGED in the Status Flags and send session-state change data after a OK packet.
+
+
+
+
+ Can send OK after a Text Resultset.
+
+
+
+
+ Client supports progress indicator.
+
+
+
+
+ Client supports COM_MULTI (i.e., CommandKind.Multi)
+
+
+
+
+ Support of array binding.
+
+
+
+
+ is a class that holds an instance of .
+ Its primary difference from is that it's a reference type, so mutations
+ to this object are visible to other objects that hold a reference to it.
+
+
+
+
+ Hashes a password with the "Secure Password Authentication" method.
+
+ The 20-byte random challenge (from the "auth-plugin-data" in the initial handshake).
+ The password to hash.
+ A 20-byte password hash.
+ See Secure Password Authentication.
+
+
+
+ Helper class to translate NegotiateStream framing for SPNEGO token
+ into MySQL protocol packets.
+
+ Serves as underlying stream for System.Net.NegotiateStream
+ to perform MariaDB's auth_gssapi_client authentication.
+
+ NegotiateStream protocol is described in e.g here
+ https://winprotocoldoc.blob.core.windows.net/productionwindowsarchives/MS-NNS/[MS-NNS].pdf
+ We only use Handshake Messages for authentication.
+
+
+
+
+ The remaining timeout (in milliseconds) for the next I/O read. Use to represent no (or, infinite) timeout.
+
+
+
+
+ Reads data from this byte handler.
+
+ The buffer to read into.
+ The to use when reading data.
+ A holding the number of bytes read. If reading failed, this will be zero.
+
+
+
+ Writes data to this byte handler.
+
+ The data to write.
+ The to use when writing.
+ A . The value of this object is not defined.
+
+
+
+ Specifies whether to perform synchronous or asynchronous I/O.
+
+
+
+
+ Use synchronous I/O.
+
+
+
+
+ Use asynchronous I/O.
+
+
+
+
+ Starts a new "conversation" with the MySQL Server. This resets the "sequence id"
+ and should be called when a new command begins.
+
+
+
+
+ Gets or sets the underlying that data is read from and written to.
+
+
+
+
+ Reads the next payload.
+
+ An that will cache any buffers allocated during this
+ read. (To disable caching, pass new ArraySegmentHolder<byte>
so the cache will be garbage-collected
+ when this method returns.)
+ The to use if there is a protocol error.
+ The to use when reading data.
+ An containing the data that was read. This
+ will be valid to read from until the next time or
+ is called.
+
+
+
+ Writes a payload.
+
+ The data to write.
+ The to use when writing.
+ A . The value of this object is not defined.
+
+
+
+ Specifies how to handle protocol errors.
+
+
+
+
+ Throw an exception when there is a protocol error. This is the default.
+
+
+
+
+ Ignore any protocol errors.
+
+
+
+
+ A transaction is active.
+
+
+
+
+ Auto-commit is enabled
+
+
+
+
+ Used by Binary Protocol Resultset to signal that COM_STMT_FETCH must be used to fetch the row-data.
+
+
+
+
+ In a read-only transaction.
+
+
+
+
+ Connection state information has changed.
+
+
+
+
+ SESSION_TRACK_SYSTEM_VARIABLES: one or more system variables changed
+
+
+
+
+ SESSION_TRACK_SCHEMA: schema changed
+
+
+
+
+ SESSION_TRACK_STATE_CHANGE: "track state change" changed
+
+
+
+
+ SESSION_TRACK_GTIDS: "track GTIDs" changed
+
+
+
+
+ A sentinel value indicating no (or infinite) timeout.
+
+
+
+
+ A wrapper around a resizable array. This type is intended to be used with .
+
+
+
+
+ Do not call this method directly; use .
+
+
+
+
+ An that supports having its underlying array reallocated and resized.
+
+
+
+
+ Adds a timer that will invoke in approximately milliseconds.
+
+ The time (in milliseconds) to wait before invoking .
+ The callback to invoke.
+ A timer ID that can be passed to to cancel the timer.
+
+
+
+ Cancels the timer with the specified ID.
+
+ The timer ID (returned from ).
+ true if the timer was removed; otherwise, false. This method will return false if the specified timer has already fired.
+
+
+
+ Loads a RSA key from a PEM string.
+
+ The key, in PEM format.
+ An RSA key.
+
+
+
+ Returns a new that starts at index into .
+
+ The from which to create a slice.
+ The non-negative, zero-based starting index of the new slice (relative to of .
+ A new starting at the th element of and continuing to the end of .
+
+
+
+ Returns a new that starts at index into and has a length of .
+
+ The from which to create a slice.
+ The non-negative, zero-based starting index of the new slice (relative to of .
+ The non-negative length of the new slice.
+ A new of length , starting at the th element of .
+
+
+
+ Returns a new that is a slice of starting at .
+
+ The array to slice.
+ The offset at which to slice.
+ The length of the slice.
+ A new that is a slice of from to the end.
+
+
+
+ Finds the next index of in , starting at index .
+
+ The array to search.
+ The offset at which to start searching.
+ The pattern to find in .
+ The offset of within , or -1 if was not found.
+
+
+
+ Resizes to hold at least items.
+
+ may be null, in which case a new will be allocated.
+
+
+ Specifies that null is allowed as an input even if the corresponding type disallows it.
+
+
+ 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.
+
+
+
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netstandard2.1/MySqlConnector.dll b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netstandard2.1/MySqlConnector.dll
new file mode 100644
index 0000000..4d76e14
Binary files /dev/null and b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netstandard2.1/MySqlConnector.dll differ
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netstandard2.1/MySqlConnector.xml b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netstandard2.1/MySqlConnector.xml
new file mode 100644
index 0000000..88db1c5
--- /dev/null
+++ b/Horse Isle Server/packages/MySqlConnector.1.0.1/lib/netstandard2.1/MySqlConnector.xml
@@ -0,0 +1,5034 @@
+
+
+
+ MySqlConnector
+
+
+
+
+ A registry of known authentication plugins.
+
+
+
+
+ Registers the specified authentication plugin. The name of this plugin must be unique.
+
+ The authentication plugin.
+
+
+
+ The primary interface implemented by an authentication plugin.
+
+
+
+
+ The authentication plugin name.
+
+
+
+
+ Creates the authentication response.
+
+ The client's password.
+ The authentication data supplied by the server; this is the auth method data
+ from the Authentication
+ Method Switch Request Packet.
+
+
+
+
+ encapsulates a list of and the current position within that list.
+
+
+
+
+ The commands in the list.
+
+
+
+
+ The index of the current command.
+
+
+
+
+ If the current command is a prepared statement, the index of the current prepared statement for that command.
+
+
+
+
+ Returns true if the connection pool is empty, i.e., all connections are in use. Note that in a highly-multithreaded
+ environment, the value of this property may be stale by the time it's returned.
+
+
+
+
+ Returns the stored procedure cache for this , lazily creating it on demand.
+ This method may return a different object after has been called. The returned
+ object is shared between multiple threads and is only safe to use after taking a lock on the
+ object itself.
+
+
+
+
+ Examines all the objects in to determine if any
+ have an owning that has been garbage-collected. If so, assumes that the connection
+ was not properly disposed and returns the session to the pool.
+
+
+
+
+ The that was used to create this .!--
+ This object must not be mutated.
+
+
+
+
+ provides an internal abstraction over operations that can be cancelled: and .
+
+
+
+
+ Returns a unique ID for all implementations of .
+
+
+
+
+
+ Causes the effective command timeout to be reset back to the value specified by .
+
+ As per the MSDN documentation,
+ "This property is the cumulative time-out (for all network packets that are read during the invocation of a method) for all network reads during command
+ execution or processing of the results. A time-out can still occur after the first row is returned, and does not include user processing time, only network
+ read time. For example, with a 30 second time out, if Read requires two network packets, then it has 30 seconds to read both network packets. If you call
+ Read again, it will have another 30 seconds to read any data that it requires."
+ The method is called by public ADO.NET API methods to reset the effective time remaining at the beginning of a new
+ method call.
+
+
+
+ creates the data for an "execute query" command for one or more objects in a command list.
+
+
+
+
+ Writes the payload for an "execute query" command to .
+
+ The command list and its current position. This will be updated to the position of the next command to write (or past the end if there are no more commands).
+ A for all the stored procedures in the command list, if any.
+ The to write the payload to.
+ true if a command was written; otherwise, false (if there were no more commands in the list).
+
+
+
+ Returns an containing in the order they
+ should be tried to satisfy the load balancing policy.
+
+
+
+
+ provides an internal abstraction over and .
+
+
+
+
+ provides an abstraction over iterating through a sequence of
+ rows, where each row can fill an array of field values.
+
+
+
+
+ represents an individual SQL statement that's been parsed
+ from a string possibly containing multiple semicolon-delimited SQL statements.
+
+
+
+
+ The bytes for this statement that will be written on the wire.
+
+
+
+
+ The names of the parameters (if known) of the parameters in the prepared statement. There
+ is one entry in this list for each parameter, which will be null if the name is unknown.
+
+
+
+
+ The indexes of the parameters in the prepared statement. There is one entry in this list for
+ each parameter; it will be -1 if the parameter is named.
+
+
+
+
+ wraps a collection of objects.
+ It implements to return the memory backing the statements to a shared pool.
+
+
+
+
+ is a statement that has been prepared on the MySQL Server.
+
+
+
+
+ Disposes and sets to null, ignoring any
+ or that is thrown.
+
+ An type.
+ The object to dispose.
+
+
+
+ Writes the text of to , encoded in UTF-8.
+
+ The command.
+ The cached procedures.
+ The output writer.
+ true if a complete command was written; otherwise, false.
+
+
+
+ The statement is complete (apart from potentially needing a semicolon or newline).
+
+
+
+
+ The statement needs a newline (e.g., to terminate a final comment).
+
+
+
+
+ The statement needs a semicolon (if another statement is going to be concatenated to it).
+
+
+
+
+ Implementations of write logs to a particular target.
+
+
+
+
+ Returns true if logging for this logger is enabled at the specified level.
+
+ The log level.
+ true if logging is enabled; otherwise, false.
+
+
+
+ Writes a log message to the target.
+
+ The log level.
+ The log message. See documentation for for notes on interpreting {0} within this string.
+ If not null or empty, then includes formatting placeholders (e.g., {0})
+ which must be replaced with the arguments in , using or similar.
+ If null or an empty array, then is a literal string; any curly braces within it must be treated as literal characters,
+ not formatting placeholders.
+ If not null, an associated with the log message.
+ This method may be called from multiple threads and must be thread-safe. This method may be called
+ even if would return false for ; the implementation must
+ check if logging is enabled for that level.
+
+
+
+ Implementations of create logger instances.
+
+
+
+
+ Creates a logger with the specified name. This method may be called from multiple threads and must be thread-safe.
+
+
+
+
+ Controls logging for MySqlConnector.
+
+
+
+
+ Allows the to be set for this library. can
+ be set once, and must be set before any other library methods are used.
+
+
+
+
+ is an implementation of that does nothing.
+
+ This is the default logging implementation unless is set.
+
+
+
+ Returns false.
+
+
+
+
+ Ignores the specified log message.
+
+
+
+
+ Returns a singleton instance of .
+
+
+
+
+ Creates loggers that do nothing.
+
+
+
+
+ Returns a .
+
+
+
+
+ implements the new
+ ADO.NET batching API.
+ It is currently experimental and may change in the future.
+ When using MariaDB (10.2 or later), the commands will be sent in a single batch, reducing network
+ round-trip time. With other MySQL Servers, this may be no more efficient than executing the commands
+ individually.
+ Example usage:
+
+ using var connection = new MySqlConnection("...connection string...");
+ await connection.OpenAsync();
+
+ using var batch = new MySqlBatch(connection)
+ {
+ BatchCommands =
+ {
+ new MySqlBatchCommand("INSERT INTO departments(name) VALUES(@name);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Sales"),
+ },
+ },
+ new MySqlBatchCommand("SET @dept_id = last_insert_id()"),
+ new MySqlBatchCommand("INSERT INTO employees(name, department_id) VALUES(@name, @dept_id);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Jim Halpert"),
+ },
+ },
+ new MySqlBatchCommand("INSERT INTO employees(name, department_id) VALUES(@name, @dept_id);")
+ {
+ Parameters =
+ {
+ new MySqlParameter("@name", "Dwight Schrute"),
+ },
+ },
+ },
+ };
+ await batch.ExecuteNonQueryAsync();
+
+
+ The proposed ADO.NET API that is based on is not finalized. This API is experimental and may change in the future.
+
+
+
+ Initializes a new object. The property must be set before this object can be used.
+
+
+
+
+ Initializes a new object, setting the and if specified.
+
+ (Optional) The to use.
+ (Optional) The to use.
+
+
+
+ The collection of commands that will be executed in the batch.
+
+
+
+
+ Executes all the commands in the batch, returning a that can iterate
+ over the result sets. If multiple resultsets are returned, use
+ to access them.
+
+
+
+
+ Executes all the commands in the batch, returning a that can iterate
+ over the result sets. If multiple resultsets are returned, use
+ to access them.
+
+ A token to cancel the asynchronous operation.
+ A containing the result of the asynchronous operation.
+
+
+
+ lets you efficiently load a MySQL Server table with data from another source.
+ It is similar to the SqlBulkCopy class
+ for SQL Server.
+ Due to security features
+ in MySQL Server, the connection string must have AllowLoadLocalInfile=true in order
+ to use this class.
+ For data that is in CSV or TSV format, use to bulk load the file.
+ Example code:
+
+ // NOTE: to copy data between tables in the same database, use INSERT ... SELECT
+ // https://dev.mysql.com/doc/refman/8.0/en/insert-select.html
+ var dataTable = GetDataTableFromExternalSource();
+
+ using var connection = new MySqlConnection("...;AllowLoadLocalInfile=True");
+ await connection.OpenAsync();
+ var bulkCopy = new MySqlBulkCopy(connection);
+ bulkCopy.DestinationTableName = "some_table_name";
+ await bulkCopy.WriteToServerAsync(dataTable);
+
+
+ Note: This API is a unique feature of MySqlConnector; you must
+ switch to MySqlConnector in order to use it.
+ This API is experimental and may change in the future.
+
+
+
+
+ Initializes a object with the specified connection, and optionally the active transaction.
+
+ The to use.
+ (Optional) The to use.
+
+
+
+ The number of seconds for the operation to complete before it times out, or 0 for no timeout.
+
+
+
+
+ The name of the table to insert rows into.
+
+ This name needs to be quoted if it contains special characters.
+
+
+
+ If non-zero, this specifies the number of rows to be processed before generating a notification event.
+
+
+
+
+ This event is raised every time that the number of rows specified by the property have been processed.
+
+
+ Receipt of a RowsCopied event does not imply that any rows have been sent to the server or committed.
+ The property can be set to true by the event handler to abort the copy.
+
+
+
+
+ A collection of objects. If the columns being copied from the
+ data source line up one-to-one with the columns in the destination table then populating this collection is
+ unnecessary. Otherwise, this should be filled with a collection of objects
+ specifying how source columns are to be mapped onto destination columns. If one column mapping is specified,
+ then all must be specified.
+
+
+
+
+ Returns the number of rows that were copied (after WriteToServer(Async)
finishes).
+
+
+
+
+ Copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ This method is not available on netstandard1.3.
+
+
+
+ Asynchronously copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ This method is not available on netstandard1.3.
+
+
+
+ Copies all rows in the supplied sequence of objects to the destination table specified by the
+ property of the object. The number of columns
+ to be read from the objects must be specified in advance.
+
+ The collection of objects.
+ The number of columns to copy (in each row).
+ This method is not available on netstandard1.3.
+
+
+
+ Asynchronously copies all rows in the supplied sequence of objects to the destination table specified by the
+ property of the object. The number of columns
+ to be read from the objects must be specified in advance.
+
+ The collection of objects.
+ The number of columns to copy (in each row).
+ A token to cancel the asynchronous operation.
+ This method is not available on netstandard1.3.
+
+
+
+ Copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ The to copy from.
+
+
+
+ Asynchronously copies all rows in the supplied to the destination table specified by the
+ property of the object.
+
+ The to copy from.
+ A token to cancel the asynchronous operation.
+
+
+
+ Use to specify how to map columns in the source data to
+ columns in the destination table when using .
+ Set to the index of the source column to map. Set to
+ either the name of a column in the destination table, or the name of a user-defined variable.
+ If a user-defined variable, you can use to specify a MySQL expression that assigns
+ its value to destination column.
+ Source columns that don't have an entry in will be ignored
+ (unless the collection is empty, in which case all columns will be mapped
+ one-to-one).
+ MySqlConnector will transmit all binary data as hex, so any expression that operates on it
+ must decode it with the UNHEX function first. (This will be performed automatically if no
+ is specified, but will be necessary to specify manually for more complex expressions.)
+ Example code:
+
+ new MySqlBulkCopyColumnMapping
+ {
+ SourceOrdinal = 2,
+ DestinationColumn = "user_name",
+ },
+ new MySqlBulkCopyColumnMapping
+ {
+ SourceOrdinal = 0,
+ DestinationColumn = "@tmp",
+ Expression = "column_value = @tmp * 2",
+ },
+
+
+
+
+
+ Initializes with the default values.
+
+
+
+
+ Initializes to the specified values.
+
+ The ordinal position of the source column.
+ The name of the destination column.
+ The optional expression to be used to set the destination column.
+
+
+
+ The ordinal position of the source column to map from.
+
+
+
+
+ The name of the destination column to copy to. To use an expression, this should be the name of a unique user-defined variable.
+
+
+
+
+ An optional expression for setting a destination column. To use an expression, the should
+ be set to the name of a user-defined variable and this expression should set a column using that variable.
+
+ To populate a binary column, you must set to a variable name, and to an
+ expression that uses UNHEX
to set the column value, e.g., `destColumn` = UNHEX(@variableName)
.
+
+
+
+ lets you efficiently load a MySQL Server Table with data from a CSV or TSV file or .
+ Example code:
+
+ using var connection = new MySqlConnection("...;AllowLoadLocalInfile=True");
+ await connection.OpenAsync();
+ var bulkLoader = new MySqlBulkLoader(connection)
+ {
+ FileName = @"C:\Path\To\file.csv",
+ TableName = "destination",
+ CharacterSet = "UTF8",
+ NumberOfLinesToSkip = 1,
+ FieldTerminator = ",",
+ FieldQuotationCharacter = '"',
+ FieldQuotationOptional = true,
+ Local = true,
+ }
+ var rowCount = await bulkLoader.LoadAsync();
+
+
+ Due to security features
+ in MySQL Server, the connection string must have AllowLoadLocalInfile=true in order to use a local source.
+
+
+
+
+ (Optional) The character set of the source data. By default, the database's character set is used.
+
+
+
+
+ (Optional) A list of the column names in the destination table that should be filled with data from the input file.
+
+
+
+
+ A value that specifies how conflicts are resolved (default ).
+
+
+
+
+ The to use.
+
+
+
+
+ (Optional) The character used to escape instances of within field values.
+
+
+
+
+ (Optional) A list of expressions used to set field values from the columns in the source data.
+
+
+
+
+ (Optional) The character used to enclose fields in the source data.
+
+
+
+
+ Whether quoting fields is optional (default false).
+
+
+
+
+ (Optional) The string fields are terminated with.
+
+
+
+
+ The name of the local (if is true) or remote (otherwise) file to load.
+ Either this or must be set.
+
+
+
+
+ (Optional) A prefix in each line that should be skipped when loading.
+
+
+
+
+ (Optional) The string lines are terminated with.
+
+
+
+
+ Whether a local file is being used (default true).
+
+
+
+
+ The number of lines to skip at the beginning of the file (default 0).
+
+
+
+
+ A giving the priority to load with (default ).
+
+
+
+
+ A containing the data to load. Either this or must be set.
+ The property must be true if this is set.
+
+
+
+
+ The name of the table to load into. If this is a reserved word or contains spaces, it must be quoted.
+
+
+
+
+ The timeout (in milliseconds) to use.
+
+
+
+
+ Initializes a new instance of the class with the specified .
+
+ The to use.
+
+
+
+ Loads all data in the source file or stream into the destination table.
+
+ The number of rows inserted.
+
+
+
+ Asynchronously loads all data in the source file or stream into the destination table.
+
+ A that will be completed with the number of rows inserted.
+
+
+
+ Asynchronously loads all data in the source file or stream into the destination table.
+
+ A token to cancel the asynchronous operation.
+ A that will be completed with the number of rows inserted.
+
+
+
+ Do not use certificate store
+
+
+
+
+ Use certificate store for the current user
+
+
+
+
+ User certificate store for the machine
+
+
+
+
+ represents a SQL statement or stored procedure name
+ to execute against a MySQL database.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class, setting to .
+
+ The text to assign to .
+
+
+
+ Initializes a new instance of the class with the specified and .
+
+ The to use.
+ The active , if any.
+
+
+
+ Initializes a new instance of the class with the specified command text and .
+
+ The text to assign to .
+ The to use.
+
+
+
+ Initializes a new instance of the class with the specified command text,, and .
+
+ The text to assign to .
+ The to use.
+ The active , if any.
+
+
+
+ The collection of objects for this command.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Holds the first automatically-generated ID for a value inserted in an AUTO_INCREMENT column in the last statement.
+
+
+ See LAST_INSERT_ID() for more information.
+
+
+
+
+ Registers as a callback with if cancellation is supported.
+
+ The .
+ An object that must be disposed to revoke the cancellation registration.
+ This method is more efficient than calling token.Register(Command.Cancel)
because it avoids
+ unnecessary allocations.
+
+
+
+ represents a connection to a MySQL database.
+
+
+
+
+ Begins a database transaction.
+
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction.
+
+ The for the transaction.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction.
+
+ The for the transaction.
+ If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ The for the transaction.
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Begins a database transaction asynchronously.
+
+ The for the transaction.
+ If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
+ A token to cancel the asynchronous operation.
+ A representing the new database transaction.
+ Transactions may not be nested.
+
+
+
+ Resets the session state of the current open connection; this clears temporary tables and user-defined variables.
+
+ A token to cancel the asynchronous operation.
+ A ValueTask representing the asynchronous operation.
+ This is an optional feature of the MySQL protocol and may not be supported by all servers.
+ It's known to be supported by MySQL Server 5.7.3 (and later) and MariaDB 10.2.4 (and later).
+ Other MySQL-compatible servers or proxies may not support this command.
+
+
+
+ The connection ID from MySQL Server.
+
+
+
+
+ Clears the connection pool that belongs to.
+
+ The whose connection pool will be cleared.
+
+
+
+ Asynchronously clears the connection pool that belongs to.
+
+ The whose connection pool will be cleared.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+
+
+
+ Clears all connection pools.
+
+
+
+
+ Asynchronously clears all connection pools.
+
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+
+
+
+ Returns schema information for the data source of this .
+
+ A containing schema information.
+
+
+
+ Returns schema information for the data source of this .
+
+ The name of the schema to return.
+ A containing schema information.
+
+
+
+ Returns schema information for the data source of this .
+
+ The name of the schema to return.
+ The restrictions to apply to the schema; this parameter is currently ignored.
+ A containing schema information.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ The name of the schema to return.
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously returns schema information for the data source of this .
+
+ The name of the schema to return.
+ The restrictions to apply to the schema; this parameter is currently ignored.
+ A token to cancel the asynchronous operation.
+ A containing schema information.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Gets the time (in seconds) to wait while trying to establish a connection
+ before terminating the attempt and generating an error. This value
+ is controlled by ,
+ which defaults to 15 seconds.
+
+
+
+
+ Creates a object for executing batched commands.
+
+
+
+
+
+ Creates a object (that can be used with ).
+
+
+
+
+
+ Returns an unopened copy of this connection with a new connection string. If the Password
+ in is not set, the password from this connection will be used.
+ This allows creating a new connection with the same security information while changing other options,
+ such as database or pooling.
+
+ The new connection string to be used.
+ A new with different connection string options but
+ the same password as this connection (unless overridden by ).
+
+
+
+ Specifies the type of connection to make to the server.
+
+
+
+
+ TCP/IP connection.
+
+
+
+
+ Named pipe connection. Only works on Windows.
+
+
+
+
+ Unix domain socket connection. Only works on Unix/Linux.
+
+
+
+
+ Shared memory connection. Not currently supported.
+
+
+
+
+ The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error.
+ The default value is 15.
+
+
+
+
+ An implementation of that creates MySqlConnector objects.
+
+
+
+
+ Provides an instance of that can create MySqlConnector objects.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Returns false.
+
+ is not supported by MySqlConnector.
+
+
+
+ Returns true.
+
+
+
+
+ Returns true.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Creates a new object.
+
+
+
+
+ Returns true.
+
+
+
+
+ Returns a that contains metadata about the columns in the result set.
+
+ A containing metadata about the columns in the result set.
+
+
+
+ Returns a that contains metadata about the columns in the result set.
+
+ A token to cancel the operation.
+ A containing metadata about the columns in the result set.
+ This method runs synchronously; prefer to call to avoid the overhead of allocating an unnecessary Task.
+
+
+
+ Returns metadata about the columns in the result set.
+
+ A containing metadata about the result set.
+
+
+
+ Returns metadata about the columns in the result set.
+
+ A token to cancel the operation.
+ A containing containing metadata about the result set.
+ This method runs synchronously; prefer to call to avoid the overhead of allocating an unnecessary Task.
+
+
+
+ The used when reading from the database.
+
+
+
+
+ Use when reading; allow any in command parameters.
+
+
+
+
+ Use when reading; reject in command parameters.
+
+
+
+
+ Use when reading; reject in command parameters.
+
+
+
+
+ MySQL Server error codes. Taken from Server Error Codes and Messages.
+
+
+
+
+ Not all rows from the source supplied to were copied to .
+
+
+
+
+ The timeout period specified by elapsed before the operation completed.
+
+
+
+
+ ER_HASHCHK
+
+
+
+
+ ER_NISAMCHK
+
+
+
+
+ ER_NO
+
+
+
+
+ ER_YES
+
+
+
+
+ ER_CANT_CREATE_FILE
+
+
+
+
+ ER_CANT_CREATE_TABLE
+
+
+
+
+ ER_CANT_CREATE_DB
+
+
+
+
+ ER_DB_CREATE_EXISTS
+
+
+
+
+ ER_DB_DROP_EXISTS
+
+
+
+
+ ER_DB_DROP_DELETE
+
+
+
+
+ ER_DB_DROP_RMDIR
+
+
+
+
+ ER_CANT_DELETE_FILE
+
+
+
+
+ ER_CANT_FIND_SYSTEM_REC
+
+
+
+
+ ER_CANT_GET_STAT
+
+
+
+
+ ER_CANT_GET_WD
+
+
+
+
+ ER_CANT_LOCK
+
+
+
+
+ ER_CANT_OPEN_FILE
+
+
+
+
+ ER_FILE_NOT_FOUND
+
+
+
+
+ ER_CANT_READ_DIR
+
+
+
+
+ ER_CANT_SET_WD
+
+
+
+
+ ER_CHECKREAD
+
+
+
+
+ ER_DISK_FULL
+
+
+
+
+ ER_DUP_KEY
+
+
+
+
+ ER_ERROR_ON_CLOSE
+
+
+
+
+ ER_ERROR_ON_READ
+
+
+
+
+ ER_ERROR_ON_RENAME
+
+
+
+
+ ER_ERROR_ON_WRITE
+
+
+
+
+ ER_FILE_USED
+
+
+
+
+ ER_FILSORT_ABORT
+
+
+
+
+ ER_FORM_NOT_FOUND
+
+
+
+
+ ER_GET_ERRNO
+
+
+
+
+ ER_ILLEGAL_HA
+
+
+
+
+ ER_KEY_NOT_FOUND
+
+
+
+
+ ER_NOT_FORM_FILE
+
+
+
+
+ ER_NOT_KEYFILE
+
+
+
+
+ ER_OLD_KEYFILE
+
+
+
+
+ ER_OPEN_AS_READONLY
+
+
+
+
+ ER_OUTOFMEMORY
+
+
+
+
+ ER_OUT_OF_SORTMEMORY
+
+
+
+
+ ER_UNEXPECTED_EOF
+
+
+
+
+ ER_CON_COUNT_ERROR
+
+
+
+
+ ER_OUT_OF_RESOURCES
+
+
+
+
+ ER_BAD_HOST_ERROR
+
+
+
+
+ ER_HANDSHAKE_ERROR
+
+
+
+
+ ER_DBACCESS_DENIED_ERROR
+
+
+
+
+ ER_ACCESS_DENIED_ERROR
+
+
+
+
+ ER_NO_DB_ERROR
+
+
+
+
+ ER_UNKNOWN_COM_ERROR
+
+
+
+
+ ER_BAD_NULL_ERROR
+
+
+
+
+ ER_BAD_DB_ERROR
+
+
+
+
+ ER_TABLE_EXISTS_ERROR
+
+
+
+
+ ER_BAD_TABLE_ERROR
+
+
+
+
+ ER_NON_UNIQ_ERROR
+
+
+
+
+ ER_SERVER_SHUTDOWN
+
+
+
+
+ ER_BAD_FIELD_ERROR
+
+
+
+
+ ER_WRONG_FIELD_WITH_GROUP
+
+
+
+
+ ER_WRONG_GROUP_FIELD
+
+
+
+
+ ER_WRONG_SUM_SELECT
+
+
+
+
+ ER_WRONG_VALUE_COUNT
+
+
+
+
+ ER_TOO_LONG_IDENT
+
+
+
+
+ ER_DUP_FIELDNAME
+
+
+
+
+ ER_DUP_KEYNAME
+
+
+
+
+ ER_DUP_ENTRY
+
+
+
+
+ ER_WRONG_FIELD_SPEC
+
+
+
+
+ You have an error in your SQL syntax (ER_PARSE_ERROR).
+
+
+
+
+ ER_EMPTY_QUERY
+
+
+
+
+ ER_NONUNIQ_TABLE
+
+
+
+
+ ER_INVALID_DEFAULT
+
+
+
+
+ ER_MULTIPLE_PRI_KEY
+
+
+
+
+ ER_TOO_MANY_KEYS
+
+
+
+
+ ER_TOO_MANY_KEY_PARTS
+
+
+
+
+ ER_TOO_LONG_KEY
+
+
+
+
+ ER_KEY_COLUMN_DOES_NOT_EXITS
+
+
+
+
+ ER_BLOB_USED_AS_KEY
+
+
+
+
+ ER_TOO_BIG_FIELDLENGTH
+
+
+
+
+ ER_WRONG_AUTO_KEY
+
+
+
+
+ ER_READY
+
+
+
+
+ ER_NORMAL_SHUTDOWN
+
+
+
+
+ ER_GOT_SIGNAL
+
+
+
+
+ ER_SHUTDOWN_COMPLETE
+
+
+
+
+ ER_FORCING_CLOSE
+
+
+
+
+ ER_IPSOCK_ERROR
+
+
+
+
+ ER_NO_SUCH_INDEX
+
+
+
+
+ ER_WRONG_FIELD_TERMINATORS
+
+
+
+
+ ER_BLOBS_AND_NO_TERMINATED
+
+
+
+
+ ER_TEXTFILE_NOT_READABLE
+
+
+
+
+ ER_FILE_EXISTS_ERROR
+
+
+
+
+ ER_LOAD_INFO
+
+
+
+
+ ER_ALTER_INFO
+
+
+
+
+ ER_WRONG_SUB_KEY
+
+
+
+
+ ER_CANT_REMOVE_ALL_FIELDS
+
+
+
+
+ ER_CANT_DROP_FIELD_OR_KEY
+
+
+
+
+ ER_INSERT_INFO
+
+
+
+
+ ER_UPDATE_TABLE_USED
+
+
+
+
+ ER_NO_SUCH_THREAD
+
+
+
+
+ ER_KILL_DENIED_ERROR
+
+
+
+
+ ER_NO_TABLES_USED
+
+
+
+
+ ER_TOO_BIG_SET
+
+
+
+
+ ER_NO_UNIQUE_LOGFILE
+
+
+
+
+ ER_TABLE_NOT_LOCKED_FOR_WRITE
+
+
+
+
+ ER_TABLE_NOT_LOCKED
+
+
+
+
+ ER_BLOB_CANT_HAVE_DEFAULT
+
+
+
+
+ ER_WRONG_DB_NAME
+
+
+
+
+ ER_WRONG_TABLE_NAME
+
+
+
+
+ ER_TOO_BIG_SELECT
+
+
+
+
+ ER_UNKNOWN_ERROR
+
+
+
+
+ ER_UNKNOWN_PROCEDURE
+
+
+
+
+ ER_WRONG_PARAMCOUNT_TO_PROCEDURE
+
+
+
+
+ ER_WRONG_PARAMETERS_TO_PROCEDURE
+
+
+
+
+ ER_UNKNOWN_TABLE
+
+
+
+
+ ER_FIELD_SPECIFIED_TWICE
+
+
+
+
+ ER_INVALID_GROUP_FUNC_USE
+
+
+
+
+ ER_UNSUPPORTED_EXTENSION
+
+
+
+
+ ER_TABLE_MUST_HAVE_COLUMNS
+
+
+
+
+ ER_RECORD_FILE_FULL
+
+
+
+
+ ER_UNKNOWN_CHARACTER_SET
+
+
+
+
+ ER_TOO_MANY_TABLES
+
+
+
+
+ ER_TOO_MANY_FIELDS
+
+
+
+
+ ER_TOO_BIG_ROWSIZE
+
+
+
+
+ ER_STACK_OVERRUN
+
+
+
+
+ ER_WRONG_OUTER_JOIN
+
+
+
+
+ ER_NULL_COLUMN_IN_INDEX
+
+
+
+
+ ER_CANT_FIND_UDF
+
+
+
+
+ ER_CANT_INITIALIZE_UDF
+
+
+
+
+ ER_UDF_NO_PATHS
+
+
+
+
+ ER_UDF_EXISTS
+
+
+
+
+ ER_CANT_OPEN_LIBRARY
+
+
+
+
+ ER_CANT_FIND_DL_ENTRY
+
+
+
+
+ ER_FUNCTION_NOT_DEFINED
+
+
+
+
+ ER_HOST_IS_BLOCKED
+
+
+
+
+ ER_HOST_NOT_PRIVILEGED
+
+
+
+
+ ER_PASSWORD_ANONYMOUS_USER
+
+
+
+
+ ER_PASSWORD_NOT_ALLOWED
+
+
+
+
+ ER_PASSWORD_NO_MATCH
+
+
+
+
+ ER_UPDATE_INFO
+
+
+
+
+ ER_CANT_CREATE_THREAD
+
+
+
+
+ ER_WRONG_VALUE_COUNT_ON_ROW
+
+
+
+
+ ER_CANT_REOPEN_TABLE
+
+
+
+
+ ER_INVALID_USE_OF_NULL
+
+
+
+
+ ER_REGEXP_ERROR
+
+
+
+
+ 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_UNUSED1
+
+
+
+
+ ER_UNUSED2
+
+
+
+
+ ER_ABORTING_CONNECTION
+
+
+
+
+ ER_NET_PACKET_TOO_LARGE
+
+
+
+
+ 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_UNUSED3
+
+
+
+
+ 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
+
+
+
+
+ Query execution was interrupted (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_OBSOLETE_COL_COUNT_DOESNT_MATCH_CORRUPTED
+
+
+
+
+ ER_OBSOLETE_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_OLD_UNUSED
+
+
+
+
+ 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_TX_CHARACTERISTICS
+
+
+
+
+ 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_NEVER_USED
+
+
+
+
+ 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_CANT_EXECUTE_IN_READ_ONLY_TRANSACTION
+
+
+
+
+ is thrown when MySQL Server returns an error code, or there is a
+ communication error with the server.
+
+
+
+
+ A value identifying the kind of error. Prefer to use the property.
+
+
+
+
+ A value identifying the kind of error.
+
+
+
+
+ A SQLSTATE code identifying the kind of error.
+
+ See SQLSTATE for more information.
+
+
+
+ Represents MySQL's internal GEOMETRY format: https://dev.mysql.com/doc/refman/8.0/en/gis-data-formats.html#gis-internal-format
+
+
+
+
+ Constructs a from a SRID and Well-known Binary bytes.
+
+ The SRID (Spatial Reference System ID).
+ The Well-known Binary serialization of the geometry.
+ A new containing the specified geometry.
+
+
+
+ Constructs a from MySQL's internal format.
+
+ The raw bytes of MySQL's internal GEOMETRY format.
+ A new containing the specified geometry.
+ See Internal Geometry Storage Format.
+
+
+
+ The Spatial Reference System ID of this geometry.
+
+
+
+
+ The Well-known Binary serialization of this geometry.
+
+
+
+
+ The internal MySQL form of this geometry.
+
+
+
+
+ Determines which column type (if any) should be read as a System.Guid.
+
+
+
+
+ Same as Char36 if OldGuids=False; same as LittleEndianBinary16 if OldGuids=True.
+
+
+
+
+ No column types are read/written as a Guid
.
+
+
+
+
+ All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens,
+ which matches UUID().
+
+
+
+
+ All CHAR(32) columns are read/written as a Guid using lowercase hex without hyphens.
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using big-endian byte order,
+ which matches UUID_TO_BIN(x).
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using big-endian byte order with time parts swapped,
+ which matches UUID_TO_BIN(x,1).
+
+
+
+
+ All BINARY(16) columns are read/written as a Guid using little-endian byte order, i.e. the byte order
+ used by and .
+
+
+
+
+ Escapes single and double quotes, and backslashes in .
+
+
+
+
+ Each new connection opened for a connection pool uses the next host name (sequentially with wraparound).
+
+
+
+
+ Each new connection tries to connect to the first host; subsequent hosts are used only if connecting to the first one fails.
+
+
+
+
+ Servers are tried in random order.
+
+
+
+
+ Servers are tried in ascending order of number of currently-open connections.
+
+
+
+
+ Gets or sets a value that indicates whether the bulk copy operation should be aborted.
+
+
+
+
+ Gets a value that returns the number of rows copied during the current bulk copy operation.
+
+
+
+
+ Represents the method that handles the event of a .
+
+
+
+
+ SSL connection options.
+
+
+
+
+ Do not use SSL.
+
+
+
+
+ Use SSL if the server supports it.
+
+
+
+
+ Always use SSL. Deny connection if server does not support SSL.
+
+
+
+
+ Always use SSL. Validate the Certificate Authority but tolerate name mismatch.
+
+
+
+
+ Always use SSL. Fail if the host name is not correct.
+
+
+
+
+ Removes the named transaction savepoint with the specified . No commit or rollback occurs.
+
+ The savepoint name.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously removes the named transaction savepoint with the specified . No commit or rollback occurs.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Rolls back the current transaction to the savepoint with the specified without aborting the transaction.
+
+ The savepoint name.
+ The name must have been created with , but not released by calling .
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously rolls back the current transaction to the savepoint with the specified without aborting the transaction.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The name must have been created with , but not released by calling .
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Sets a named transaction savepoint with the specified . If the current transaction
+ already has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+ The savepoint name.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ Asynchronously sets a named transaction savepoint with the specified . If the current transaction
+ already has a savepoint with the same name, the old savepoint is deleted and a new one is set.
+
+ The savepoint name.
+ A token to cancel the asynchronous operation.
+ A representing the asynchronous operation.
+ The proposed ADO.NET API that this is based on is not finalized; this API may change in the future.
+
+
+
+ MySQL character set codes.
+
+ Obtained from SELECT id, collation_name FROM information_schema.collations ORDER BY id; on MySQL 8.0.16.
+
+
+
+ Field cannot be NULL.
+
+
+
+
+ Field is part of a primary key.
+
+
+
+
+ Field is part of a unique key.
+
+
+
+
+ Field is part of a nonunique key.
+
+
+
+
+ Field is a BLOB or TEXT (deprecated).
+
+
+
+
+ Field has the UNSIGNED attribute.
+
+
+
+
+ Field has the ZEROFILL attribute.
+
+
+
+
+ Field has the BINARY attribute.
+
+
+
+
+ Field is an ENUM.
+
+
+
+
+ Field has the AUTO_INCREMENT attribute.
+
+
+
+
+ Field is a TIMESTAMP (deprecated).
+
+
+
+
+ Field is a SET.
+
+
+
+
+ Field is numeric.
+
+
+
+
+ See MySQL documentation.
+
+
+
+
+ Returns true if contains an EOF packet.
+ Note that EOF packets can appear in places where a length-encoded integer (which starts with the same signature byte) may appear, so the length
+ has to be checked to verify that it is an EOF packet.
+
+ The payload to examine.
+ true if this is an EOF packet; otherwise, false.
+
+
+
+ The MySQL Capability flags.
+
+
+
+
+ No specified capabilities.
+
+
+
+
+ Use the improved version of Old Password Authentication.
+
+
+
+
+ Send found rows instead of affected rows in EOF_Packet.
+
+
+
+
+ Longer flags in Protocol::ColumnDefinition320.
+
+
+
+
+ Database (schema) name can be specified on connect in Handshake Response Packet.
+
+
+
+
+ Do not permit database.table.column.
+
+
+
+
+ Supports compression.
+
+
+
+
+ Special handling of ODBC behavior.
+
+
+
+
+ Enables the LOCAL INFILE request of LOAD DATA|XML.
+
+
+
+
+ Parser can ignore spaces before '('.
+
+
+
+
+ Supports the 4.1 protocol.
+
+
+
+
+ Server: Supports interactive and noninteractive clients. Client: The session wait_timeout
variable is set to the value of the session interactive_timeout
variable.
+
+
+
+
+ Supports SSL.
+
+
+
+
+ Can send status flags in EOF_Packet.
+
+
+
+
+ Supports Authentication::Native41.
+
+
+
+
+ Can handle multiple statements per COM_QUERY and COM_STMT_PREPARE.
+
+
+
+
+ Can send multiple resultsets for COM_QUERY.
+
+
+
+
+ Can send multiple resultsets for COM_STMT_EXECUTE.
+
+
+
+
+ Sends extra data in Initial Handshake Packet and supports the pluggable authentication protocol.
+
+
+
+
+ Permits connection attributes in Protocol::HandshakeResponse41.
+
+
+
+
+ Understands length-encoded integer for auth response data in Protocol::HandshakeResponse41.
+
+
+
+
+ Announces support for expired password extension.
+
+
+
+
+ Can set SERVER_SESSION_STATE_CHANGED in the Status Flags and send session-state change data after a OK packet.
+
+
+
+
+ Can send OK after a Text Resultset.
+
+
+
+
+ Client supports progress indicator.
+
+
+
+
+ Client supports COM_MULTI (i.e., CommandKind.Multi)
+
+
+
+
+ Support of array binding.
+
+
+
+
+ is a class that holds an instance of .
+ Its primary difference from is that it's a reference type, so mutations
+ to this object are visible to other objects that hold a reference to it.
+
+
+
+
+ Hashes a password with the "Secure Password Authentication" method.
+
+ The 20-byte random challenge (from the "auth-plugin-data" in the initial handshake).
+ The password to hash.
+ A 20-byte password hash.
+ See Secure Password Authentication.
+
+
+
+ Helper class to translate NegotiateStream framing for SPNEGO token
+ into MySQL protocol packets.
+
+ Serves as underlying stream for System.Net.NegotiateStream
+ to perform MariaDB's auth_gssapi_client authentication.
+
+ NegotiateStream protocol is described in e.g here
+ https://winprotocoldoc.blob.core.windows.net/productionwindowsarchives/MS-NNS/[MS-NNS].pdf
+ We only use Handshake Messages for authentication.
+
+
+
+
+ The remaining timeout (in milliseconds) for the next I/O read. Use to represent no (or, infinite) timeout.
+
+
+
+
+ Reads data from this byte handler.
+
+ The buffer to read into.
+ The to use when reading data.
+ A holding the number of bytes read. If reading failed, this will be zero.
+
+
+
+ Writes data to this byte handler.
+
+ The data to write.
+ The to use when writing.
+ A . The value of this object is not defined.
+
+
+
+ Specifies whether to perform synchronous or asynchronous I/O.
+
+
+
+
+ Use synchronous I/O.
+
+
+
+
+ Use asynchronous I/O.
+
+
+
+
+ Starts a new "conversation" with the MySQL Server. This resets the "sequence id"
+ and should be called when a new command begins.
+
+
+
+
+ Gets or sets the underlying that data is read from and written to.
+
+
+
+
+ Reads the next payload.
+
+ An that will cache any buffers allocated during this
+ read. (To disable caching, pass new ArraySegmentHolder<byte>
so the cache will be garbage-collected
+ when this method returns.)
+ The to use if there is a protocol error.
+ The to use when reading data.
+ An containing the data that was read. This
+ will be valid to read from until the next time or
+ is called.
+
+
+
+ Writes a payload.
+
+ The data to write.
+ The to use when writing.
+ A . The value of this object is not defined.
+
+
+
+ Specifies how to handle protocol errors.
+
+
+
+
+ Throw an exception when there is a protocol error. This is the default.
+
+
+
+
+ Ignore any protocol errors.
+
+
+
+
+ A transaction is active.
+
+
+
+
+ Auto-commit is enabled
+
+
+
+
+ Used by Binary Protocol Resultset to signal that COM_STMT_FETCH must be used to fetch the row-data.
+
+
+
+
+ In a read-only transaction.
+
+
+
+
+ Connection state information has changed.
+
+
+
+
+ SESSION_TRACK_SYSTEM_VARIABLES: one or more system variables changed
+
+
+
+
+ SESSION_TRACK_SCHEMA: schema changed
+
+
+
+
+ SESSION_TRACK_STATE_CHANGE: "track state change" changed
+
+
+
+
+ SESSION_TRACK_GTIDS: "track GTIDs" changed
+
+
+
+
+ A sentinel value indicating no (or infinite) timeout.
+
+
+
+
+ A wrapper around a resizable array. This type is intended to be used with .
+
+
+
+
+ Do not call this method directly; use .
+
+
+
+
+ An that supports having its underlying array reallocated and resized.
+
+
+
+
+ Adds a timer that will invoke in approximately milliseconds.
+
+ The time (in milliseconds) to wait before invoking .
+ The callback to invoke.
+ A timer ID that can be passed to to cancel the timer.
+
+
+
+ Cancels the timer with the specified ID.
+
+ The timer ID (returned from ).
+ true if the timer was removed; otherwise, false. This method will return false if the specified timer has already fired.
+
+
+
+ Loads a RSA key from a PEM string.
+
+ The key, in PEM format.
+ An RSA key.
+
+
+
+ Returns a new that starts at index into .
+
+ The from which to create a slice.
+ The non-negative, zero-based starting index of the new slice (relative to of .
+ A new starting at the th element of and continuing to the end of .
+
+
+
+ Returns a new that starts at index into and has a length of .
+
+ The from which to create a slice.
+ The non-negative, zero-based starting index of the new slice (relative to of .
+ The non-negative length of the new slice.
+ A new of length , starting at the th element of .
+
+
+
+ Returns a new that is a slice of starting at .
+
+ The array to slice.
+ The offset at which to slice.
+ The length of the slice.
+ A new that is a slice of from to the end.
+
+
+
+ Finds the next index of in , starting at index .
+
+ The array to search.
+ The offset at which to start searching.
+ The pattern to find in .
+ The offset of within , or -1 if was not found.
+
+
+
+ Resizes to hold at least items.
+
+ may be null, in which case a new will be allocated.
+
+
+
diff --git a/Horse Isle Server/packages/MySqlConnector.1.0.1/logo.png b/Horse Isle Server/packages/MySqlConnector.1.0.1/logo.png
new file mode 100644
index 0000000..eba85f4
Binary files /dev/null and b/Horse Isle Server/packages/MySqlConnector.1.0.1/logo.png differ
diff --git a/Horse Isle Server/packages/System.Buffers.4.4.0/.signature.p7s b/Horse Isle Server/packages/System.Buffers.4.4.0/.signature.p7s
new file mode 100644
index 0000000..34d8bab
Binary files /dev/null and b/Horse Isle Server/packages/System.Buffers.4.4.0/.signature.p7s differ
diff --git a/Horse Isle Server/packages/System.Buffers.4.4.0/LICENSE.TXT b/Horse Isle Server/packages/System.Buffers.4.4.0/LICENSE.TXT
new file mode 100644
index 0000000..984713a
--- /dev/null
+++ b/Horse Isle Server/packages/System.Buffers.4.4.0/LICENSE.TXT
@@ -0,0 +1,23 @@
+The MIT License (MIT)
+
+Copyright (c) .NET Foundation and Contributors
+
+All rights reserved.
+
+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.
diff --git a/Horse Isle Server/packages/System.Buffers.4.4.0/System.Buffers.4.4.0.nupkg b/Horse Isle Server/packages/System.Buffers.4.4.0/System.Buffers.4.4.0.nupkg
new file mode 100644
index 0000000..c261fa8
Binary files /dev/null and b/Horse Isle Server/packages/System.Buffers.4.4.0/System.Buffers.4.4.0.nupkg differ
diff --git a/Horse Isle Server/packages/System.Buffers.4.4.0/THIRD-PARTY-NOTICES.TXT b/Horse Isle Server/packages/System.Buffers.4.4.0/THIRD-PARTY-NOTICES.TXT
new file mode 100644
index 0000000..06055ff
--- /dev/null
+++ b/Horse Isle Server/packages/System.Buffers.4.4.0/THIRD-PARTY-NOTICES.TXT
@@ -0,0 +1,226 @@
+.NET Core uses third-party libraries or other resources that may be
+distributed under licenses different than the .NET Core software.
+
+In the event that we accidentally failed to list a required notice, please
+bring it to our attention. Post an issue or email us:
+
+ dotnet@microsoft.com
+
+The attached notices are provided for information only.
+
+License notice for Slicing-by-8
+-------------------------------
+
+http://sourceforge.net/projects/slicing-by-8/
+
+Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved
+
+
+This software program is licensed subject to the BSD License, available at
+http://www.opensource.org/licenses/bsd-license.html.
+
+
+License notice for Unicode data
+-------------------------------
+
+http://www.unicode.org/copyright.html#License
+
+Copyright © 1991-2017 Unicode, Inc. All rights reserved.
+Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Unicode data files and any associated documentation
+(the "Data Files") or Unicode software and any associated documentation
+(the "Software") to deal in the Data Files or Software
+without restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, and/or sell copies of
+the Data Files or Software, and to permit persons to whom the Data Files
+or Software are furnished to do so, provided that either
+(a) this copyright and permission notice appear with all copies
+of the Data Files or Software, or
+(b) this copyright and permission notice appear in associated
+Documentation.
+
+THE DATA FILES AND SOFTWARE ARE 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 OF THIRD PARTY RIGHTS.
+IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
+NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
+DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THE DATA FILES OR SOFTWARE.
+
+Except as contained in this notice, the name of a copyright holder
+shall not be used in advertising or otherwise to promote the sale,
+use or other dealings in these Data Files or Software without prior
+written authorization of the copyright holder.
+
+License notice for Zlib
+-----------------------
+
+https://github.com/madler/zlib
+http://zlib.net/zlib_license.html
+
+/* zlib.h -- interface of the 'zlib' general purpose compression library
+ version 1.2.11, January 15th, 2017
+
+ Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
+
+ This software is provided 'as-is', without any express or implied
+ warranty. In no event will the authors be held liable for any damages
+ arising from the use of this software.
+
+ Permission is granted to anyone to use this software for any purpose,
+ including commercial applications, and to alter it and redistribute it
+ freely, subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+ 3. This notice may not be removed or altered from any source distribution.
+
+ Jean-loup Gailly Mark Adler
+ jloup@gzip.org madler@alumni.caltech.edu
+
+*/
+
+License notice for Mono
+-------------------------------
+
+http://www.mono-project.com/docs/about-mono/
+
+Copyright (c) .NET Foundation Contributors
+
+MIT License
+
+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.
+
+License notice for International Organization for Standardization
+-----------------------------------------------------------------
+
+Portions (C) International Organization for Standardization 1986:
+ Permission to copy in any form is granted for use with
+ conforming SGML systems and applications as defined in
+ ISO 8879, provided this notice is included in all copies.
+
+License notice for Intel
+------------------------
+
+"Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this
+list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice,
+this list of conditions and the following disclaimer in the documentation
+and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+License notice for Xamarin and Novell
+-------------------------------------
+
+Copyright (c) 2015 Xamarin, Inc (http://www.xamarin.com)
+
+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.
+
+Copyright (c) 2011 Novell, Inc (http://www.novell.com)
+
+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.
+
+Third party notice for W3C
+--------------------------
+
+"W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE
+Status: This license takes effect 13 May, 2015.
+This work is being provided by the copyright holders under the following license.
+License
+By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions.
+Permission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications:
+The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.
+Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included.
+Notice of any changes or modifications, through a copyright statement on the new code or document such as "This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)."
+Disclaimers
+THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
+COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT.
+The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders."
+
+License notice for Bit Twiddling Hacks
+--------------------------------------
+
+Bit Twiddling Hacks
+
+By Sean Eron Anderson
+seander@cs.stanford.edu
+
+Individually, the code snippets here are in the public domain (unless otherwise
+noted) — feel free to use them however you please. The aggregate collection and
+descriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are
+distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and
+without even the implied warranty of merchantability or fitness for a particular
+purpose.
diff --git a/Horse Isle Server/packages/System.Buffers.4.4.0/lib/netcoreapp2.0/_._ b/Horse Isle Server/packages/System.Buffers.4.4.0/lib/netcoreapp2.0/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Buffers.4.4.0/lib/netstandard1.1/System.Buffers.dll b/Horse Isle Server/packages/System.Buffers.4.4.0/lib/netstandard1.1/System.Buffers.dll
new file mode 100644
index 0000000..fb2911d
Binary files /dev/null and b/Horse Isle Server/packages/System.Buffers.4.4.0/lib/netstandard1.1/System.Buffers.dll differ
diff --git a/Horse Isle Server/packages/System.Buffers.4.4.0/lib/netstandard1.1/System.Buffers.xml b/Horse Isle Server/packages/System.Buffers.4.4.0/lib/netstandard1.1/System.Buffers.xml
new file mode 100644
index 0000000..d3d239e
--- /dev/null
+++ b/Horse Isle Server/packages/System.Buffers.4.4.0/lib/netstandard1.1/System.Buffers.xml
@@ -0,0 +1,39 @@
+
+
+
+ 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 bufferLength 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 bufferLength 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/Horse Isle Server/packages/System.Buffers.4.4.0/lib/netstandard2.0/System.Buffers.dll b/Horse Isle Server/packages/System.Buffers.4.4.0/lib/netstandard2.0/System.Buffers.dll
new file mode 100644
index 0000000..b6d9c77
Binary files /dev/null and b/Horse Isle Server/packages/System.Buffers.4.4.0/lib/netstandard2.0/System.Buffers.dll differ
diff --git a/Horse Isle Server/packages/System.Buffers.4.4.0/lib/netstandard2.0/System.Buffers.xml b/Horse Isle Server/packages/System.Buffers.4.4.0/lib/netstandard2.0/System.Buffers.xml
new file mode 100644
index 0000000..d3d239e
--- /dev/null
+++ b/Horse Isle Server/packages/System.Buffers.4.4.0/lib/netstandard2.0/System.Buffers.xml
@@ -0,0 +1,39 @@
+
+
+
+ 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 bufferLength 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 bufferLength 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/Horse Isle Server/packages/System.Buffers.4.4.0/ref/netcoreapp2.0/_._ b/Horse Isle Server/packages/System.Buffers.4.4.0/ref/netcoreapp2.0/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Buffers.4.4.0/ref/netstandard1.1/System.Buffers.dll b/Horse Isle Server/packages/System.Buffers.4.4.0/ref/netstandard1.1/System.Buffers.dll
new file mode 100644
index 0000000..33880ef
Binary files /dev/null and b/Horse Isle Server/packages/System.Buffers.4.4.0/ref/netstandard1.1/System.Buffers.dll differ
diff --git a/Horse Isle Server/packages/System.Buffers.4.4.0/ref/netstandard1.1/System.Buffers.xml b/Horse Isle Server/packages/System.Buffers.4.4.0/ref/netstandard1.1/System.Buffers.xml
new file mode 100644
index 0000000..d3d239e
--- /dev/null
+++ b/Horse Isle Server/packages/System.Buffers.4.4.0/ref/netstandard1.1/System.Buffers.xml
@@ -0,0 +1,39 @@
+
+
+
+ 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 bufferLength 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 bufferLength 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/Horse Isle Server/packages/System.Buffers.4.4.0/ref/netstandard2.0/System.Buffers.dll b/Horse Isle Server/packages/System.Buffers.4.4.0/ref/netstandard2.0/System.Buffers.dll
new file mode 100644
index 0000000..fa635a9
Binary files /dev/null and b/Horse Isle Server/packages/System.Buffers.4.4.0/ref/netstandard2.0/System.Buffers.dll differ
diff --git a/Horse Isle Server/packages/System.Buffers.4.4.0/ref/netstandard2.0/System.Buffers.xml b/Horse Isle Server/packages/System.Buffers.4.4.0/ref/netstandard2.0/System.Buffers.xml
new file mode 100644
index 0000000..d3d239e
--- /dev/null
+++ b/Horse Isle Server/packages/System.Buffers.4.4.0/ref/netstandard2.0/System.Buffers.xml
@@ -0,0 +1,39 @@
+
+
+
+ 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 bufferLength 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 bufferLength 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/Horse Isle Server/packages/System.Buffers.4.4.0/useSharedDesignerContext.txt b/Horse Isle Server/packages/System.Buffers.4.4.0/useSharedDesignerContext.txt
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Buffers.4.4.0/version.txt b/Horse Isle Server/packages/System.Buffers.4.4.0/version.txt
new file mode 100644
index 0000000..1ca86a0
--- /dev/null
+++ b/Horse Isle Server/packages/System.Buffers.4.4.0/version.txt
@@ -0,0 +1 @@
+8321c729934c0f8be754953439b88e6e1c120c24
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/.signature.p7s b/Horse Isle Server/packages/System.Memory.4.5.0/.signature.p7s
new file mode 100644
index 0000000..b07f108
Binary files /dev/null and b/Horse Isle Server/packages/System.Memory.4.5.0/.signature.p7s differ
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/LICENSE.TXT b/Horse Isle Server/packages/System.Memory.4.5.0/LICENSE.TXT
new file mode 100644
index 0000000..984713a
--- /dev/null
+++ b/Horse Isle Server/packages/System.Memory.4.5.0/LICENSE.TXT
@@ -0,0 +1,23 @@
+The MIT License (MIT)
+
+Copyright (c) .NET Foundation and Contributors
+
+All rights reserved.
+
+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.
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/System.Memory.4.5.0.nupkg b/Horse Isle Server/packages/System.Memory.4.5.0/System.Memory.4.5.0.nupkg
new file mode 100644
index 0000000..395b5e0
Binary files /dev/null and b/Horse Isle Server/packages/System.Memory.4.5.0/System.Memory.4.5.0.nupkg differ
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/THIRD-PARTY-NOTICES.TXT b/Horse Isle Server/packages/System.Memory.4.5.0/THIRD-PARTY-NOTICES.TXT
new file mode 100644
index 0000000..db542ca
--- /dev/null
+++ b/Horse Isle Server/packages/System.Memory.4.5.0/THIRD-PARTY-NOTICES.TXT
@@ -0,0 +1,309 @@
+.NET Core uses third-party libraries or other resources that may be
+distributed under licenses different than the .NET Core software.
+
+In the event that we accidentally failed to list a required notice, please
+bring it to our attention. Post an issue or email us:
+
+ dotnet@microsoft.com
+
+The attached notices are provided for information only.
+
+License notice for Slicing-by-8
+-------------------------------
+
+http://sourceforge.net/projects/slicing-by-8/
+
+Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved
+
+
+This software program is licensed subject to the BSD License, available at
+http://www.opensource.org/licenses/bsd-license.html.
+
+
+License notice for Unicode data
+-------------------------------
+
+http://www.unicode.org/copyright.html#License
+
+Copyright © 1991-2017 Unicode, Inc. All rights reserved.
+Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Unicode data files and any associated documentation
+(the "Data Files") or Unicode software and any associated documentation
+(the "Software") to deal in the Data Files or Software
+without restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, and/or sell copies of
+the Data Files or Software, and to permit persons to whom the Data Files
+or Software are furnished to do so, provided that either
+(a) this copyright and permission notice appear with all copies
+of the Data Files or Software, or
+(b) this copyright and permission notice appear in associated
+Documentation.
+
+THE DATA FILES AND SOFTWARE ARE 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 OF THIRD PARTY RIGHTS.
+IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
+NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
+DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THE DATA FILES OR SOFTWARE.
+
+Except as contained in this notice, the name of a copyright holder
+shall not be used in advertising or otherwise to promote the sale,
+use or other dealings in these Data Files or Software without prior
+written authorization of the copyright holder.
+
+License notice for Zlib
+-----------------------
+
+https://github.com/madler/zlib
+http://zlib.net/zlib_license.html
+
+/* zlib.h -- interface of the 'zlib' general purpose compression library
+ version 1.2.11, January 15th, 2017
+
+ Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
+
+ This software is provided 'as-is', without any express or implied
+ warranty. In no event will the authors be held liable for any damages
+ arising from the use of this software.
+
+ Permission is granted to anyone to use this software for any purpose,
+ including commercial applications, and to alter it and redistribute it
+ freely, subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+ 3. This notice may not be removed or altered from any source distribution.
+
+ Jean-loup Gailly Mark Adler
+ jloup@gzip.org madler@alumni.caltech.edu
+
+*/
+
+License notice for Mono
+-------------------------------
+
+http://www.mono-project.com/docs/about-mono/
+
+Copyright (c) .NET Foundation Contributors
+
+MIT License
+
+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.
+
+License notice for International Organization for Standardization
+-----------------------------------------------------------------
+
+Portions (C) International Organization for Standardization 1986:
+ Permission to copy in any form is granted for use with
+ conforming SGML systems and applications as defined in
+ ISO 8879, provided this notice is included in all copies.
+
+License notice for Intel
+------------------------
+
+"Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this
+list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice,
+this list of conditions and the following disclaimer in the documentation
+and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+License notice for Xamarin and Novell
+-------------------------------------
+
+Copyright (c) 2015 Xamarin, Inc (http://www.xamarin.com)
+
+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.
+
+Copyright (c) 2011 Novell, Inc (http://www.novell.com)
+
+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.
+
+Third party notice for W3C
+--------------------------
+
+"W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE
+Status: This license takes effect 13 May, 2015.
+This work is being provided by the copyright holders under the following license.
+License
+By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions.
+Permission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications:
+The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.
+Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included.
+Notice of any changes or modifications, through a copyright statement on the new code or document such as "This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)."
+Disclaimers
+THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
+COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT.
+The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders."
+
+License notice for Bit Twiddling Hacks
+--------------------------------------
+
+Bit Twiddling Hacks
+
+By Sean Eron Anderson
+seander@cs.stanford.edu
+
+Individually, the code snippets here are in the public domain (unless otherwise
+noted) — feel free to use them however you please. The aggregate collection and
+descriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are
+distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and
+without even the implied warranty of merchantability or fitness for a particular
+purpose.
+
+License notice for Brotli
+--------------------------------------
+
+Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.
+
+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.
+
+compress_fragment.c:
+Copyright (c) 2011, Google Inc.
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+ * Redistributions of source code must retain the above copyright
+notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above
+copyright notice, this list of conditions and the following disclaimer
+in the documentation and/or other materials provided with the
+distribution.
+ * Neither the name of Google Inc. nor the names of its
+contributors may be used to endorse or promote products derived from
+this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+decode_fuzzer.c:
+Copyright (c) 2015 The Chromium Authors. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+ * Redistributions of source code must retain the above copyright
+notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above
+copyright notice, this list of conditions and the following disclaimer
+in the documentation and/or other materials provided with the
+distribution.
+ * Neither the name of Google Inc. nor the names of its
+contributors may be used to endorse or promote products derived from
+this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/lib/MonoAndroid10/_._ b/Horse Isle Server/packages/System.Memory.4.5.0/lib/MonoAndroid10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/lib/MonoTouch10/_._ b/Horse Isle Server/packages/System.Memory.4.5.0/lib/MonoTouch10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/lib/netcoreapp2.1/_._ b/Horse Isle Server/packages/System.Memory.4.5.0/lib/netcoreapp2.1/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/lib/netstandard1.1/System.Memory.dll b/Horse Isle Server/packages/System.Memory.4.5.0/lib/netstandard1.1/System.Memory.dll
new file mode 100644
index 0000000..c3c7bf3
Binary files /dev/null and b/Horse Isle Server/packages/System.Memory.4.5.0/lib/netstandard1.1/System.Memory.dll differ
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/lib/netstandard1.1/System.Memory.xml b/Horse Isle Server/packages/System.Memory.4.5.0/lib/netstandard1.1/System.Memory.xml
new file mode 100644
index 0000000..4d12fd7
--- /dev/null
+++ b/Horse Isle Server/packages/System.Memory.4.5.0/lib/netstandard1.1/System.Memory.xml
@@ -0,0 +1,355 @@
+
+
+ System.Memory
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/lib/netstandard2.0/System.Memory.dll b/Horse Isle Server/packages/System.Memory.4.5.0/lib/netstandard2.0/System.Memory.dll
new file mode 100644
index 0000000..4171ff3
Binary files /dev/null and b/Horse Isle Server/packages/System.Memory.4.5.0/lib/netstandard2.0/System.Memory.dll differ
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/lib/netstandard2.0/System.Memory.xml b/Horse Isle Server/packages/System.Memory.4.5.0/lib/netstandard2.0/System.Memory.xml
new file mode 100644
index 0000000..4d12fd7
--- /dev/null
+++ b/Horse Isle Server/packages/System.Memory.4.5.0/lib/netstandard2.0/System.Memory.xml
@@ -0,0 +1,355 @@
+
+
+ System.Memory
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/lib/uap10.0.16300/_._ b/Horse Isle Server/packages/System.Memory.4.5.0/lib/uap10.0.16300/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/lib/xamarinios10/_._ b/Horse Isle Server/packages/System.Memory.4.5.0/lib/xamarinios10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/lib/xamarinmac20/_._ b/Horse Isle Server/packages/System.Memory.4.5.0/lib/xamarinmac20/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/lib/xamarintvos10/_._ b/Horse Isle Server/packages/System.Memory.4.5.0/lib/xamarintvos10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/lib/xamarinwatchos10/_._ b/Horse Isle Server/packages/System.Memory.4.5.0/lib/xamarinwatchos10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/ref/MonoAndroid10/_._ b/Horse Isle Server/packages/System.Memory.4.5.0/ref/MonoAndroid10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/ref/MonoTouch10/_._ b/Horse Isle Server/packages/System.Memory.4.5.0/ref/MonoTouch10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/ref/netcoreapp2.1/_._ b/Horse Isle Server/packages/System.Memory.4.5.0/ref/netcoreapp2.1/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/ref/netstandard1.1/System.Memory.dll b/Horse Isle Server/packages/System.Memory.4.5.0/ref/netstandard1.1/System.Memory.dll
new file mode 100644
index 0000000..5205235
Binary files /dev/null and b/Horse Isle Server/packages/System.Memory.4.5.0/ref/netstandard1.1/System.Memory.dll differ
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/ref/netstandard1.1/System.Memory.xml b/Horse Isle Server/packages/System.Memory.4.5.0/ref/netstandard1.1/System.Memory.xml
new file mode 100644
index 0000000..4d12fd7
--- /dev/null
+++ b/Horse Isle Server/packages/System.Memory.4.5.0/ref/netstandard1.1/System.Memory.xml
@@ -0,0 +1,355 @@
+
+
+ System.Memory
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/ref/netstandard2.0/System.Memory.dll b/Horse Isle Server/packages/System.Memory.4.5.0/ref/netstandard2.0/System.Memory.dll
new file mode 100644
index 0000000..ca69970
Binary files /dev/null and b/Horse Isle Server/packages/System.Memory.4.5.0/ref/netstandard2.0/System.Memory.dll differ
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/ref/netstandard2.0/System.Memory.xml b/Horse Isle Server/packages/System.Memory.4.5.0/ref/netstandard2.0/System.Memory.xml
new file mode 100644
index 0000000..4d12fd7
--- /dev/null
+++ b/Horse Isle Server/packages/System.Memory.4.5.0/ref/netstandard2.0/System.Memory.xml
@@ -0,0 +1,355 @@
+
+
+ System.Memory
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/ref/uap10.0.16300/_._ b/Horse Isle Server/packages/System.Memory.4.5.0/ref/uap10.0.16300/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/ref/xamarinios10/_._ b/Horse Isle Server/packages/System.Memory.4.5.0/ref/xamarinios10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/ref/xamarinmac20/_._ b/Horse Isle Server/packages/System.Memory.4.5.0/ref/xamarinmac20/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/ref/xamarintvos10/_._ b/Horse Isle Server/packages/System.Memory.4.5.0/ref/xamarintvos10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/ref/xamarinwatchos10/_._ b/Horse Isle Server/packages/System.Memory.4.5.0/ref/xamarinwatchos10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/useSharedDesignerContext.txt b/Horse Isle Server/packages/System.Memory.4.5.0/useSharedDesignerContext.txt
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Memory.4.5.0/version.txt b/Horse Isle Server/packages/System.Memory.4.5.0/version.txt
new file mode 100644
index 0000000..47004a0
--- /dev/null
+++ b/Horse Isle Server/packages/System.Memory.4.5.0/version.txt
@@ -0,0 +1 @@
+30ab651fcb4354552bd4891619a0bdd81e0ebdbf
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/.signature.p7s b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/.signature.p7s
new file mode 100644
index 0000000..804a5d4
Binary files /dev/null and b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/.signature.p7s differ
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/LICENSE.TXT b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/LICENSE.TXT
new file mode 100644
index 0000000..984713a
--- /dev/null
+++ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/LICENSE.TXT
@@ -0,0 +1,23 @@
+The MIT License (MIT)
+
+Copyright (c) .NET Foundation and Contributors
+
+All rights reserved.
+
+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.
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/System.Numerics.Vectors.4.4.0.nupkg b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/System.Numerics.Vectors.4.4.0.nupkg
new file mode 100644
index 0000000..d1faf30
Binary files /dev/null and b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/System.Numerics.Vectors.4.4.0.nupkg differ
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/THIRD-PARTY-NOTICES.TXT b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/THIRD-PARTY-NOTICES.TXT
new file mode 100644
index 0000000..06055ff
--- /dev/null
+++ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/THIRD-PARTY-NOTICES.TXT
@@ -0,0 +1,226 @@
+.NET Core uses third-party libraries or other resources that may be
+distributed under licenses different than the .NET Core software.
+
+In the event that we accidentally failed to list a required notice, please
+bring it to our attention. Post an issue or email us:
+
+ dotnet@microsoft.com
+
+The attached notices are provided for information only.
+
+License notice for Slicing-by-8
+-------------------------------
+
+http://sourceforge.net/projects/slicing-by-8/
+
+Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved
+
+
+This software program is licensed subject to the BSD License, available at
+http://www.opensource.org/licenses/bsd-license.html.
+
+
+License notice for Unicode data
+-------------------------------
+
+http://www.unicode.org/copyright.html#License
+
+Copyright © 1991-2017 Unicode, Inc. All rights reserved.
+Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Unicode data files and any associated documentation
+(the "Data Files") or Unicode software and any associated documentation
+(the "Software") to deal in the Data Files or Software
+without restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, and/or sell copies of
+the Data Files or Software, and to permit persons to whom the Data Files
+or Software are furnished to do so, provided that either
+(a) this copyright and permission notice appear with all copies
+of the Data Files or Software, or
+(b) this copyright and permission notice appear in associated
+Documentation.
+
+THE DATA FILES AND SOFTWARE ARE 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 OF THIRD PARTY RIGHTS.
+IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
+NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
+DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THE DATA FILES OR SOFTWARE.
+
+Except as contained in this notice, the name of a copyright holder
+shall not be used in advertising or otherwise to promote the sale,
+use or other dealings in these Data Files or Software without prior
+written authorization of the copyright holder.
+
+License notice for Zlib
+-----------------------
+
+https://github.com/madler/zlib
+http://zlib.net/zlib_license.html
+
+/* zlib.h -- interface of the 'zlib' general purpose compression library
+ version 1.2.11, January 15th, 2017
+
+ Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
+
+ This software is provided 'as-is', without any express or implied
+ warranty. In no event will the authors be held liable for any damages
+ arising from the use of this software.
+
+ Permission is granted to anyone to use this software for any purpose,
+ including commercial applications, and to alter it and redistribute it
+ freely, subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+ 3. This notice may not be removed or altered from any source distribution.
+
+ Jean-loup Gailly Mark Adler
+ jloup@gzip.org madler@alumni.caltech.edu
+
+*/
+
+License notice for Mono
+-------------------------------
+
+http://www.mono-project.com/docs/about-mono/
+
+Copyright (c) .NET Foundation Contributors
+
+MIT License
+
+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.
+
+License notice for International Organization for Standardization
+-----------------------------------------------------------------
+
+Portions (C) International Organization for Standardization 1986:
+ Permission to copy in any form is granted for use with
+ conforming SGML systems and applications as defined in
+ ISO 8879, provided this notice is included in all copies.
+
+License notice for Intel
+------------------------
+
+"Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this
+list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice,
+this list of conditions and the following disclaimer in the documentation
+and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+License notice for Xamarin and Novell
+-------------------------------------
+
+Copyright (c) 2015 Xamarin, Inc (http://www.xamarin.com)
+
+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.
+
+Copyright (c) 2011 Novell, Inc (http://www.novell.com)
+
+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.
+
+Third party notice for W3C
+--------------------------
+
+"W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE
+Status: This license takes effect 13 May, 2015.
+This work is being provided by the copyright holders under the following license.
+License
+By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions.
+Permission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications:
+The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.
+Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included.
+Notice of any changes or modifications, through a copyright statement on the new code or document such as "This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)."
+Disclaimers
+THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
+COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT.
+The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders."
+
+License notice for Bit Twiddling Hacks
+--------------------------------------
+
+Bit Twiddling Hacks
+
+By Sean Eron Anderson
+seander@cs.stanford.edu
+
+Individually, the code snippets here are in the public domain (unless otherwise
+noted) — feel free to use them however you please. The aggregate collection and
+descriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are
+distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and
+without even the implied warranty of merchantability or fitness for a particular
+purpose.
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/MonoAndroid10/_._ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/MonoAndroid10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/MonoTouch10/_._ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/MonoTouch10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/net46/System.Numerics.Vectors.dll b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/net46/System.Numerics.Vectors.dll
new file mode 100644
index 0000000..ce46d5b
Binary files /dev/null and b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/net46/System.Numerics.Vectors.dll differ
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/net46/System.Numerics.Vectors.xml b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/net46/System.Numerics.Vectors.xml
new file mode 100644
index 0000000..5129793
--- /dev/null
+++ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/net46/System.Numerics.Vectors.xml
@@ -0,0 +1,2597 @@
+
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/netcoreapp2.0/_._ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/netcoreapp2.0/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/netstandard1.0/System.Numerics.Vectors.dll b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/netstandard1.0/System.Numerics.Vectors.dll
new file mode 100644
index 0000000..46308fd
Binary files /dev/null and b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/netstandard1.0/System.Numerics.Vectors.dll differ
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/netstandard1.0/System.Numerics.Vectors.xml b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/netstandard1.0/System.Numerics.Vectors.xml
new file mode 100644
index 0000000..5129793
--- /dev/null
+++ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/netstandard1.0/System.Numerics.Vectors.xml
@@ -0,0 +1,2597 @@
+
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/netstandard2.0/System.Numerics.Vectors.dll b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/netstandard2.0/System.Numerics.Vectors.dll
new file mode 100644
index 0000000..a808165
Binary files /dev/null and b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/netstandard2.0/System.Numerics.Vectors.dll differ
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/netstandard2.0/System.Numerics.Vectors.xml b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/netstandard2.0/System.Numerics.Vectors.xml
new file mode 100644
index 0000000..5129793
--- /dev/null
+++ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/netstandard2.0/System.Numerics.Vectors.xml
@@ -0,0 +1,2597 @@
+
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll
new file mode 100644
index 0000000..46308fd
Binary files /dev/null and b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll differ
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml
new file mode 100644
index 0000000..5129793
--- /dev/null
+++ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml
@@ -0,0 +1,2597 @@
+
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/xamarinios10/_._ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/xamarinios10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/xamarinmac20/_._ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/xamarinmac20/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/xamarintvos10/_._ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/xamarintvos10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/xamarinwatchos10/_._ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/lib/xamarinwatchos10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/MonoAndroid10/_._ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/MonoAndroid10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/MonoTouch10/_._ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/MonoTouch10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/net46/System.Numerics.Vectors.dll b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/net46/System.Numerics.Vectors.dll
new file mode 100644
index 0000000..e91f855
Binary files /dev/null and b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/net46/System.Numerics.Vectors.dll differ
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/net46/System.Numerics.Vectors.xml b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/net46/System.Numerics.Vectors.xml
new file mode 100644
index 0000000..5129793
--- /dev/null
+++ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/net46/System.Numerics.Vectors.xml
@@ -0,0 +1,2597 @@
+
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/netcoreapp2.0/_._ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/netcoreapp2.0/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/netstandard1.0/System.Numerics.Vectors.dll b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/netstandard1.0/System.Numerics.Vectors.dll
new file mode 100644
index 0000000..d174da0
Binary files /dev/null and b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/netstandard1.0/System.Numerics.Vectors.dll differ
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/netstandard1.0/System.Numerics.Vectors.xml b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/netstandard1.0/System.Numerics.Vectors.xml
new file mode 100644
index 0000000..5129793
--- /dev/null
+++ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/netstandard1.0/System.Numerics.Vectors.xml
@@ -0,0 +1,2597 @@
+
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/netstandard2.0/System.Numerics.Vectors.dll b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/netstandard2.0/System.Numerics.Vectors.dll
new file mode 100644
index 0000000..ba0aa0c
Binary files /dev/null and b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/netstandard2.0/System.Numerics.Vectors.dll differ
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/netstandard2.0/System.Numerics.Vectors.xml b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/netstandard2.0/System.Numerics.Vectors.xml
new file mode 100644
index 0000000..5129793
--- /dev/null
+++ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/netstandard2.0/System.Numerics.Vectors.xml
@@ -0,0 +1,2597 @@
+
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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 <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.
+
+
+ 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/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/xamarinios10/_._ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/xamarinios10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/xamarinmac20/_._ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/xamarinmac20/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/xamarintvos10/_._ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/xamarintvos10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/xamarinwatchos10/_._ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/ref/xamarinwatchos10/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/useSharedDesignerContext.txt b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/useSharedDesignerContext.txt
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/version.txt b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/version.txt
new file mode 100644
index 0000000..1ca86a0
--- /dev/null
+++ b/Horse Isle Server/packages/System.Numerics.Vectors.4.4.0/version.txt
@@ -0,0 +1 @@
+8321c729934c0f8be754953439b88e6e1c120c24
diff --git a/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/.signature.p7s b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/.signature.p7s
new file mode 100644
index 0000000..2a58c71
Binary files /dev/null and b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/.signature.p7s differ
diff --git a/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/LICENSE.TXT b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/LICENSE.TXT
new file mode 100644
index 0000000..984713a
--- /dev/null
+++ b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/LICENSE.TXT
@@ -0,0 +1,23 @@
+The MIT License (MIT)
+
+Copyright (c) .NET Foundation and Contributors
+
+All rights reserved.
+
+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.
diff --git a/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/System.Runtime.CompilerServices.Unsafe.4.5.0.nupkg b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/System.Runtime.CompilerServices.Unsafe.4.5.0.nupkg
new file mode 100644
index 0000000..304cf03
Binary files /dev/null and b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/System.Runtime.CompilerServices.Unsafe.4.5.0.nupkg differ
diff --git a/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/THIRD-PARTY-NOTICES.TXT b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/THIRD-PARTY-NOTICES.TXT
new file mode 100644
index 0000000..db542ca
--- /dev/null
+++ b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/THIRD-PARTY-NOTICES.TXT
@@ -0,0 +1,309 @@
+.NET Core uses third-party libraries or other resources that may be
+distributed under licenses different than the .NET Core software.
+
+In the event that we accidentally failed to list a required notice, please
+bring it to our attention. Post an issue or email us:
+
+ dotnet@microsoft.com
+
+The attached notices are provided for information only.
+
+License notice for Slicing-by-8
+-------------------------------
+
+http://sourceforge.net/projects/slicing-by-8/
+
+Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved
+
+
+This software program is licensed subject to the BSD License, available at
+http://www.opensource.org/licenses/bsd-license.html.
+
+
+License notice for Unicode data
+-------------------------------
+
+http://www.unicode.org/copyright.html#License
+
+Copyright © 1991-2017 Unicode, Inc. All rights reserved.
+Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Unicode data files and any associated documentation
+(the "Data Files") or Unicode software and any associated documentation
+(the "Software") to deal in the Data Files or Software
+without restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, and/or sell copies of
+the Data Files or Software, and to permit persons to whom the Data Files
+or Software are furnished to do so, provided that either
+(a) this copyright and permission notice appear with all copies
+of the Data Files or Software, or
+(b) this copyright and permission notice appear in associated
+Documentation.
+
+THE DATA FILES AND SOFTWARE ARE 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 OF THIRD PARTY RIGHTS.
+IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
+NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
+DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THE DATA FILES OR SOFTWARE.
+
+Except as contained in this notice, the name of a copyright holder
+shall not be used in advertising or otherwise to promote the sale,
+use or other dealings in these Data Files or Software without prior
+written authorization of the copyright holder.
+
+License notice for Zlib
+-----------------------
+
+https://github.com/madler/zlib
+http://zlib.net/zlib_license.html
+
+/* zlib.h -- interface of the 'zlib' general purpose compression library
+ version 1.2.11, January 15th, 2017
+
+ Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
+
+ This software is provided 'as-is', without any express or implied
+ warranty. In no event will the authors be held liable for any damages
+ arising from the use of this software.
+
+ Permission is granted to anyone to use this software for any purpose,
+ including commercial applications, and to alter it and redistribute it
+ freely, subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+ 3. This notice may not be removed or altered from any source distribution.
+
+ Jean-loup Gailly Mark Adler
+ jloup@gzip.org madler@alumni.caltech.edu
+
+*/
+
+License notice for Mono
+-------------------------------
+
+http://www.mono-project.com/docs/about-mono/
+
+Copyright (c) .NET Foundation Contributors
+
+MIT License
+
+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.
+
+License notice for International Organization for Standardization
+-----------------------------------------------------------------
+
+Portions (C) International Organization for Standardization 1986:
+ Permission to copy in any form is granted for use with
+ conforming SGML systems and applications as defined in
+ ISO 8879, provided this notice is included in all copies.
+
+License notice for Intel
+------------------------
+
+"Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this
+list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice,
+this list of conditions and the following disclaimer in the documentation
+and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+License notice for Xamarin and Novell
+-------------------------------------
+
+Copyright (c) 2015 Xamarin, Inc (http://www.xamarin.com)
+
+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.
+
+Copyright (c) 2011 Novell, Inc (http://www.novell.com)
+
+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.
+
+Third party notice for W3C
+--------------------------
+
+"W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE
+Status: This license takes effect 13 May, 2015.
+This work is being provided by the copyright holders under the following license.
+License
+By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions.
+Permission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications:
+The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.
+Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included.
+Notice of any changes or modifications, through a copyright statement on the new code or document such as "This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)."
+Disclaimers
+THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
+COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT.
+The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders."
+
+License notice for Bit Twiddling Hacks
+--------------------------------------
+
+Bit Twiddling Hacks
+
+By Sean Eron Anderson
+seander@cs.stanford.edu
+
+Individually, the code snippets here are in the public domain (unless otherwise
+noted) — feel free to use them however you please. The aggregate collection and
+descriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are
+distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and
+without even the implied warranty of merchantability or fitness for a particular
+purpose.
+
+License notice for Brotli
+--------------------------------------
+
+Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.
+
+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.
+
+compress_fragment.c:
+Copyright (c) 2011, Google Inc.
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+ * Redistributions of source code must retain the above copyright
+notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above
+copyright notice, this list of conditions and the following disclaimer
+in the documentation and/or other materials provided with the
+distribution.
+ * Neither the name of Google Inc. nor the names of its
+contributors may be used to endorse or promote products derived from
+this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+decode_fuzzer.c:
+Copyright (c) 2015 The Chromium Authors. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+ * Redistributions of source code must retain the above copyright
+notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above
+copyright notice, this list of conditions and the following disclaimer
+in the documentation and/or other materials provided with the
+distribution.
+ * Neither the name of Google Inc. nor the names of its
+contributors may be used to endorse or promote products derived from
+this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+
diff --git a/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..55d867e
Binary files /dev/null and b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml
new file mode 100644
index 0000000..6a7cfcf
--- /dev/null
+++ b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml
@@ -0,0 +1,200 @@
+
+
+ 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 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.
+ true if left and right point to the same location; otherwise, false.
+
+
+ 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 TTo.
+ The reference to reinterpret.
+ The type of reference to reinterpret..
+ The desired type of the reference.
+ A reference to a value of type TTo.
+
+
+ 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 location as a reference to a value of type T.
+ The location of the value to reference.
+ The type of the interpreted location.
+ A reference to a value of type T.
+
+
+ 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. target - origin.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A reference to the value to copy.
+ The type of value to copy.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A pointer 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.
+
+
+ Reads a value of type T from the given location.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T 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 T read from the given location.
+
+
+ Reads a value of type T 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 T 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 T.
+
+
+ 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 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 a byte offset from the given reference.
+ The reference to subtract the offset from.
+
+ The type of reference.
+ A new reference that reflects the subraction of byte offset from pointer.
+
+
+ Writes a value of type T to the given location.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T 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 T 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/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..63403d7
Binary files /dev/null and b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml
new file mode 100644
index 0000000..6a7cfcf
--- /dev/null
+++ b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml
@@ -0,0 +1,200 @@
+
+
+ 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 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.
+ true if left and right point to the same location; otherwise, false.
+
+
+ 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 TTo.
+ The reference to reinterpret.
+ The type of reference to reinterpret..
+ The desired type of the reference.
+ A reference to a value of type TTo.
+
+
+ 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 location as a reference to a value of type T.
+ The location of the value to reference.
+ The type of the interpreted location.
+ A reference to a value of type T.
+
+
+ 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. target - origin.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A reference to the value to copy.
+ The type of value to copy.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A pointer 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.
+
+
+ Reads a value of type T from the given location.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T 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 T read from the given location.
+
+
+ Reads a value of type T 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 T 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 T.
+
+
+ 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 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 a byte offset from the given reference.
+ The reference to subtract the offset from.
+
+ The type of reference.
+ A new reference that reflects the subraction of byte offset from pointer.
+
+
+ Writes a value of type T to the given location.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T 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 T 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/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..0b45903
Binary files /dev/null and b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml
new file mode 100644
index 0000000..6a7cfcf
--- /dev/null
+++ b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml
@@ -0,0 +1,200 @@
+
+
+ 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 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.
+ true if left and right point to the same location; otherwise, false.
+
+
+ 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 TTo.
+ The reference to reinterpret.
+ The type of reference to reinterpret..
+ The desired type of the reference.
+ A reference to a value of type TTo.
+
+
+ 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 location as a reference to a value of type T.
+ The location of the value to reference.
+ The type of the interpreted location.
+ A reference to a value of type T.
+
+
+ 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. target - origin.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A reference to the value to copy.
+ The type of value to copy.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A pointer 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.
+
+
+ Reads a value of type T from the given location.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T 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 T read from the given location.
+
+
+ Reads a value of type T 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 T 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 T.
+
+
+ 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 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 a byte offset from the given reference.
+ The reference to subtract the offset from.
+
+ The type of reference.
+ A new reference that reflects the subraction of byte offset from pointer.
+
+
+ Writes a value of type T to the given location.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T 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 T 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/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/uap10.0.16300/_._ b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/lib/uap10.0.16300/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..8761451
Binary files /dev/null and b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml
new file mode 100644
index 0000000..6a7cfcf
--- /dev/null
+++ b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml
@@ -0,0 +1,200 @@
+
+
+ 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 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.
+ true if left and right point to the same location; otherwise, false.
+
+
+ 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 TTo.
+ The reference to reinterpret.
+ The type of reference to reinterpret..
+ The desired type of the reference.
+ A reference to a value of type TTo.
+
+
+ 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 location as a reference to a value of type T.
+ The location of the value to reference.
+ The type of the interpreted location.
+ A reference to a value of type T.
+
+
+ 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. target - origin.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A reference to the value to copy.
+ The type of value to copy.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A pointer 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.
+
+
+ Reads a value of type T from the given location.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T 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 T read from the given location.
+
+
+ Reads a value of type T 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 T 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 T.
+
+
+ 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 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 a byte offset from the given reference.
+ The reference to subtract the offset from.
+
+ The type of reference.
+ A new reference that reflects the subraction of byte offset from pointer.
+
+
+ Writes a value of type T to the given location.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T 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 T 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/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..e7637d8
Binary files /dev/null and b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml
new file mode 100644
index 0000000..6a7cfcf
--- /dev/null
+++ b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml
@@ -0,0 +1,200 @@
+
+
+ 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 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.
+ true if left and right point to the same location; otherwise, false.
+
+
+ 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 TTo.
+ The reference to reinterpret.
+ The type of reference to reinterpret..
+ The desired type of the reference.
+ A reference to a value of type TTo.
+
+
+ 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 location as a reference to a value of type T.
+ The location of the value to reference.
+ The type of the interpreted location.
+ A reference to a value of type T.
+
+
+ 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. target - origin.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A reference to the value to copy.
+ The type of value to copy.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A pointer 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.
+
+
+ Reads a value of type T from the given location.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T 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 T read from the given location.
+
+
+ Reads a value of type T 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 T 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 T.
+
+
+ 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 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 a byte offset from the given reference.
+ The reference to subtract the offset from.
+
+ The type of reference.
+ A new reference that reflects the subraction of byte offset from pointer.
+
+
+ Writes a value of type T to the given location.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T 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 T 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/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/ref/uap10.0.16300/_._ b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/ref/uap10.0.16300/_._
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/useSharedDesignerContext.txt b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/useSharedDesignerContext.txt
new file mode 100644
index 0000000..e69de29
diff --git a/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/version.txt b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/version.txt
new file mode 100644
index 0000000..47004a0
--- /dev/null
+++ b/Horse Isle Server/packages/System.Runtime.CompilerServices.Unsafe.4.5.0/version.txt
@@ -0,0 +1 @@
+30ab651fcb4354552bd4891619a0bdd81e0ebdbf
diff --git a/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/.signature.p7s b/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/.signature.p7s
new file mode 100644
index 0000000..3c81b34
Binary files /dev/null and b/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/.signature.p7s differ
diff --git a/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/System.Threading.Tasks.Extensions.4.3.0.nupkg b/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/System.Threading.Tasks.Extensions.4.3.0.nupkg
new file mode 100644
index 0000000..938f85b
Binary files /dev/null and b/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/System.Threading.Tasks.Extensions.4.3.0.nupkg differ
diff --git a/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/ThirdPartyNotices.txt b/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/ThirdPartyNotices.txt
new file mode 100644
index 0000000..55cfb20
--- /dev/null
+++ b/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/ThirdPartyNotices.txt
@@ -0,0 +1,31 @@
+This Microsoft .NET Library may incorporate components from the projects listed
+below. Microsoft licenses these components under the Microsoft .NET Library
+software license terms. The original copyright notices and the licenses under
+which Microsoft received such components are set forth below for informational
+purposes only. Microsoft reserves all rights not expressly granted herein,
+whether by implication, estoppel or otherwise.
+
+1. .NET Core (https://github.com/dotnet/core/)
+
+.NET Core
+Copyright (c) .NET Foundation and Contributors
+
+The MIT License (MIT)
+
+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.
\ No newline at end of file
diff --git a/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/dotnet_library_license.txt b/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/dotnet_library_license.txt
new file mode 100644
index 0000000..92b6c44
--- /dev/null
+++ b/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/dotnet_library_license.txt
@@ -0,0 +1,128 @@
+
+MICROSOFT SOFTWARE LICENSE TERMS
+
+
+MICROSOFT .NET LIBRARY
+
+These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft
+
+· updates,
+
+· supplements,
+
+· Internet-based services, and
+
+· support services
+
+for this software, unless other terms accompany those items. If so, those terms apply.
+
+BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.
+
+
+IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW.
+
+1. INSTALLATION AND USE RIGHTS.
+
+a. Installation and Use. You may install and use any number of copies of the software to design, develop and test your programs.
+
+b. Third Party Programs. The software may include third party programs that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party program are included for your information only.
+
+2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.
+
+a. DISTRIBUTABLE CODE. The software is comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in programs you develop if you comply with the terms below.
+
+i. Right to Use and Distribute.
+
+· You may copy and distribute the object code form of the software.
+
+· Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.
+
+ii. Distribution Requirements. For any Distributable Code you distribute, you must
+
+· add significant primary functionality to it in your programs;
+
+· require distributors and external end users to agree to terms that protect it at least as much as this agreement;
+
+· display your valid copyright notice on your programs; and
+
+· indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your programs.
+
+iii. Distribution Restrictions. You may not
+
+· alter any copyright, trademark or patent notice in the Distributable Code;
+
+· use Microsoft’s trademarks in your programs’ names or in a way that suggests your programs come from or are endorsed by Microsoft;
+
+· include Distributable Code in malicious, deceptive or unlawful programs; or
+
+· modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that
+
+· the code be disclosed or distributed in source code form; or
+
+· others have the right to modify it.
+
+3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not
+
+· work around any technical limitations in the software;
+
+· reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;
+
+· publish the software for others to copy;
+
+· rent, lease or lend the software;
+
+· transfer the software or this agreement to any third party; or
+
+· use the software for commercial software hosting services.
+
+4. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.
+
+5. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.
+
+6. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.
+
+7. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it.
+
+8. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.
+
+9. APPLICABLE LAW.
+
+a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.
+
+b. Outside the United States. If you acquired the software in any other country, the laws of that country apply.
+
+10. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.
+
+11. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
+
+FOR AUSTRALIA – YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS.
+
+12. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.
+
+This limitation applies to
+
+· anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and
+
+· claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.
+
+It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.
+
+Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.
+
+Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français.
+
+EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon sont exclues.
+
+LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices.
+
+Cette limitation concerne :
+
+· tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et
+
+· les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur.
+
+Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard.
+
+EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas.
+
+
diff --git a/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.dll b/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.dll
new file mode 100644
index 0000000..a1234ce
Binary files /dev/null and b/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.dll differ
diff --git a/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.xml b/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.xml
new file mode 100644
index 0000000..730b56a
--- /dev/null
+++ b/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.xml
@@ -0,0 +1,253 @@
+
+
+
+ System.Threading.Tasks.Extensions
+
+
+
+
+ Indicates the type of the async method builder that should be used by a language compiler to
+ build the attributed type when used as the return type of an async method.
+
+
+
+ Initializes the .
+ The of the associated builder.
+
+
+ Gets the of the associated builder.
+
+
+ Represents a builder for asynchronous methods that returns a .
+ The type of the result.
+
+
+ The to which most operations are delegated.
+
+
+ The result for this builder, if it's completed before any awaits occur.
+
+
+ true if contains the synchronous result for the async method; otherwise, false.
+
+
+ true if the builder should be used for setting/getting the result; otherwise, false.
+
+
+ Creates an instance of the struct.
+ The initialized instance.
+
+
+ Begins running the builder with the associated state machine.
+ The type of the state machine.
+ The state machine instance, passed by reference.
+
+
+ Associates the builder with the specified state machine.
+ The state machine instance to associate with the builder.
+
+
+ Marks the task as successfully completed.
+ The result to use to complete the task.
+
+
+ Marks the task as failed and binds the specified exception to the task.
+ The exception to bind to the task.
+
+
+ Gets the task for this builder.
+
+
+ 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.
+
+
+ Provides an awaitable type that enables configured awaits on a .
+ The type of the result produced.
+
+
+ The wrapped .
+
+
+ true to attempt to marshal the continuation back to the original context captured; otherwise, false.
+
+
+ Initializes the awaitable.
+ The wrapped .
+
+ true to attempt to marshal the continuation back to the original synchronization context captured; otherwise, false.
+
+
+
+ Returns an awaiter for this instance.
+
+
+ Provides an awaiter for a .
+
+
+ The value being awaited.
+
+
+ The value to pass to ConfigureAwait.
+
+
+ Initializes the awaiter.
+ The value to be awaited.
+ The value to pass to ConfigureAwait.
+
+
+ Gets whether the has completed.
+
+
+ Gets the result of the ValueTask.
+
+
+ Schedules the continuation action for the .
+
+
+ Schedules the continuation action for the .
+
+
+ Provides an awaiter for a .
+
+
+ The value being awaited.
+
+
+ Initializes the awaiter.
+ The value to be awaited.
+
+
+ Gets whether the has completed.
+
+
+ Gets the result of the ValueTask.
+
+
+ Schedules the continuation action for this ValueTask.
+
+
+ Schedules the continuation action for this ValueTask.
+
+
+
+ Provides a value type that wraps a and a ,
+ only one of which is used.
+
+ The type of the result.
+
+
+ Methods may return an instance of this value type when it's likely that the result of their
+ operations will be available synchronously and when the method is expected to be invoked so
+ frequently that the cost of allocating a new for each call will
+ be prohibitive.
+
+
+ There are tradeoffs to using a instead of a .
+ For example, while a can help avoid an allocation in the case where the
+ successful result is available synchronously, it also contains two fields whereas a
+ as a reference type is a single field. This means that a method call ends up returning two fields worth of
+ data instead of one, which is more data to copy. It also means that if a method that returns one of these
+ is awaited within an async method, the state machine for that async method will be larger due to needing
+ to store the struct that's two fields instead of a single reference.
+
+
+ Further, for uses other than consuming the result of an asynchronous operation via await,
+ can lead to a more convoluted programming model, which can in turn actually
+ lead to more allocations. For example, consider a method that could return either a
+ with a cached task as a common result or a . If the consumer of the result
+ wants to use it as a , such as to use with in methods like Task.WhenAll and Task.WhenAny,
+ the would first need to be converted into a using
+ , which leads to an allocation that would have been avoided if a cached
+ had been used in the first place.
+
+
+ As such, the default choice for any asynchronous method should be to return a or
+ . Only if performance analysis proves it worthwhile should a
+ be used instead of . There is no non-generic version of
+ as the Task.CompletedTask property may be used to hand back a successfully completed singleton in the case where
+ a -returning method completes synchronously and successfully.
+
+
+
+
+ The task to be used if the operation completed asynchronously or if it completed synchronously but non-successfully.
+
+
+ The result to be used if the operation completed successfully synchronously.
+
+
+ Initialize the with the result of the successful operation.
+ The result.
+
+
+
+ Initialize the with a that represents the operation.
+
+ The task.
+
+
+ Returns the hash code for this instance.
+
+
+ Returns a value indicating whether this value is equal to a specified .
+
+
+ Returns a value indicating whether this value is equal to a specified value.
+
+
+ Returns a value indicating whether two values are equal.
+
+
+ Returns a value indicating whether two values are not equal.
+
+
+
+ Gets a object to represent this ValueTask. It will
+ either return the wrapped task object if one exists, or it'll manufacture a new
+ task object to represent the result.
+
+
+
+ Gets whether the represents a completed operation.
+
+
+ Gets whether the represents a successfully completed operation.
+
+
+ Gets whether the represents a failed operation.
+
+
+ Gets whether the represents a canceled operation.
+
+
+ Gets the result.
+
+
+ Gets an awaiter for this value.
+
+
+ Configures an awaiter for this value.
+
+ true to attempt to marshal the continuation back to the captured context; otherwise, false.
+
+
+
+ Gets a string-representation of this .
+
+
+ Creates a method builder for use with an async method.
+ The created builder.
+
+
+
diff --git a/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll b/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll
new file mode 100644
index 0000000..a1234ce
Binary files /dev/null and b/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll differ
diff --git a/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml b/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml
new file mode 100644
index 0000000..730b56a
--- /dev/null
+++ b/Horse Isle Server/packages/System.Threading.Tasks.Extensions.4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml
@@ -0,0 +1,253 @@
+
+
+
+ System.Threading.Tasks.Extensions
+
+
+
+
+ Indicates the type of the async method builder that should be used by a language compiler to
+ build the attributed type when used as the return type of an async method.
+
+
+
+ Initializes the .
+ The of the associated builder.
+
+
+ Gets the of the associated builder.
+
+
+ Represents a builder for asynchronous methods that returns a .
+ The type of the result.
+
+
+ The to which most operations are delegated.
+
+
+ The result for this builder, if it's completed before any awaits occur.
+
+
+ true if contains the synchronous result for the async method; otherwise, false.
+
+
+ true if the builder should be used for setting/getting the result; otherwise, false.
+
+
+ Creates an instance of the struct.
+ The initialized instance.
+
+
+ Begins running the builder with the associated state machine.
+ The type of the state machine.
+ The state machine instance, passed by reference.
+
+
+ Associates the builder with the specified state machine.
+ The state machine instance to associate with the builder.
+
+
+ Marks the task as successfully completed.
+ The result to use to complete the task.
+
+
+ Marks the task as failed and binds the specified exception to the task.
+ The exception to bind to the task.
+
+
+ Gets the task for this builder.
+
+
+ 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.
+
+
+ Provides an awaitable type that enables configured awaits on a .
+ The type of the result produced.
+
+
+ The wrapped .
+
+
+ true to attempt to marshal the continuation back to the original context captured; otherwise, false.
+
+
+ Initializes the awaitable.
+ The wrapped .
+
+ true to attempt to marshal the continuation back to the original synchronization context captured; otherwise, false.
+
+
+
+ Returns an awaiter for this instance.
+
+
+ Provides an awaiter for a .
+
+
+ The value being awaited.
+
+
+ The value to pass to ConfigureAwait.
+
+
+ Initializes the awaiter.
+ The value to be awaited.
+ The value to pass to ConfigureAwait.
+
+
+ Gets whether the has completed.
+
+
+ Gets the result of the ValueTask.
+
+
+ Schedules the continuation action for the .
+
+
+ Schedules the continuation action for the .
+
+
+ Provides an awaiter for a .
+
+
+ The value being awaited.
+
+
+ Initializes the awaiter.
+ The value to be awaited.
+
+
+ Gets whether the has completed.
+
+
+ Gets the result of the ValueTask.
+
+
+ Schedules the continuation action for this ValueTask.
+
+
+ Schedules the continuation action for this ValueTask.
+
+
+
+ Provides a value type that wraps a and a ,
+ only one of which is used.
+
+ The type of the result.
+
+
+ Methods may return an instance of this value type when it's likely that the result of their
+ operations will be available synchronously and when the method is expected to be invoked so
+ frequently that the cost of allocating a new for each call will
+ be prohibitive.
+
+
+ There are tradeoffs to using a instead of a .
+ For example, while a can help avoid an allocation in the case where the
+ successful result is available synchronously, it also contains two fields whereas a
+ as a reference type is a single field. This means that a method call ends up returning two fields worth of
+ data instead of one, which is more data to copy. It also means that if a method that returns one of these
+ is awaited within an async method, the state machine for that async method will be larger due to needing
+ to store the struct that's two fields instead of a single reference.
+
+
+ Further, for uses other than consuming the result of an asynchronous operation via await,
+ can lead to a more convoluted programming model, which can in turn actually
+ lead to more allocations. For example, consider a method that could return either a
+ with a cached task as a common result or a . If the consumer of the result
+ wants to use it as a , such as to use with in methods like Task.WhenAll and Task.WhenAny,
+ the would first need to be converted into a using
+ , which leads to an allocation that would have been avoided if a cached
+ had been used in the first place.
+
+
+ As such, the default choice for any asynchronous method should be to return a or
+ . Only if performance analysis proves it worthwhile should a
+ be used instead of . There is no non-generic version of
+ as the Task.CompletedTask property may be used to hand back a successfully completed singleton in the case where
+ a -returning method completes synchronously and successfully.
+
+
+
+
+ The task to be used if the operation completed asynchronously or if it completed synchronously but non-successfully.
+
+
+ The result to be used if the operation completed successfully synchronously.
+
+
+ Initialize the with the result of the successful operation.
+ The result.
+
+
+
+ Initialize the with a that represents the operation.
+
+ The task.
+
+
+ Returns the hash code for this instance.
+
+
+ Returns a value indicating whether this value is equal to a specified .
+
+
+ Returns a value indicating whether this value is equal to a specified value.
+
+
+ Returns a value indicating whether two values are equal.
+
+
+ Returns a value indicating whether two values are not equal.
+
+
+
+ Gets a object to represent this ValueTask. It will
+ either return the wrapped task object if one exists, or it'll manufacture a new
+ task object to represent the result.
+
+
+
+ Gets whether the represents a completed operation.
+
+
+ Gets whether the represents a successfully completed operation.
+
+
+ Gets whether the represents a failed operation.
+
+
+ Gets whether the represents a canceled operation.
+
+
+ Gets the result.
+
+
+ Gets an awaiter for this value.
+
+
+ Configures an awaiter for this value.
+
+ true to attempt to marshal the continuation back to the captured context; otherwise, false.
+
+
+
+ Gets a string-representation of this .
+
+
+ Creates a method builder for use with an async method.
+ The created builder.
+
+
+